Author: lluis
Date: 2005-12-01 05:02:30 -0500 (Thu, 01 Dec 2005)
New Revision: 53752

Modified:
   trunk/monodevelop/Core/src/MonoDevelop.Ide/ChangeLog
   trunk/monodevelop/Core/src/MonoDevelop.Ide/MonoDevelop.Ide.Gui/IdeStartup.cs
   trunk/monodevelop/Core/src/MonoDevelop.Ide/MonoDevelop.Ide.Gui/Workbench.cs
Log:
2005-11-30  David Makovsk?\195?\189 <[EMAIL PROTECTED]>

        * MonoDevelop.Ide.Gui/IdeStartup.cs:
        * MonoDevelop.Ide.Gui/Workbench.cs: Make some strings translatable.



Modified: trunk/monodevelop/Core/src/MonoDevelop.Ide/ChangeLog
===================================================================
--- trunk/monodevelop/Core/src/MonoDevelop.Ide/ChangeLog        2005-12-01 
09:25:00 UTC (rev 53751)
+++ trunk/monodevelop/Core/src/MonoDevelop.Ide/ChangeLog        2005-12-01 
10:02:30 UTC (rev 53752)
@@ -1,3 +1,8 @@
+2005-11-30  David Makovský <[EMAIL PROTECTED]>
+
+       * MonoDevelop.Ide.Gui/IdeStartup.cs:
+       * MonoDevelop.Ide.Gui/Workbench.cs: Make some strings translatable.
+
 2005-11-28  Jacob Ilsoe Christensen  <[EMAIL PROTECTED]>
 
        * MonoDevelop.Ide.Gui.Dialogs/SplashScreen.cs:

Modified: 
trunk/monodevelop/Core/src/MonoDevelop.Ide/MonoDevelop.Ide.Gui/IdeStartup.cs
===================================================================
--- 
trunk/monodevelop/Core/src/MonoDevelop.Ide/MonoDevelop.Ide.Gui/IdeStartup.cs    
    2005-12-01 09:25:00 UTC (rev 53751)
+++ 
trunk/monodevelop/Core/src/MonoDevelop.Ide/MonoDevelop.Ide.Gui/IdeStartup.cs    
    2005-12-01 10:02:30 UTC (rev 53752)
@@ -91,8 +91,8 @@
                                Dns.GetHostByName (Dns.GetHostName ());
                        } catch {
                                using (ErrorDialog dialog = new ErrorDialog 
(null)) {
-                                       dialog.Message = "MonoDevelop failed to 
start. Local hostname cannot be resolved.";
-                                       dialog.AddDetails ("Your network may be 
misconfigured. Make sure the hostname of your system is added to the /etc/hosts 
file.", true);
+                                       dialog.Message = 
GettextCatalog.GetString ("MonoDevelop failed to start. Local hostname cannot 
be resolved.");
+                                       dialog.AddDetails 
(GettextCatalog.GetString ("Your network may be misconfigured. Make sure the 
hostname of your system is added to the /etc/hosts file."), true);
                                        dialog.Run ();
                                }
                                return 1;
@@ -106,7 +106,7 @@
                                SplashScreenForm.SplashScreen.ShowAll ();
                        }
 
-                       monitor.BeginTask ("Initializing MonoDevelop", 2);
+                       monitor.BeginTask (GettextCatalog.GetString 
("Initializing MonoDevelop"), 2);
                        
                        Exception error = null;
                        int reportedFailures = 0;
@@ -149,7 +149,7 @@
                        
                        if (error != null) {
                                ErrorDialog dialog = new ErrorDialog (null);
-                               dialog.Message = "MonoDevelop failed to start. 
The following error has been reported: " + error.Message;
+                               dialog.Message = GettextCatalog.GetString 
("MonoDevelop failed to start. The following error has been reported: ") + 
error.Message;
                                dialog.AddDetails (error.ToString (), false);
                                dialog.Run ();
                                return 1;

Modified: 
trunk/monodevelop/Core/src/MonoDevelop.Ide/MonoDevelop.Ide.Gui/Workbench.cs
===================================================================
--- trunk/monodevelop/Core/src/MonoDevelop.Ide/MonoDevelop.Ide.Gui/Workbench.cs 
2005-12-01 09:25:00 UTC (rev 53751)
+++ trunk/monodevelop/Core/src/MonoDevelop.Ide/MonoDevelop.Ide.Gui/Workbench.cs 
2005-12-01 10:02:30 UTC (rev 53752)
@@ -57,7 +57,7 @@
                
                internal void Initialize (IProgressMonitor monitor)
                {
-                       monitor.BeginTask ("Initializing Main Window", 4);
+                       monitor.BeginTask (GettextCatalog.GetString 
("Initializing Main Window"), 4);
                        try {
                                workbench = new DefaultWorkbench ();
                                monitor.Step (1);

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to