Fix some typos in messages. (#341091, Tino Meinen)

2006-05-08  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_add_shortcut_folder):
	* gtk/gtktextbufferserialize.c (parse_attr_element): Fix some typos in
	messages.  (#341091, Tino Meinen)
This commit is contained in:
Matthias Clasen 2006-05-09 02:25:46 +00:00 committed by Matthias Clasen
parent a8f0c8d82c
commit 9b62142d44
4 changed files with 15 additions and 7 deletions

View File

@ -1,5 +1,9 @@
2006-05-08 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_add_shortcut_folder):
* gtk/gtktextbufferserialize.c (parse_attr_element): Fix some typos in
messages. (#341091, Tino Meinen)
* gtk/gtkstatusicon.c: Some cleanups.
* gtk/gtkstatusicon.c (gtk_status_icon_get_property): Silently return

View File

@ -1,5 +1,9 @@
2006-05-08 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_add_shortcut_folder):
* gtk/gtktextbufferserialize.c (parse_attr_element): Fix some typos in
messages. (#341091, Tino Meinen)
* gtk/gtkstatusicon.c: Some cleanups.
* gtk/gtkstatusicon.c (gtk_status_icon_get_property): Silently return

View File

@ -6744,7 +6744,7 @@ gtk_file_chooser_default_add_shortcut_folder (GtkFileChooser *chooser,
g_set_error (error,
GTK_FILE_CHOOSER_ERROR,
GTK_FILE_CHOOSER_ERROR_ALREADY_EXISTS,
_("shortcut %s already exists"),
_("Shortcut %s already exists"),
uri);
g_free (uri);

View File

@ -798,8 +798,8 @@ check_id_or_name (GMarkupParseContext *context,
set_error (error, context,
G_MARKUP_ERROR,
G_MARKUP_ERROR_PARSE,
_("The attribute \"name\" were found twice on the <%s> element"),
element_name);
_("The attribute \"%s\" was found twice on the <%s> element"),
"name", element_name);
return FALSE;
}
@ -824,8 +824,8 @@ check_id_or_name (GMarkupParseContext *context,
set_error (error, context,
G_MARKUP_ERROR,
G_MARKUP_ERROR_PARSE,
_("The attribute \"id\" were found twice on the <%s> element"),
element_name);
_("The attribute \"%s\" was found twice on the <%s> element"),
"id", element_name);
return FALSE;
}
@ -848,7 +848,7 @@ check_id_or_name (GMarkupParseContext *context,
{
set_error (error, context,
G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
_("<%s> element neither a \"name\" nor an \"id\" element"), element_name);
_("<%s> element has neither a \"name\" nor an \"id\" element"), element_name);
return FALSE;
}
@ -1194,7 +1194,7 @@ parse_attr_element (GMarkupParseContext *context,
{
set_error (error, context,
G_MARKUP_ERROR, G_MARKUP_ERROR_PARSE,
_("\"%s\" is not a valid value of for attribute \"%s\""),
_("\"%s\" is not a valid value for attribute \"%s\""),
value, name);
g_value_unset (&gvalue);
return;