From: Matthias Clasen Date: Sat, 10 Nov 2012 03:12:57 +0000 (-0500) Subject: Remove trailing space from some translated strings X-Git-Tag: 2.35.2~43 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=138f4c1e2f3fdea3168f91fc72cde9fb0b0e602b;p=platform%2Fupstream%2Fglib.git Remove trailing space from some translated strings https://bugzilla.gnome.org/show_bug.cgi?id=687700 --- diff --git a/gio/glib-compile-schemas.c b/gio/glib-compile-schemas.c index 2b4ef0e..bfac84a 100644 --- a/gio/glib-compile-schemas.c +++ b/gio/glib-compile-schemas.c @@ -1885,7 +1885,7 @@ set_overrides (GHashTable *schema_table, { fprintf (stderr, _("error parsing key `%s' in schema `%s' " "as specified in override file `%s': " - "%s. "), + "%s."), key, group, filename, error->message); g_clear_error (&error); diff --git a/glib/gmarkup.c b/glib/gmarkup.c index 6555545..f424026 100644 --- a/glib/gmarkup.c +++ b/glib/gmarkup.c @@ -424,7 +424,7 @@ slow_name_validate (GMarkupParseContext *context, g_unichar_isalpha (g_utf8_get_char (p)))))) { set_error (context, error, G_MARKUP_ERROR_PARSE, - _("'%s' is not a valid name "), name); + _("'%s' is not a valid name"), name); return FALSE; } @@ -440,7 +440,7 @@ slow_name_validate (GMarkupParseContext *context, g_unichar_isalpha (g_utf8_get_char (p)))))) { set_error (context, error, G_MARKUP_ERROR_PARSE, - _("'%s' is not a valid name: '%c' "), name, *p); + _("'%s' is not a valid name: '%c'"), name, *p); return FALSE; } }