]> www.fi.muni.cz Git - evince.git/blobdiff - cut-n-paste/zoom-control/ephy-zoom-control.c
Updated Thai translation.
[evince.git] / cut-n-paste / zoom-control / ephy-zoom-control.c
index d3b7e572d130c1abda8afd8e7041be9a560af9ad..ada61f2ec7c97cf70fa0259b2897c18489276c72 100644 (file)
@@ -24,7 +24,6 @@
 
 #include "ephy-zoom-control.h"
 #include "ephy-zoom.h"
-#include "ev-debug.h"
 
 #include <gtk/gtk.h>
 #include <gtk/gtkcombobox.h>
@@ -73,7 +72,7 @@ ephy_zoom_control_get_type (void)
 
        if (G_UNLIKELY (type == 0))
        {
-               static const GTypeInfo our_info =
+               const GTypeInfo our_info =
                        {
                                sizeof (EphyZoomControlClass),
                                NULL, /* base_init */
@@ -152,10 +151,16 @@ ephy_zoom_control_init (EphyZoomControl *control)
        for (i = 0; i < n_zoom_levels; i++)
        {
                gtk_list_store_append (store, &iter);
-               gtk_list_store_set    (store, &iter,
-                                      COL_TEXT, zoom_levels[i].name,
-                                      COL_IS_SEP, zoom_levels[i].name == NULL,
-                                      -1);
+
+               if (zoom_levels[i].name != NULL) {
+                       gtk_list_store_set (store, &iter,
+                                           COL_TEXT, _(zoom_levels[i].name),
+                                           -1);
+               } else {
+                       gtk_list_store_set (store, &iter,
+                                           COL_IS_SEP, zoom_levels[i].name == NULL,
+                                           -1);
+               }
        }
 
        p->combo = GTK_COMBO_BOX (gtk_combo_box_new_with_model (GTK_TREE_MODEL (store)));