summaryrefslogtreecommitdiff
path: root/mate-dictionary/src/gdict-app.c
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-01-27 18:03:29 +0100
committerraveit65 <[email protected]>2021-02-08 20:39:25 +0100
commit5af31646583faedf3d16746f19e4d7d679852ac4 (patch)
treefd63bcbdb1a45bc8dbe08ce4c772eaea0c6e49f8 /mate-dictionary/src/gdict-app.c
parent1397f530214fe111405d98687d4b50b4ad23da45 (diff)
downloadmate-utils-5af31646583faedf3d16746f19e4d7d679852ac4.tar.bz2
mate-utils-5af31646583faedf3d16746f19e4d7d679852ac4.tar.xz
build: allow users to disable gettext support (--disable-nls)
Diffstat (limited to 'mate-dictionary/src/gdict-app.c')
-rw-r--r--mate-dictionary/src/gdict-app.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mate-dictionary/src/gdict-app.c b/mate-dictionary/src/gdict-app.c
index 9ed518ec..efe9f310 100644
--- a/mate-dictionary/src/gdict-app.c
+++ b/mate-dictionary/src/gdict-app.c
@@ -341,7 +341,9 @@ gdict_init (int *argc, char ***argv)
/* create the new option context */
context = g_option_context_new (_(" - Look up words in dictionaries"));
+#ifdef ENABLE_NLS
g_option_context_set_translation_domain (context, GETTEXT_PACKAGE);
+#endif /* ENABLE_NLS */
g_option_context_add_main_entries (context, gdict_app_goptions, GETTEXT_PACKAGE);
g_option_context_add_group (context, gdict_get_option_group ());
g_option_context_add_group (context, gtk_get_option_group (TRUE));