diff options
author | rbuj <[email protected]> | 2021-01-23 13:52:08 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-02-07 21:38:35 +0100 |
commit | 6de5a2680760436fe15ee16ed530f23ef1ced33a (patch) | |
tree | be4c64c279750dab39534f9963ef228c3246fd24 /libcaja-private/caja-clipboard.c | |
parent | cb9ed81342334d3ef5dde43a60ab0325930a2874 (diff) | |
download | caja-6de5a2680760436fe15ee16ed530f23ef1ced33a.tar.bz2 caja-6de5a2680760436fe15ee16ed530f23ef1ced33a.tar.xz |
build: allow users to disable gettext support (--disable-nls)
Diffstat (limited to 'libcaja-private/caja-clipboard.c')
-rw-r--r-- | libcaja-private/caja-clipboard.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libcaja-private/caja-clipboard.c b/libcaja-private/caja-clipboard.c index 874909b4..1821d6ad 100644 --- a/libcaja-private/caja-clipboard.c +++ b/libcaja-private/caja-clipboard.c @@ -495,7 +495,9 @@ initialize_clipboard_component_with_callback_data (GtkEditable *target, G_GNUC_BEGIN_IGNORE_DEPRECATIONS; action_group = gtk_action_group_new ("ClipboardActions"); +#ifdef ENABLE_NLS gtk_action_group_set_translation_domain (action_group, GETTEXT_PACKAGE); +#endif /* ENABLE_NLS */ gtk_action_group_add_actions (action_group, clipboard_entries, G_N_ELEMENTS (clipboard_entries), target); |