Stylistic improvements and clarifications for some blurbs. (#315520,

2005-09-09  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtkiconview.c (gtk_icon_view_class_init):
	* gtk/gtkfilesel.c (gtk_file_selection_class_init):
	* gtk/gtkcombobox.c (gtk_combo_box_class_init):
	* gtk/gtklabel.c (gtk_label_class_init):
	* gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init):
	Stylistic improvements and clarifications for some blurbs.
	(#315520, Clytie Siddall)
This commit is contained in:
Matthias Clasen 2005-09-09 16:21:15 +00:00 committed by Matthias Clasen
parent ef86d40384
commit 9a86f65818
7 changed files with 25 additions and 5 deletions

View File

@ -1,3 +1,13 @@
2005-09-09 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkiconview.c (gtk_icon_view_class_init):
* gtk/gtkfilesel.c (gtk_file_selection_class_init):
* gtk/gtkcombobox.c (gtk_combo_box_class_init):
* gtk/gtklabel.c (gtk_label_class_init):
* gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init):
Stylistic improvements and clarifications for some blurbs.
(#315520, Clytie Siddall)
2005-09-09 Tor Lillqvist <tml@novell.com>
* gdk/win32/gdkdisplay-win32.c (gdk_display_get_name): Cache the

View File

@ -1,3 +1,13 @@
2005-09-09 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkiconview.c (gtk_icon_view_class_init):
* gtk/gtkfilesel.c (gtk_file_selection_class_init):
* gtk/gtkcombobox.c (gtk_combo_box_class_init):
* gtk/gtklabel.c (gtk_label_class_init):
* gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init):
Stylistic improvements and clarifications for some blurbs.
(#315520, Clytie Siddall)
2005-09-09 Tor Lillqvist <tml@novell.com>
* gdk/win32/gdkdisplay-win32.c (gdk_display_get_name): Cache the

View File

@ -435,7 +435,7 @@ gtk_cell_renderer_text_class_init (GtkCellRendererTextClass *class)
P_("Ellipsize"),
P_("The preferred place to ellipsize the string, "
"if the cell renderer does not have enough room "
"to display the entire string, if at all"),
"to display the entire string"),
PANGO_TYPE_ELLIPSIZE_MODE,
PANGO_ELLIPSIZE_NONE,
GTK_PARAM_READWRITE));

View File

@ -571,7 +571,7 @@ gtk_combo_box_class_init (GtkComboBoxClass *klass)
PROP_WRAP_WIDTH,
g_param_spec_int ("wrap-width",
P_("Wrap width"),
P_("Wrap width for layouting the items in a grid"),
P_("Wrap width for laying out the items in a grid"),
0,
G_MAXINT,
0,

View File

@ -569,7 +569,7 @@ gtk_file_selection_class_init (GtkFileSelectionClass *class)
g_object_class_install_property (gobject_class,
PROP_SELECT_MULTIPLE,
g_param_spec_boolean ("select-multiple",
P_("Select multiple"),
P_("Select Multiple"),
P_("Whether to allow multiple files to be selected"),
FALSE,
GTK_PARAM_READWRITE));

View File

@ -658,7 +658,7 @@ gtk_icon_view_class_init (GtkIconViewClass *klass)
PROP_COLUMN_SPACING,
g_param_spec_int ("column-spacing",
P_("Column Spacing"),
P_("Space which is inserted between grid column"),
P_("Space which is inserted between grid columns"),
0, G_MAXINT, 6,
GTK_PARAM_READWRITE));

View File

@ -433,7 +433,7 @@ gtk_label_class_init (GtkLabelClass *class)
PROP_ELLIPSIZE,
g_param_spec_enum ("ellipsize",
P_("Ellipsize"),
P_("The preferred place to ellipsize the string, if the label does not have enough room to display the entire string, if at all"),
P_("The preferred place to ellipsize the string, if the label does not have enough room to display the entire string"),
PANGO_TYPE_ELLIPSIZE_MODE,
PANGO_ELLIPSIZE_NONE,
GTK_PARAM_READWRITE));