diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-02-06 12:47:14 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-02-06 12:47:14 +0000 |
| commit | 591dc9ed8fc748d5e594b337d03f22d897610eff (patch) | |
| tree | 3be8b6d5811850d56f3611357b5b63cd31bd6ad5 /i18n.py | |
| parent | 9523450b1690812a306265c5ae0a264b6c79f18e (diff) | |
Don't use fuzzy translations: they are more confusing than they're worth.
Diffstat (limited to 'i18n.py')
| -rw-r--r-- | i18n.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |
