summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas James Alexander Thurman <tthurman@src.gnome.org>2009-02-05 19:26:06 +0000
committerThomas James Alexander Thurman <tthurman@src.gnome.org>2009-02-05 19:26:06 +0000
commit720a17acd75bbef107ffd6e39142ee45ec62a05b (patch)
treed854a01a578a01a9fc86ca8f38374e2d5ece801f /src
parentdab00ab0360a897d3516c2998838e0b26d732e75 (diff)
downloadmetacity-720a17acd75bbef107ffd6e39142ee45ec62a05b.tar.gz
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
Diffstat (limited to 'src')
-rw-r--r--src/ui/theme-parser.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/ui/theme-parser.c b/src/ui/theme-parser.c
index 98dc1662..c3089621 100644
--- a/src/ui/theme-parser.c
+++ b/src/ui/theme-parser.c
@@ -3713,7 +3713,8 @@ text_handler (GMarkupParseContext *context,
{
set_error (error, context, G_MARKUP_ERROR,
G_MARKUP_ERROR_PARSE,
- _("<name> specified twice for this theme"));
+ _("<%s> specified twice for this theme"),
+ "name");
return;
}
@@ -3724,7 +3725,8 @@ text_handler (GMarkupParseContext *context,
{
set_error (error, context, G_MARKUP_ERROR,
G_MARKUP_ERROR_PARSE,
- _("<author> specified twice for this theme"));
+ _("<%s> specified twice for this theme"),
+ "author");
return;
}
@@ -3735,7 +3737,8 @@ text_handler (GMarkupParseContext *context,
{
set_error (error, context, G_MARKUP_ERROR,
G_MARKUP_ERROR_PARSE,
- _("<copyright> specified twice for this theme"));
+ _("<%s> specified twice for this theme"),
+ "copyright");
return;
}
@@ -3746,7 +3749,8 @@ text_handler (GMarkupParseContext *context,
{
set_error (error, context, G_MARKUP_ERROR,
G_MARKUP_ERROR_PARSE,
- _("<date> specified twice for this theme"));
+ _("<%s> specified twice for this theme"),
+ "date");
return;
}
@@ -3757,7 +3761,8 @@ text_handler (GMarkupParseContext *context,
{
set_error (error, context, G_MARKUP_ERROR,
G_MARKUP_ERROR_PARSE,
- _("<description> specified twice for this theme"));
+ _("<%s> specified twice for this theme"),
+ "description");
return;
}