gtranslator r3835 - in trunk: . src/translation-memory



Author: icq
Date: Sun Oct 19 10:10:57 2008
New Revision: 3835
URL: http://svn.gnome.org/viewvc/gtranslator?rev=3835&view=rev

Log:
2008-10-19  Ignacio Casal Quinteiro  <nacho resa gmail com>

        * src/translation-memory/translation-memory-ui.c:             
        Strings not marked for translation. (Fixes bug #556928).



Modified:
   trunk/ChangeLog
   trunk/src/translation-memory/translation-memory-ui.c

Modified: trunk/src/translation-memory/translation-memory-ui.c
==============================================================================
--- trunk/src/translation-memory/translation-memory-ui.c	(original)
+++ trunk/src/translation-memory/translation-memory-ui.c	Sun Oct 19 10:10:57 2008
@@ -290,7 +290,7 @@
 	gtk_tree_view_set_model (GTK_TREE_VIEW (priv->tree_view), GTK_TREE_MODEL (model));
 
 	shortcut_renderer = gtk_cell_renderer_accel_new ();
-	shortcut = gtk_tree_view_column_new_with_attributes ("Shortcut",
+	shortcut = gtk_tree_view_column_new_with_attributes (_("Shortcut"),
 							     shortcut_renderer,
 							     "accel-key", SHORTCUT_COLUMN,
 							     NULL);
@@ -301,7 +301,7 @@
 	gtk_tree_view_append_column (GTK_TREE_VIEW (priv->tree_view), shortcut);
 
 	level_renderer = gtk_cell_renderer_progress_new ();
-	level = gtk_tree_view_column_new_with_attributes ("Level",
+	level = gtk_tree_view_column_new_with_attributes (_("Level"),
 							  level_renderer,
 							  "value", LEVEL_COLUMN,
 							  NULL);
@@ -312,7 +312,7 @@
 	gtk_tree_view_append_column (GTK_TREE_VIEW (priv->tree_view), level);
 	
 	string_renderer = gtk_cell_renderer_text_new ();
-	string = gtk_tree_view_column_new_with_attributes ("String",
+	string = gtk_tree_view_column_new_with_attributes (_("String"),
 							   string_renderer,
 							   "text", STRING_COLUMN,
 							   NULL);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]