mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
18 lines
522 B
Bash
Executable File
18 lines
522 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
|
|
|
|
echo "res/values-$LANG/strings.xml added:"
|
|
echo "- add the name to res/values/arrays.xml"
|
|
echo "- if needed, language mappings can be added to .tx/config"
|
|
echo "- tx pull"
|
|
echo " (on problems, 'tx -d pull' gives verbose output)"
|