SF.net SVN: geany-plugins:[1626] trunk/geany-plugins/treebrowser

dimitrov-adrian at users.sourceforge.net dimitrov-adrian at xxxxx
Tue Oct 5 19:19:20 UTC 2010


Revision: 1626
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1626&view=rev
Author:   dimitrov-adrian
Date:     2010-10-05 19:19:20 +0000 (Tue, 05 Oct 2010)

Log Message:
-----------
Fixed wrong english message for not existing directory.

Modified Paths:
--------------
    trunk/geany-plugins/treebrowser/ChangeLog
    trunk/geany-plugins/treebrowser/src/treebrowser.c

Modified: trunk/geany-plugins/treebrowser/ChangeLog
===================================================================
--- trunk/geany-plugins/treebrowser/ChangeLog	2010-10-05 17:12:13 UTC (rev 1625)
+++ trunk/geany-plugins/treebrowser/ChangeLog	2010-10-05 19:19:20 UTC (rev 1626)
@@ -41,6 +41,8 @@
 05-10-2010 	Adrian Dimitrov 		<dimitrov.adrian at gmail.com>
 
 	* src/treebrowser.c
+		Fixed wrong english message for not existing directory
+			(thanks to Dimitar Zhekov (dimitar.zhekov at gmail.com))
 		Added option to autorename point the newest created objects by the Treebrowser
 			Improved autorename focus while renamed is successful then close old and
 			  open new file;

Modified: trunk/geany-plugins/treebrowser/src/treebrowser.c
===================================================================
--- trunk/geany-plugins/treebrowser/src/treebrowser.c	2010-10-05 17:12:13 UTC (rev 1625)
+++ trunk/geany-plugins/treebrowser/src/treebrowser.c	2010-10-05 19:19:20 UTC (rev 1626)
@@ -261,7 +261,7 @@
 	if (! g_file_test(directory, G_FILE_TEST_IS_DIR))
 	{
 		if (CONFIG_SHOW_BARS == 0)
-			dialogs_show_msgbox(GTK_MESSAGE_ERROR, _("Directory '%s' not exists."), directory);
+			dialogs_show_msgbox(GTK_MESSAGE_ERROR, _("%s: no such directory."), directory);
 
 		return;
 	}


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Plugins-Commits mailing list