mirror of
https://github.com/rolfiee/wiki.git
synced 2025-06-18 11:15:33 -04:00
12 lines
261 B
Bash
Executable File
12 lines
261 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Add new languages here, space separated and using the ID for `crowdin pull`
|
|
LANGUAGES="es-ES fr he hu in-context id it ja ko pl ru sv-SE zh-CN"
|
|
|
|
for LANGUAGE in $LANGUAGES; do
|
|
echo $LANGUAGE
|
|
crowdin pull -l $LANGUAGE
|
|
done
|
|
|
|
./fix\ in-context.sh
|