diff options
author | rbuj <[email protected]> | 2021-01-27 18:03:29 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-02-08 20:39:25 +0100 |
commit | 5af31646583faedf3d16746f19e4d7d679852ac4 (patch) | |
tree | fd63bcbdb1a45bc8dbe08ce4c772eaea0c6e49f8 /mate-dictionary/libgdict | |
parent | 1397f530214fe111405d98687d4b50b4ad23da45 (diff) | |
download | mate-utils-5af31646583faedf3d16746f19e4d7d679852ac4.tar.bz2 mate-utils-5af31646583faedf3d16746f19e4d7d679852ac4.tar.xz |
build: allow users to disable gettext support (--disable-nls)
Diffstat (limited to 'mate-dictionary/libgdict')
-rw-r--r-- | mate-dictionary/libgdict/gdict-utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mate-dictionary/libgdict/gdict-utils.c b/mate-dictionary/libgdict/gdict-utils.c index 1e6447ed..31f3fad8 100644 --- a/mate-dictionary/libgdict/gdict-utils.c +++ b/mate-dictionary/libgdict/gdict-utils.c @@ -156,7 +156,9 @@ gdict_get_option_group (void) g_option_group_set_parse_hooks (group, pre_parse_hook, post_parse_hook); g_option_group_add_entries (group, gdict_args); +#ifdef ENABLE_NLS g_option_group_set_translation_domain (group, GETTEXT_PACKAGE); +#endif /* ENABLE_NLS */ return group; } |