Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
48
tools/unix/translate_categories.sh
Executable file
48
tools/unix/translate_categories.sh
Executable file
|
|
@ -0,0 +1,48 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Install translate-shell before using this script:
|
||||
# https://github.com/soimort/translate-shell
|
||||
# Use `brew install translate-shell` on Mac OS X.
|
||||
|
||||
# There is a rate-limit for Google which can be work-arounded by using
|
||||
# another IP or IPv6.
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
echo "!!! This script is outdated, please use a better quality DeepL translations script"
|
||||
echo "!!! tools/python/translate.py"
|
||||
echo ""
|
||||
|
||||
DELIM=${DELIM:-:}
|
||||
|
||||
case $# in
|
||||
1) SRC=en
|
||||
WORD="$1"
|
||||
;;
|
||||
2) SRC="$1"
|
||||
WORD="$2"
|
||||
;;
|
||||
*) echo "Usage: [DELIM=' = '] $0 word_or_text_in_English"
|
||||
echo " or"
|
||||
echo " [DELIM=' = '] $0 source_language_code word_or_text_in_given_language"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# Note: default Google engine doesn't properly support European Portuguese (pt-PT)
|
||||
# and always produces Brazilian translations. Need to use Deepl, see tools/python/translate.py
|
||||
LANGUAGES=( en af ar be bg ca cs da de el es et eu fa 'fi' fr he hu id it ja ko lt mr nb nl pl pt pt-BR ro ru sk sv sw th tr uk vi zh-CN zh-TW )
|
||||
|
||||
for lang in "${LANGUAGES[@]}"; do
|
||||
# -no-bidi fixes wrong characters order for RTL languages.
|
||||
TRANSLATION=$(trans -b -no-bidi "$SRC:$lang" "$WORD" | sed 's/ *//')
|
||||
# Correct language codes to ours.
|
||||
case $lang in
|
||||
zh-CN) lang="zh-Hans" ;;
|
||||
zh-TW) lang="zh-Hant" ;;
|
||||
pt-PT) lang="pt" ;;
|
||||
esac
|
||||
echo "$lang${DELIM}$(tr '[:lower:]' '[:upper:]' <<< "${TRANSLATION:0:1}")${TRANSLATION:1}"
|
||||
# To avoid quota limits.
|
||||
sleep 0.5
|
||||
done
|
||||
Loading…
Add table
Add a link
Reference in a new issue