From 2189dcfdbb9949ed2d66459d0194bda193b5b9f1 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 5 Nov 2003 23:23:05 +0000 Subject: [PATCH] Improve the consistency of titles. (#126193, Damon Chaplin) Thu Nov 6 00:21:41 2003 Matthias Clasen * gtk/gtkcolorbutton.c (gtk_color_button_init): * gtk/gtkfontbutton.c (gtk_font_button_init): Improve the consistency of titles. (#126193, Damon Chaplin) --- ChangeLog | 6 ++++++ ChangeLog.pre-2-10 | 6 ++++++ ChangeLog.pre-2-4 | 6 ++++++ ChangeLog.pre-2-6 | 6 ++++++ ChangeLog.pre-2-8 | 6 ++++++ gtk/gtkcolorbutton.c | 4 ++-- gtk/gtkfontbutton.c | 2 +- 7 files changed, 33 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index acf46e6afa..eee6b7de90 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Thu Nov 6 00:21:41 2003 Matthias Clasen + + * gtk/gtkcolorbutton.c (gtk_color_button_init): + * gtk/gtkfontbutton.c (gtk_font_button_init): Improve the + consistency of titles. (#126193, Damon Chaplin) + Wed Nov 5 22:49:36 2003 Matthias Clasen * gtk/gtkmenu.c (gtk_menu_set_tearoff_state): Set torn off diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index acf46e6afa..eee6b7de90 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +Thu Nov 6 00:21:41 2003 Matthias Clasen + + * gtk/gtkcolorbutton.c (gtk_color_button_init): + * gtk/gtkfontbutton.c (gtk_font_button_init): Improve the + consistency of titles. (#126193, Damon Chaplin) + Wed Nov 5 22:49:36 2003 Matthias Clasen * gtk/gtkmenu.c (gtk_menu_set_tearoff_state): Set torn off diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index acf46e6afa..eee6b7de90 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +Thu Nov 6 00:21:41 2003 Matthias Clasen + + * gtk/gtkcolorbutton.c (gtk_color_button_init): + * gtk/gtkfontbutton.c (gtk_font_button_init): Improve the + consistency of titles. (#126193, Damon Chaplin) + Wed Nov 5 22:49:36 2003 Matthias Clasen * gtk/gtkmenu.c (gtk_menu_set_tearoff_state): Set torn off diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index acf46e6afa..eee6b7de90 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +Thu Nov 6 00:21:41 2003 Matthias Clasen + + * gtk/gtkcolorbutton.c (gtk_color_button_init): + * gtk/gtkfontbutton.c (gtk_font_button_init): Improve the + consistency of titles. (#126193, Damon Chaplin) + Wed Nov 5 22:49:36 2003 Matthias Clasen * gtk/gtkmenu.c (gtk_menu_set_tearoff_state): Set torn off diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index acf46e6afa..eee6b7de90 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +Thu Nov 6 00:21:41 2003 Matthias Clasen + + * gtk/gtkcolorbutton.c (gtk_color_button_init): + * gtk/gtkfontbutton.c (gtk_font_button_init): Improve the + consistency of titles. (#126193, Damon Chaplin) + Wed Nov 5 22:49:36 2003 Matthias Clasen * gtk/gtkmenu.c (gtk_menu_set_tearoff_state): Set torn off diff --git a/gtk/gtkcolorbutton.c b/gtk/gtkcolorbutton.c index c9cd5cdb7f..06cea22a16 100644 --- a/gtk/gtkcolorbutton.c +++ b/gtk/gtkcolorbutton.c @@ -216,7 +216,7 @@ gtk_color_button_class_init (GtkColorButtonClass *klass) g_param_spec_string ("title", _("Title"), _("The title of the color selection dialog"), - _("Pick a color"), + _("Pick a Color"), (G_PARAM_READABLE | G_PARAM_WRITABLE))); /** @@ -570,7 +570,7 @@ gtk_color_button_init (GtkColorButton *color_button) gtk_container_add (GTK_CONTAINER (frame), color_button->priv->drawing_area); gtk_widget_show (color_button->priv->drawing_area); - color_button->priv->title = g_strdup (_("Pick a color")); /* default title */ + color_button->priv->title = g_strdup (_("Pick a Color")); /* default title */ /* Create the buffer for the image so that we can create an image. * Also create the picker's pixmap. diff --git a/gtk/gtkfontbutton.c b/gtk/gtkfontbutton.c index fea8f2087e..7e56afa7cd 100644 --- a/gtk/gtkfontbutton.c +++ b/gtk/gtkfontbutton.c @@ -174,7 +174,7 @@ gtk_font_button_class_init (GtkFontButtonClass *klass) g_param_spec_string ("title", _("Title"), _("The title of the font selection dialog"), - _("Pick a font"), + _("Pick a Font"), (G_PARAM_READABLE | G_PARAM_WRITABLE)));