diff --git a/tools/python/convert_strings.py b/tools/python/convert_strings.py index 8276191914..69d3455666 100755 --- a/tools/python/convert_strings.py +++ b/tools/python/convert_strings.py @@ -7,8 +7,6 @@ import sys def langs_order(lang): if lang == 'en': return '0' - elif lang == 'ru': - return '1' return lang @@ -96,7 +94,7 @@ if __name__ == '__main__': fout = sys.stdout if options.output == '-' else open(options.output, 'w') if not options.langs: - langs = 'en ru ar cs da nl fi fr de hu id it ja ko nb pl pt ro es sv th tr uk vi zh-Hans zh-Hant he sk'.split() + langs = 'en en-AU en-GB en-UK ar be cs da de es es-MX eu he nl fi fr hu id it ja ko nb pl pt pt-BR ro ru sk sv th tr uk vi zh-Hans zh-Hant'.split() elif options.langs == '?': langs = None else: diff --git a/tools/unix/translate_categories.sh b/tools/unix/translate_categories.sh index aa2c67be52..087dd16fc0 100755 --- a/tools/unix/translate_categories.sh +++ b/tools/unix/translate_categories.sh @@ -27,7 +27,7 @@ esac # Note: default Google engine doesn't properly support European Portuguese (pt-PT) # and always produces Brazilian translations. Need to use Deepl. -LANGUAGES=( en ar be bg cs da de el es fa 'fi' fr he hu id it ja ko nb nl pl pt-PT pt-BR ro ru sk sv sw th tr uk vi zh-CN zh-TW ) +LANGUAGES=( en ar be bg cs da de el es eu fa 'fi' fr he hu id it ja ko nb nl pl pt-PT pt-BR ro ru sk sv sw th tr uk vi zh-CN zh-TW ) for lang in "${LANGUAGES[@]}"; do TRANSLATION=$(trans -b "$SRC:$lang" "$WORD" | sed 's/ *//')