From 591dc9ed8fc748d5e594b337d03f22d897610eff Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 6 Feb 2019 12:47:14 +0000 Subject: [PATCH 1/1] Don't use fuzzy translations: they are more confusing than they're worth. --- i18n.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i18n.py b/i18n.py index 76084e3ec..935bc3461 100644 --- a/i18n.py +++ b/i18n.py @@ -32,5 +32,5 @@ def po_to_mo(dir, name, bld): po = os.path.join('po', '%s.po' % lang) mo = os.path.join('mo', lang, '%s.mo' % name) - bld(rule='msgfmt -c -f ${SRC} -o ${TGT}', source=bld.path.make_node(po), target=bld.path.get_bld().make_node(mo)) + bld(rule='msgfmt -c ${SRC} -o ${TGT}', source=bld.path.make_node(po), target=bld.path.get_bld().make_node(mo)) bld.install_files(os.path.join('${PREFIX}', 'share', 'locale', lang, 'LC_MESSAGES'), mo) -- 2.30.2