From eff4ae74633df0aa911c21eb88e091a7c9dcbfd2 Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Fri, 12 Sep 2025 00:07:48 +0200 Subject: [PATCH] [3.13] Fetch 0 percent resources To clear out incorrect translations. --- manage_translation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manage_translation.py b/manage_translation.py index c045db1a51..816ba69190 100755 --- a/manage_translation.py +++ b/manage_translation.py @@ -40,7 +40,7 @@ def fetch(): sys.stderr.write("The Transifex client app is required.\n") exit(code) lang = LANGUAGE - _call(f'tx pull -l {lang} --minimum-perc=1 --force --skip') + _call(f'tx pull -l {lang} --force --skip') for file in Path().rglob('*.po'): _call(f'msgcat --no-location -o {file} {file}')