summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-02-06 12:47:14 +0000
committerCarl Hetherington <cth@carlh.net>2019-02-06 12:48:15 +0000
commit788abf2792a17b89a5b11d349ad9fe5a2dffe5f2 (patch)
treef3e5d52efb8cf7ac68ac8759ee25a3348f27d081
parent32a1ce5178d4e1e8bdd375e0786ce87932d0e64d (diff)
Don't use fuzzy translations: they are more confusing than they're worth.
-rw-r--r--i18n.py2
1 files changed, 1 insertions, 1 deletions
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)