mirror of
https://github.com/deltachat/deltachat-android.git
synced 2025-10-05 19:41:57 +02:00
14 lines
404 B
Bash
Executable file
14 lines
404 B
Bash
Executable file
# add a language, must be executed from the repo root
|
|
|
|
LANG=$1
|
|
|
|
mkdir res/values/$LANG/
|
|
|
|
cp res/values/strings.xml res/values-$LANG/strings.xml
|
|
|
|
# (needed because transifex may have different file times
|
|
# and does not overwrite old file)
|
|
touch -d "100 days ago" res/values-$LANG/strings.xml
|
|
|
|
# on problems, 'tx -d pull' gives verbose output
|
|
echo "res/values/$LANG/strings.xml added, 'tx pull' to update"
|