collapse several strings into one for the translators' benefit.
* src/ui/theme-parser.c: collapse several strings into one for the translators' benefit. svn path=/trunk/; revision=4117
This commit is contained in:
parent
dab00ab036
commit
720a17acd7
@ -1,3 +1,8 @@
|
|||||||
|
2009-02-05 Thomas Thurman <tthurman@gnome.org>
|
||||||
|
|
||||||
|
* src/ui/theme-parser.c: collapse several strings into one
|
||||||
|
for the translators' benefit.
|
||||||
|
|
||||||
2009-02-04 Thomas Thurman <tthurman@gnome.org>
|
2009-02-04 Thomas Thurman <tthurman@gnome.org>
|
||||||
|
|
||||||
* configure.in: post-branch bump to 2.27.0.
|
* configure.in: post-branch bump to 2.27.0.
|
||||||
|
@ -3713,7 +3713,8 @@ text_handler (GMarkupParseContext *context,
|
|||||||
{
|
{
|
||||||
set_error (error, context, G_MARKUP_ERROR,
|
set_error (error, context, G_MARKUP_ERROR,
|
||||||
G_MARKUP_ERROR_PARSE,
|
G_MARKUP_ERROR_PARSE,
|
||||||
_("<name> specified twice for this theme"));
|
_("<%s> specified twice for this theme"),
|
||||||
|
"name");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3724,7 +3725,8 @@ text_handler (GMarkupParseContext *context,
|
|||||||
{
|
{
|
||||||
set_error (error, context, G_MARKUP_ERROR,
|
set_error (error, context, G_MARKUP_ERROR,
|
||||||
G_MARKUP_ERROR_PARSE,
|
G_MARKUP_ERROR_PARSE,
|
||||||
_("<author> specified twice for this theme"));
|
_("<%s> specified twice for this theme"),
|
||||||
|
"author");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3735,7 +3737,8 @@ text_handler (GMarkupParseContext *context,
|
|||||||
{
|
{
|
||||||
set_error (error, context, G_MARKUP_ERROR,
|
set_error (error, context, G_MARKUP_ERROR,
|
||||||
G_MARKUP_ERROR_PARSE,
|
G_MARKUP_ERROR_PARSE,
|
||||||
_("<copyright> specified twice for this theme"));
|
_("<%s> specified twice for this theme"),
|
||||||
|
"copyright");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3746,7 +3749,8 @@ text_handler (GMarkupParseContext *context,
|
|||||||
{
|
{
|
||||||
set_error (error, context, G_MARKUP_ERROR,
|
set_error (error, context, G_MARKUP_ERROR,
|
||||||
G_MARKUP_ERROR_PARSE,
|
G_MARKUP_ERROR_PARSE,
|
||||||
_("<date> specified twice for this theme"));
|
_("<%s> specified twice for this theme"),
|
||||||
|
"date");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3757,7 +3761,8 @@ text_handler (GMarkupParseContext *context,
|
|||||||
{
|
{
|
||||||
set_error (error, context, G_MARKUP_ERROR,
|
set_error (error, context, G_MARKUP_ERROR,
|
||||||
G_MARKUP_ERROR_PARSE,
|
G_MARKUP_ERROR_PARSE,
|
||||||
_("<description> specified twice for this theme"));
|
_("<%s> specified twice for this theme"),
|
||||||
|
"description");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user