gtk/gtknotebook.c property nick and blurb should be marked with P_(), not

2008-08-12  Sven Neumann  <sven@gimp.org>

	* gtk/gtknotebook.c
	* gtk/gtkradiotoolbutton.c: property nick and blurb should be
	marked with P_(), not _().


svn path=/trunk/; revision=21091
This commit is contained in:
Sven Neumann 2008-08-12 11:32:35 +00:00 committed by Sven Neumann
parent 960fc6eacc
commit 851061574a
3 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2008-08-12 Sven Neumann <sven@gimp.org>
* gtk/gtknotebook.c
* gtk/gtkradiotoolbutton.c: property nick and blurb should be
marked with P_(), not _().
2008-08-12 Michael Natterer <mitch@imendio.com>
* examples/gtkdial/gtkdial.c

View File

@ -831,8 +831,8 @@ gtk_notebook_class_init (GtkNotebookClass *class)
*/
gtk_widget_class_install_style_property (widget_class,
g_param_spec_int ("arrow-spacing",
_("Arrow spacing"),
_("Scroll arrow spacing"),
P_("Arrow spacing"),
P_("Scroll arrow spacing"),
0,
G_MAXINT,
0,

View File

@ -62,8 +62,8 @@ gtk_radio_tool_button_class_init (GtkRadioToolButtonClass *klass)
g_object_class_install_property (object_class,
PROP_GROUP,
g_param_spec_object ("group",
_("Group"),
_("The radio tool button whose group this button belongs to."),
P_("Group"),
P_("The radio tool button whose group this button belongs to."),
GTK_TYPE_RADIO_TOOL_BUTTON,
GTK_PARAM_WRITABLE));