[Monodevelop-patches-list] r1802 - in trunk/MonoDevelop/src/Main/Base: . Commands/ProjectBrowserCommands

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Mon Jun 21 20:32:33 EDT 2004


Author: jluke
Date: 2004-06-21 20:32:33 -0400 (Mon, 21 Jun 2004)
New Revision: 1802

Modified:
   trunk/MonoDevelop/src/Main/Base/ChangeLog
   trunk/MonoDevelop/src/Main/Base/Commands/ProjectBrowserCommands/FolderNodeCommands.cs
Log:
* Commands/ProjectBrowserCommands/FolderNodeCommands.cs:
+       Change the title of Add Files to Add Files, so it will be clearer
+       you can select more than one file
+       put the name of the file in the Copy or Move dialog when adding
+       an external file, fixes bug # 59516


Modified: trunk/MonoDevelop/src/Main/Base/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/Main/Base/ChangeLog	2004-06-21 23:58:52 UTC (rev 1801)
+++ trunk/MonoDevelop/src/Main/Base/ChangeLog	2004-06-22 00:32:33 UTC (rev 1802)
@@ -4,6 +4,11 @@
 	use the messageservice for a the error dialog
 	don't skip the first item when storing whether files should be	
 	included, fixes bug # 60363
+	* Commands/ProjectBrowserCommands/FolderNodeCommands.cs:
+	Change the title of Add Files to Add Files, so it will be clearer
+	you can select more than one file
+	put the name of the file in the Copy or Move dialog when adding
+	an external file, fixes bug # 59516
 
 2004-06-21  Todd Berman  <tberman at off.net>
 

Modified: trunk/MonoDevelop/src/Main/Base/Commands/ProjectBrowserCommands/FolderNodeCommands.cs
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Commands/ProjectBrowserCommands/FolderNodeCommands.cs	2004-06-21 23:58:52 UTC (rev 1801)
+++ trunk/MonoDevelop/src/Main/Base/Commands/ProjectBrowserCommands/FolderNodeCommands.cs	2004-06-22 00:32:33 UTC (rev 1802)
@@ -42,7 +42,7 @@
 			
 			AbstractBrowserNode node = (AbstractBrowserNode)browser.SelectedNode;
 			
-			using (FileSelector fdiag  = new FileSelector (GettextCatalog.GetString ("Add a file"))) {
+			using (FileSelector fdiag  = new FileSelector (GettextCatalog.GetString ("Add files"))) {
 				fdiag.SelectMultiple = true;
 				
 				string defaultPath = node.Project.BaseDirectory;
@@ -62,7 +62,7 @@
 																		 (Window) WorkbenchSingleton.Workbench,
 																		 DialogFlags.Modal | DialogFlags.DestroyWithParent,
 																		 MessageType.Question, ButtonsType.None,
-																		 GettextCatalog.GetString ("The file is outside the project directory, what should I do?"))) {
+																		 String.Format (GettextCatalog.GetString ("{0} is outside the project directory, what should I do?"), file))) {
 								md.AddButton (Gtk.Stock.Copy, 1);
 								md.AddButton (GettextCatalog.GetString ("_Move"), 2);
 								md.AddButton (Gtk.Stock.Cancel, ResponseType.Cancel);




More information about the Monodevelop-patches-list mailing list