[Monodevelop-patches-list] r1757 - in trunk/MonoDevelop/src/Main/Base: . Internal/Project/Project/Deployment

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Sun Jun 13 15:46:02 EDT 2004


Author: tberman
Date: 2004-06-13 15:46:02 -0400 (Sun, 13 Jun 2004)
New Revision: 1757

Modified:
   trunk/MonoDevelop/src/Main/Base/ChangeLog
   trunk/MonoDevelop/src/Main/Base/Internal/Project/Project/Deployment/ScriptDeploy.cs
Log:
string fix, thanks eno


Modified: trunk/MonoDevelop/src/Main/Base/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/Main/Base/ChangeLog	2004-06-13 17:26:04 UTC (rev 1756)
+++ trunk/MonoDevelop/src/Main/Base/ChangeLog	2004-06-13 19:46:02 UTC (rev 1757)
@@ -1,3 +1,7 @@
+2004-06-13  Todd Berman  <tberman at sevenl.net>
+
+	* Internal/Project/Project/Deployment/ScriptDeploy.cs: string fix
+
 2004-06-11  Todd Berman  <tberman at sevenl.net>
 
 	* Services/SystemAssemblyService.cs: Dont scan the same path twice.

Modified: trunk/MonoDevelop/src/Main/Base/Internal/Project/Project/Deployment/ScriptDeploy.cs
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Internal/Project/Project/Deployment/ScriptDeploy.cs	2004-06-13 17:26:04 UTC (rev 1756)
+++ trunk/MonoDevelop/src/Main/Base/Internal/Project/Project/Deployment/ScriptDeploy.cs	2004-06-13 19:46:02 UTC (rev 1757)
@@ -21,7 +21,7 @@
 			IResourceService resourceService = (IResourceService)ServiceManager.Services.GetService(typeof(IResourceService));
 			if (project.DeployInformation.DeployScript.Length == 0) {
 				IMessageService messageService =(IMessageService)ServiceManager.Services.GetService(typeof(IMessageService));
-				messageService.ShowError(GettextCatalog.GetString ("Can't deply: you forgot to specify a deployment script"));
+				messageService.ShowError(GettextCatalog.GetString ("Can't deploy: you forgot to specify a deployment script"));
 				return;
 			}
 			try {




More information about the Monodevelop-patches-list mailing list