summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Karapetsas <[email protected]>2012-05-13 17:39:11 +0200
committerStefano Karapetsas <[email protected]>2012-05-13 17:39:11 +0200
commit73f4151156db00b2a0239fe45042588ae548ef3e (patch)
tree69660f4ed54ced7a3f908ab3f0d7270bba1d1ce4
parent969f937d75533119f617feecce1cfbb43cc528c8 (diff)
downloadmate-notification-daemon-73f4151156db00b2a0239fe45042588ae548ef3e.tar.bz2
mate-notification-daemon-73f4151156db00b2a0239fe45042588ae548ef3e.tar.xz
make new themes names translatable
-rw-r--r--src/capplet/mate-notification-properties.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/capplet/mate-notification-properties.c b/src/capplet/mate-notification-properties.c
index dab07ae..3646789 100644
--- a/src/capplet/mate-notification-properties.c
+++ b/src/capplet/mate-notification-properties.c
@@ -232,7 +232,15 @@ static void notification_properties_dialog_setup_themes(NotificationAppletDialog
theme_name = get_theme_name(filename);
/* FIXME: other solution than hardcode? */
- if (g_str_equal(theme_name, "slider"))
+ if (g_str_equal(theme_name, "coco"))
+ {
+ theme_label = g_strdup(_("Coco"));
+ }
+ else if (g_str_equal(theme_name, "nodoka"))
+ {
+ theme_label = g_strdup(_("Nodoka"));
+ }
+ else if (g_str_equal(theme_name, "slider"))
{
theme_label = g_strdup(_("Slider"));
}