Improve the consistency of titles. (#126193, Damon Chaplin)

Thu Nov  6 00:21:41 2003  Matthias Clasen  <maclas@gmx.de>

	* gtk/gtkcolorbutton.c (gtk_color_button_init):
	* gtk/gtkfontbutton.c (gtk_font_button_init): Improve the
	consistency of titles.  (#126193, Damon Chaplin)
This commit is contained in:
Matthias Clasen 2003-11-05 23:23:05 +00:00 committed by Matthias Clasen
parent 3110ca2f17
commit 2189dcfdbb
7 changed files with 33 additions and 3 deletions

View File

@ -1,3 +1,9 @@
Thu Nov 6 00:21:41 2003 Matthias Clasen <maclas@gmx.de>
* 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 <maclas@gmx.de>
* gtk/gtkmenu.c (gtk_menu_set_tearoff_state): Set torn off

View File

@ -1,3 +1,9 @@
Thu Nov 6 00:21:41 2003 Matthias Clasen <maclas@gmx.de>
* 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 <maclas@gmx.de>
* gtk/gtkmenu.c (gtk_menu_set_tearoff_state): Set torn off

View File

@ -1,3 +1,9 @@
Thu Nov 6 00:21:41 2003 Matthias Clasen <maclas@gmx.de>
* 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 <maclas@gmx.de>
* gtk/gtkmenu.c (gtk_menu_set_tearoff_state): Set torn off

View File

@ -1,3 +1,9 @@
Thu Nov 6 00:21:41 2003 Matthias Clasen <maclas@gmx.de>
* 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 <maclas@gmx.de>
* gtk/gtkmenu.c (gtk_menu_set_tearoff_state): Set torn off

View File

@ -1,3 +1,9 @@
Thu Nov 6 00:21:41 2003 Matthias Clasen <maclas@gmx.de>
* 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 <maclas@gmx.de>
* gtk/gtkmenu.c (gtk_menu_set_tearoff_state): Set torn off

View File

@ -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.

View File

@ -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)));