Remove trailing space from some translated strings

https://bugzilla.gnome.org/show_bug.cgi?id=687700
This commit is contained in:
Matthias Clasen 2012-11-09 22:12:57 -05:00
parent 7fd15ee4ae
commit 138f4c1e2f
2 changed files with 3 additions and 3 deletions

View File

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

View File

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