-
Notifications
You must be signed in to change notification settings - Fork 42
/
trigger_deepl.sh
executable file
·44 lines (36 loc) · 1 KB
/
trigger_deepl.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/bash
# Load environment variables from config.env
if [ -f ./.env ]; then
source ./.env
else
echo "Environment file not found!"
exit 1
fi
# provide access token from https://translate.nitrokey.com/accounts/profile/#api
token=$1
if [ $# -eq 0 ]
then
echo "Please provide your Weblate Access Token as first Parameter. Get it from https://translate.nitrokey.com/accounts/profile/#api"
exit
fi
for lang in "${LANGUAGES[@]}"
do
echo -e "\n $(date) Starting deepl Translation for language $lang..."
for component in "${COMPONENTS[@]}"
do
echo -e "$(date) Starting to translate $lang for component $component"
curl \
--data-binary '{
"mode":"translate",
"auto_source":"mt",
"engines":["deepl"],
"filter_type":"nottranslated",
"threshold":"80"
}' \
-H "Content-Type: application/json" \
-H "Authorization: Token $token" \
"$WEBLATE_API/translations/$WEBLATE_PROJECT/$component/$lang/autotranslate/"
echo -e "\n$(date) done"
done
echo -e "\n$(date) Language $lang passed"
done