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-screenshot | |
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-screenshot')
-rw-r--r-- | mate-screenshot/data/Makefile.am | 9 | ||||
-rw-r--r-- | mate-screenshot/src/mate-screenshot.c | 4 |
2 files changed, 13 insertions, 0 deletions
diff --git a/mate-screenshot/data/Makefile.am b/mate-screenshot/data/Makefile.am index d5603539..d38a91fd 100644 --- a/mate-screenshot/data/Makefile.am +++ b/mate-screenshot/data/Makefile.am @@ -16,8 +16,13 @@ mate_screenshotdir = $(datadir)/applications mate_screenshot_in_files = mate-screenshot.desktop.in mate_screenshot_DATA = $(mate_screenshot_in_files:.desktop.in=.desktop) + $(mate_screenshot_DATA): $(mate_screenshot_in_files) +if USE_NLS $(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@ +else + $(AM_V_GEN) cp $< $@ +endif man_MANS = mate-screenshot.1 @@ -25,7 +30,11 @@ appdatadir = $(datadir)/metainfo appdata_in_files = mate-screenshot.appdata.xml.in appdata_DATA = $(appdata_in_files:.xml.in=.xml) $(appdata_DATA): $(appdata_in_files) +if USE_NLS $(AM_V_GEN) $(MSGFMT) --xml --template $< -d $(top_srcdir)/po -o $@ +else + $(AM_V_GEN) cp $< $@ +endif gsettings_SCHEMAS = org.mate.screenshot.gschema.xml @GSETTINGS_RULES@ diff --git a/mate-screenshot/src/mate-screenshot.c b/mate-screenshot/src/mate-screenshot.c index c888d4d7..09bf2e8a 100644 --- a/mate-screenshot/src/mate-screenshot.c +++ b/mate-screenshot/src/mate-screenshot.c @@ -31,7 +31,9 @@ #include <unistd.h> #include <stdlib.h> #include <errno.h> +#ifdef ENABLE_NLS #include <locale.h> +#endif /* ENABLE_NLS */ #include <glib/gi18n.h> #include <gio/gio.h> #include <pwd.h> @@ -1321,10 +1323,12 @@ main (int argc, char *argv[]) { NULL }, }; +#ifdef ENABLE_NLS setlocale (LC_ALL, ""); bindtextdomain (GETTEXT_PACKAGE, MATELOCALEDIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); textdomain (GETTEXT_PACKAGE); +#endif /* ENABLE_NLS */ context = g_option_context_new (_("Take a picture of the screen")); g_option_context_set_ignore_unknown_options (context, FALSE); |