diff options
author | Stefano Karapetsas <[email protected]> | 2012-05-13 17:39:11 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2012-05-13 17:39:11 +0200 |
commit | 73f4151156db00b2a0239fe45042588ae548ef3e (patch) | |
tree | 69660f4ed54ced7a3f908ab3f0d7270bba1d1ce4 /src/capplet/mate-notification-properties.c | |
parent | 969f937d75533119f617feecce1cfbb43cc528c8 (diff) | |
download | mate-notification-daemon-73f4151156db00b2a0239fe45042588ae548ef3e.tar.bz2 mate-notification-daemon-73f4151156db00b2a0239fe45042588ae548ef3e.tar.xz |
make new themes names translatable
Diffstat (limited to 'src/capplet/mate-notification-properties.c')
-rw-r--r-- | src/capplet/mate-notification-properties.c | 10 |
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")); } |