]> Pileus Git - ~andy/gtk/commitdiff
Change some labels to be clearer. String change ! (#376361, Sven Neumann)
authorMatthias Clasen <mclasen@redhat.com>
Mon, 26 Nov 2007 18:27:20 +0000 (18:27 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 26 Nov 2007 18:27:20 +0000 (18:27 +0000)
2007-11-26  Matthias Clasen  <mclasen@redhat.com>

        * gtk/gtkprintunixdialog.c: Change some labels to be clearer.
        String change !   (#376361, Sven Neumann)

svn path=/trunk/; revision=19061

ChangeLog
gtk/gtkprintunixdialog.c

index 5dcbeca0efa161faa12adeacc25a70c598ffbdb0..a76c9b258da42efbac6f47b89b312dfbae45fa92 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-11-26  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkprintunixdialog.c: Change some labels to be clearer.
+       String change !   (#376361, Sven Neumann)
+
 2007-11-26  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/gtknotebook.c (gtk_notebook_update_labels): Short-circuit on
index f5cc16809e50698f8cd26105c87563c6ac6e8a9c..b5c8e263a426a8f7ace212ca01c1521e2b638a06 100644 (file)
@@ -1540,18 +1540,18 @@ create_main_page (GtkPrintUnixDialog *dialog)
   table = gtk_table_new (3, 2, FALSE);
   gtk_table_set_row_spacings (GTK_TABLE (table), 6);
   gtk_table_set_col_spacings (GTK_TABLE (table), 12);
-  frame = wrap_in_frame (_("Print Pages"), table);
+  frame = wrap_in_frame (_("Range"), table);
   gtk_box_pack_start (GTK_BOX (hbox), frame, TRUE, TRUE, 0);
   gtk_widget_show (table);
 
-  radio = gtk_radio_button_new_with_mnemonic (NULL, _("_All"));
+  radio = gtk_radio_button_new_with_mnemonic (NULL, _("_All Pages"));
   priv->all_pages_radio = radio;
   gtk_widget_show (radio);
   gtk_table_attach (GTK_TABLE (table), radio,
                    0, 2, 0, 1,  GTK_FILL, 0,
                    0, 0);
   radio = gtk_radio_button_new_with_mnemonic (gtk_radio_button_get_group (GTK_RADIO_BUTTON (radio)),
-                                             _("C_urrent"));
+                                             _("C_urrent Page"));
   if (priv->current_page == -1)
     gtk_widget_set_sensitive (radio, FALSE);    
   priv->current_page_radio = radio;
@@ -1560,7 +1560,7 @@ create_main_page (GtkPrintUnixDialog *dialog)
                    0, 2, 1, 2,  GTK_FILL, 0,
                    0, 0);
  
-  radio = gtk_radio_button_new_with_mnemonic (gtk_radio_button_get_group (GTK_RADIO_BUTTON (radio)), _("Ra_nge"));
+  radio = gtk_radio_button_new_with_mnemonic (gtk_radio_button_get_group (GTK_RADIO_BUTTON (radio)), _("Pag_es:"));
   gtk_widget_set_tooltip_text (radio, _("Specify one or more page ranges,\n e.g. 1-3,7,11"));
  
   priv->page_range_radio = radio;