SF.net SVN: geany-plugins:[1020]

yurand at users.sourceforge.net yurand at xxxxx
Sun Oct 18 20:39:18 UTC 2009


Revision: 1020
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1020&view=rev
Author:   yurand
Date:     2009-10-18 20:39:17 +0000 (Sun, 18 Oct 2009)

Log Message:
-----------
Don't use gettext for empty string

Modified Paths:
--------------
    branches/geany-plugins/geany-plugins-0.18/geanyprj/src/menu.c
    trunk/geany-plugins/geanyprj/src/menu.c

Modified: branches/geany-plugins/geany-plugins-0.18/geanyprj/src/menu.c
===================================================================
--- branches/geany-plugins/geany-plugins-0.18/geanyprj/src/menu.c	2009-10-18 20:28:00 UTC (rev 1019)
+++ branches/geany-plugins/geany-plugins-0.18/geanyprj/src/menu.c	2009-10-18 20:39:17 UTC (rev 1020)
@@ -164,7 +164,7 @@
 
 	ui_table_add_row(GTK_TABLE(table), 2, label, bbox, NULL);
 
-	label = gtk_label_new(_(""));
+	label = gtk_label_new("");
 	e->regenerate = gtk_check_button_new_with_label(_("Generate file list on load"));
 	gtk_tooltips_set_tip(tooltips, e->regenerate,
 			     _("Automatically add files that match project type on project load "

Modified: trunk/geany-plugins/geanyprj/src/menu.c
===================================================================
--- trunk/geany-plugins/geanyprj/src/menu.c	2009-10-18 20:28:00 UTC (rev 1019)
+++ trunk/geany-plugins/geanyprj/src/menu.c	2009-10-18 20:39:17 UTC (rev 1020)
@@ -164,7 +164,7 @@
 
 	ui_table_add_row(GTK_TABLE(table), 2, label, bbox, NULL);
 
-	label = gtk_label_new(_(""));
+	label = gtk_label_new("");
 	e->regenerate = gtk_check_button_new_with_label(_("Generate file list on load"));
 	gtk_tooltips_set_tip(tooltips, e->regenerate,
 			     _("Automatically add files that match project type on project load "


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