diff options
Diffstat (limited to 'src/capplet')
-rw-r--r-- | src/capplet/mate-notification-applet.c | 4 | ||||
-rw-r--r-- | src/capplet/mate-notification-properties.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/capplet/mate-notification-applet.c b/src/capplet/mate-notification-applet.c index 04a799d..ec10acc 100644 --- a/src/capplet/mate-notification-applet.c +++ b/src/capplet/mate-notification-applet.c @@ -166,9 +166,11 @@ applet_main (MatePanelApplet *applet_widget) MateNotificationApplet *applet; GtkWidget *box; +#ifdef ENABLE_NLS bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); textdomain (GETTEXT_PACKAGE); +#endif /* ENABLE_NLS */ g_set_application_name (_("Do Not Disturb")); gtk_window_set_default_icon_name ("mate-notification-properties"); @@ -202,7 +204,9 @@ applet_main (MatePanelApplet *applet_widget) /* set up context menu */ applet->action_group = gtk_action_group_new ("Do Not Disturb Actions"); +#ifdef ENABLE_NLS gtk_action_group_set_translation_domain (applet->action_group, GETTEXT_PACKAGE); +#endif /* ENABLE_NLS */ gtk_action_group_add_actions (applet->action_group, applet_menu_actions, G_N_ELEMENTS (applet_menu_actions), applet); diff --git a/src/capplet/mate-notification-properties.c b/src/capplet/mate-notification-properties.c index 154029d..7d43455 100644 --- a/src/capplet/mate-notification-properties.c +++ b/src/capplet/mate-notification-properties.c @@ -511,9 +511,11 @@ int main(int argc, char** argv) { NotificationAppletDialog dialog = {NULL, }; /* <- ? */ +#ifdef ENABLE_NLS bindtextdomain(GETTEXT_PACKAGE, NOTIFICATION_LOCALEDIR); bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8"); textdomain(GETTEXT_PACKAGE); +#endif /* ENABLE_NLS */ gtk_init(&argc, &argv); |