[Monodevelop-patches-list] r1365 - in trunk/MonoDevelop: po src/AddIns/BackendBindings/CSharpBinding src/AddIns/BackendBindings/CSharpBinding/Gui

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Sun Apr 4 00:07:24 EST 2004


Author: tberman
Date: 2004-04-04 00:07:24 -0500 (Sun, 04 Apr 2004)
New Revision: 1365

Modified:
   trunk/MonoDevelop/po/POTFILES.in
   trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog
   trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/Gui/CodeGenerationPanel.cs
   trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/Gui/OutputOptionsPanel.cs
Log:
more gettextification


Modified: trunk/MonoDevelop/po/POTFILES.in
===================================================================
--- trunk/MonoDevelop/po/POTFILES.in	2004-04-04 04:57:14 UTC (rev 1364)
+++ trunk/MonoDevelop/po/POTFILES.in	2004-04-04 05:07:24 UTC (rev 1365)
@@ -81,3 +81,5 @@
 src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorDisplayBinding.cs
 src/AddIns/DisplayBindings/SourceEditor/Search/SearchReplaceInFilesManager.cs
 src/AddIns/DisplayBindings/SourceEditor/Search/SearchReplaceManager.cs
+src/AddIns/BackendBindings/CSharpBinding/Gui/CodeGenerationPanel.cs
+src/AddIns/BackendBindings/CSharpBinding/Gui/OutputOptionsPanel.cs

Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog	2004-04-04 04:57:14 UTC (rev 1364)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog	2004-04-04 05:07:24 UTC (rev 1365)
@@ -1,5 +1,10 @@
 2004-04-03  Todd Berman  <tberman at sevenl.net>
 
+	* Gui/OutputOptionsPanel.cs:
+	* Gui/CodeGenerationPanel.cs: gettextify
+
+2004-04-03  Todd Berman  <tberman at sevenl.net>
+
 	* Project/CSharpCompilerParameters.cs: duh, refix library target bug
 
 2004-04-01  Todd Berman  <tberman at sevenl.net>

Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/Gui/CodeGenerationPanel.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/Gui/CodeGenerationPanel.cs	2004-04-04 04:57:14 UTC (rev 1364)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/Gui/CodeGenerationPanel.cs	2004-04-04 05:07:24 UTC (rev 1365)
@@ -59,13 +59,9 @@
 				generateXmlOutputCheckButton.Sensitive = false;
 
 				Menu CompileTargetMenu = new Menu ();
-				CompileTargetMenu.Append(new MenuItem(
-								 StringParserService.Parse(
-									 "${res:Dialog.Options.PrjOptions.Configuration.CompileTarget.Exe}")));
+				CompileTargetMenu.Append(new MenuItem(GettextCatalog.GetString ("Executable")));
 
-				CompileTargetMenu.Append(new MenuItem(
-								 StringParserService.Parse(
-									 "${res:Dialog.Options.PrjOptions.Configuration.CompileTarget.Library}")));
+				CompileTargetMenu.Append(new MenuItem(GettextCatalog.GetString ("Library")));
 				// FIXME commented until the Module capability is ported
 // 				CompileTargetMenu.Append(new MenuItem(
 // 								 StringParserService.Parse(

Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/Gui/OutputOptionsPanel.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/Gui/OutputOptionsPanel.cs	2004-04-04 04:57:14 UTC (rev 1364)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/Gui/OutputOptionsPanel.cs	2004-04-04 05:07:24 UTC (rev 1365)
@@ -95,8 +95,7 @@
 			void SelectFolder(object sender, EventArgs e)
 			{
 				ResourceService res = (ResourceService)ServiceManager.Services.GetService (typeof (ResourceService));
-				using (FileSelection fdiag = new FileSelection (
-					res.GetString ("${res:Dialog.Options.PrjOptions.Configuration.FolderBrowserDescription}"))) {
+				using (FileSelection fdiag = new FileSelection (GettextCatalog.GetString ("Select the directory in which the assembly will be created"))) {
 					if (fdiag.Run () == (int) ResponseType.Ok) {
 						outputDirectoryEntry.Text = fdiag.Filename;
 					}




More information about the Monodevelop-patches-list mailing list