From 4bcc762377e1a7e28a0cbe316813b27cb3ba2576 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 5 Feb 2004 23:50:07 +0000 Subject: [PATCH] Change the labels of the ZOOM_100 and ZOOM_FIT stock items to "_Normal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fri Feb 6 00:51:57 2004 Matthias Clasen * gtk/gtkstock.c (builtin_items): Change the labels of the ZOOM_100 and ZOOM_FIT stock items to "_Normal Size" and "Best _Fit", to be HIG compliant. (#124080, Mariano Suárez-Alvarez) --- ChangeLog | 7 +++++++ ChangeLog.pre-2-10 | 7 +++++++ ChangeLog.pre-2-4 | 7 +++++++ ChangeLog.pre-2-6 | 7 +++++++ ChangeLog.pre-2-8 | 7 +++++++ gtk/gtkstock.c | 4 ++-- 6 files changed, 37 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index b386790a72..92cf832794 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Fri Feb 6 00:51:57 2004 Matthias Clasen + + * gtk/gtkstock.c (builtin_items): Change the labels of the + ZOOM_100 and ZOOM_FIT stock items to "_Normal Size" and + "Best _Fit", to be HIG compliant. (#124080, Mariano + Suárez-Alvarez) + Fri Feb 6 00:45:16 2004 Matthias Clasen * gtk/gtkcombobox.c (gtk_combo_box_finalize): Add a finalize diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index b386790a72..92cf832794 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,10 @@ +Fri Feb 6 00:51:57 2004 Matthias Clasen + + * gtk/gtkstock.c (builtin_items): Change the labels of the + ZOOM_100 and ZOOM_FIT stock items to "_Normal Size" and + "Best _Fit", to be HIG compliant. (#124080, Mariano + Suárez-Alvarez) + Fri Feb 6 00:45:16 2004 Matthias Clasen * gtk/gtkcombobox.c (gtk_combo_box_finalize): Add a finalize diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index b386790a72..92cf832794 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,10 @@ +Fri Feb 6 00:51:57 2004 Matthias Clasen + + * gtk/gtkstock.c (builtin_items): Change the labels of the + ZOOM_100 and ZOOM_FIT stock items to "_Normal Size" and + "Best _Fit", to be HIG compliant. (#124080, Mariano + Suárez-Alvarez) + Fri Feb 6 00:45:16 2004 Matthias Clasen * gtk/gtkcombobox.c (gtk_combo_box_finalize): Add a finalize diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index b386790a72..92cf832794 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,10 @@ +Fri Feb 6 00:51:57 2004 Matthias Clasen + + * gtk/gtkstock.c (builtin_items): Change the labels of the + ZOOM_100 and ZOOM_FIT stock items to "_Normal Size" and + "Best _Fit", to be HIG compliant. (#124080, Mariano + Suárez-Alvarez) + Fri Feb 6 00:45:16 2004 Matthias Clasen * gtk/gtkcombobox.c (gtk_combo_box_finalize): Add a finalize diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index b386790a72..92cf832794 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,10 @@ +Fri Feb 6 00:51:57 2004 Matthias Clasen + + * gtk/gtkstock.c (builtin_items): Change the labels of the + ZOOM_100 and ZOOM_FIT stock items to "_Normal Size" and + "Best _Fit", to be HIG compliant. (#124080, Mariano + Suárez-Alvarez) + Fri Feb 6 00:45:16 2004 Matthias Clasen * gtk/gtkcombobox.c (gtk_combo_box_finalize): Add a finalize diff --git a/gtk/gtkstock.c b/gtk/gtkstock.c index c832d63273..0bb5288995 100644 --- a/gtk/gtkstock.c +++ b/gtk/gtkstock.c @@ -335,8 +335,8 @@ static const GtkStockItem builtin_items [] = { GTK_STOCK_UNDERLINE, N_("_Underline"), 0, 0, GETTEXT_PACKAGE }, { GTK_STOCK_UNDO, N_("_Undo"), 0, 0, GETTEXT_PACKAGE }, { GTK_STOCK_YES, N_("_Yes"), 0, 0, GETTEXT_PACKAGE }, - { GTK_STOCK_ZOOM_100, N_("Zoom _100%"), 0, 0, GETTEXT_PACKAGE }, - { GTK_STOCK_ZOOM_FIT, N_("Zoom to _Fit"), 0, 0, GETTEXT_PACKAGE }, + { GTK_STOCK_ZOOM_100, N_("_Normal Size"), 0, 0, GETTEXT_PACKAGE }, + { GTK_STOCK_ZOOM_FIT, N_("Best _Fit"), 0, 0, GETTEXT_PACKAGE }, { GTK_STOCK_ZOOM_IN, N_("Zoom _In"), 0, 0, GETTEXT_PACKAGE }, { GTK_STOCK_ZOOM_OUT, N_("Zoom _Out"), 0, 0, GETTEXT_PACKAGE } };