summaryrefslogtreecommitdiff
path: root/typing-break/main.c
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-02-13 12:32:06 +0100
committerraveit65 <[email protected]>2021-02-16 14:07:47 +0100
commite50a1907e04a320bf9e054182b8dbeb4c52eb076 (patch)
treef0c11e26e732a7693149229c6d5fd7449149b35b /typing-break/main.c
parent68306612ea6c7dc8635290950ce435a459dd4568 (diff)
downloadmate-control-center-e50a1907e04a320bf9e054182b8dbeb4c52eb076.tar.bz2
mate-control-center-e50a1907e04a320bf9e054182b8dbeb4c52eb076.tar.xz
build: allow users to disable gettext support (--disable-nls)
Diffstat (limited to 'typing-break/main.c')
-rw-r--r--typing-break/main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/typing-break/main.c b/typing-break/main.c
index 145d1c5d..c018f820 100644
--- a/typing-break/main.c
+++ b/typing-break/main.c
@@ -68,12 +68,16 @@ main (int argc, char *argv[])
GError *error = NULL;
gboolean retval;
+#ifdef ENABLE_NLS
bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR);
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
textdomain (GETTEXT_PACKAGE);
+#endif /* ENABLE_NLS */
option_context = g_option_context_new (NULL);
+#ifdef ENABLE_NLS
g_option_context_set_translation_domain (option_context, GETTEXT_PACKAGE);
+#endif /* ENABLE_NLS */
g_option_context_add_main_entries (option_context, options, GETTEXT_PACKAGE);
g_option_context_add_group (option_context, gtk_get_option_group (TRUE));