]> git.sur5r.net Git - glabels/commitdiff
Fixed some gettext problems
authorJim Evins <evins@snaught.com>
Wed, 7 Oct 2009 02:01:15 +0000 (22:01 -0400)
committerJim Evins <evins@snaught.com>
Wed, 7 Oct 2009 02:01:15 +0000 (22:01 -0400)
color-combo-menu.c:
- escape "%" in strings so that they are not interpreted as c-format
  conversions.
- call gettext() on color names initialized in table.
bc.c:
- call gettext() on barcode names initialized in table.
property-bar.builder:
- moved "Font family" tooltip to correct field for translation.

data/builder/property-bar.builder
src/bc.c
src/color-combo-menu.c

index a98e892bfc12b294c0b8f59f90305ef15f297740..cac827b4589db067310b86c6c4afd1e32cdd5b5d 100644 (file)
@@ -16,7 +16,7 @@
             <child>
               <object class="GtkEventBox" id="font_family_eventbox">
                 <property name="visible">True</property>
-                <property name="tooltip_markup">Font family</property>
+                <property name="tooltip_text" translatable="yes">Font family</property>
                 <property name="visible_window">False</property>
                 <child>
                   <placeholder/>
index 7c35234ad2f49af2df1a9b27bb28a1022d93c6d6..98ca58ee93dba4410b14805551d47078bc0e09d2 100644 (file)
--- a/src/bc.c
+++ b/src/bc.c
@@ -199,7 +199,7 @@ name_to_index (const gchar *name)
        g_return_val_if_fail (name!=NULL, 0);
 
        for (i=0; backends[i].id != NULL; i++) {
-               if (strcmp (name, backends[i].name) == 0) {
+               if (strcmp (name, gettext (backends[i].name)) == 0) {
                        return i;
                }
        }
@@ -277,7 +277,7 @@ gl_barcode_get_styles_list  (void)
        GList *list = NULL;
 
        for (i=0; backends[i].id != NULL; i++) {
-               list = g_list_append (list, g_strdup (backends[i].name));
+               list = g_list_append (list, g_strdup (gettext (backends[i].name)));
        }
 
        return list;
@@ -384,7 +384,7 @@ gl_barcode_get_prefered_n (const gchar    *id)
 const gchar *
 gl_barcode_id_to_name (const gchar *id)
 {
-       return backends[id_to_index (id)].name;
+       return gettext (backends[id_to_index (id)].name);
 }
 
 
index d24a233ba6ed7768d690356b2bbc78cca115bf2f..5e72928b76fb18279a4b5282d5cdaa7fad6d2732 100644 (file)
@@ -113,11 +113,11 @@ static ColorTableEntry color_table[] =
         { GL_COLOR (216, 191, 216), N_("Thistle") },
 
         { GL_COLOR (255, 255, 255), N_("White") },
-        { GL_COLOR (230, 230, 230), N_("10% Gray") },
-        { GL_COLOR (192, 192, 192), N_("25% Gray") },
-        { GL_COLOR (153, 153, 153), N_("40% Gray") },
-        { GL_COLOR (128, 128, 128), N_("50% Gray") },
-        { GL_COLOR (102, 102, 102), N_("60% Gray") },
+        { GL_COLOR (230, 230, 230), N_("10\% Gray") },
+        { GL_COLOR (192, 192, 192), N_("25\% Gray") },
+        { GL_COLOR (153, 153, 153), N_("40\% Gray") },
+        { GL_COLOR (128, 128, 128), N_("50\% Gray") },
+        { GL_COLOR (102, 102, 102), N_("60\% Gray") },
         { GL_COLOR (  0,   0,   0), N_("Black") },
 
 };
@@ -217,7 +217,7 @@ gl_color_combo_menu_init (glColorComboMenu *this)
 
                 palette_menu_item = gl_color_combo_color_menu_item_new (i,
                                                                         color_table[i].color,
-                                                                        color_table[i].name);
+                                                                        gettext (color_table[i].name));
                 g_signal_connect (palette_menu_item, "activate",
                                   G_CALLBACK (palette_menu_item_activate_cb), this);