SF.net SVN: geany:[4960] trunk/src/build.c
eht16 at users.sourceforge.net
eht16 at xxxxx
Sat May 29 18:52:00 UTC 2010
Revision: 4960
http://geany.svn.sourceforge.net/geany/?rev=4960&view=rev
Author: eht16
Date: 2010-05-29 18:52:00 +0000 (Sat, 29 May 2010)
Log Message:
-----------
Fix some labels which were marked as translatable but were not handled properly by gettext().
Modified Paths:
--------------
trunk/src/build.c
Modified: trunk/src/build.c
===================================================================
--- trunk/src/build.c 2010-05-29 18:36:17 UTC (rev 4959)
+++ trunk/src/build.c 2010-05-29 18:52:00 UTC (rev 4960)
@@ -1895,7 +1895,7 @@
fields->rows = g_new0(RowWidgets*, build_items_count);
for (ch = colheads, col = 0; *ch != NULL; ch++, col++)
{
- label = gtk_label_new(gettext(*ch));
+ label = gtk_label_new(_(*ch));
gtk_table_attach(table, label, col, col + 1, 0, 1,
GTK_FILL, GTK_FILL | GTK_EXPAND, entry_x_padding, entry_y_padding);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list