mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
36 lines
1.9 KiB
Bash
Executable File
36 lines
1.9 KiB
Bash
Executable File
|
|
# after pulling with txpull, this script pushes all local files back to transifex.
|
|
# this is esp. useful as you can modifiy the english source strings in between - without breaking all translations afterwards.
|
|
|
|
read -p "Push all translation files to Transifex? This will OVERWRITE all changes on Transifex since the last txpull!"
|
|
|
|
TXPREFIX="translations/delta-chat-android.stringsxml/"
|
|
SRCPREFIX="../MessengerProj/src/main/res/values"
|
|
|
|
cp "${SRCPREFIX}-ca/strings.xml" "${TXPREFIX}ca.xml"
|
|
cp "${SRCPREFIX}-da/strings.xml" "${TXPREFIX}da.xml"
|
|
cp "${SRCPREFIX}-de/strings.xml" "${TXPREFIX}de.xml"
|
|
cp "${SRCPREFIX}/strings.xml" "${TXPREFIX}en.xml" # also copy back the source, this is the only way to update the english strings
|
|
cp "${SRCPREFIX}-es/strings.xml" "${TXPREFIX}es.xml"
|
|
cp "${SRCPREFIX}-eu/strings.xml" "${TXPREFIX}eu.xml"
|
|
cp "${SRCPREFIX}-fr/strings.xml" "${TXPREFIX}fr.xml"
|
|
cp "${SRCPREFIX}-hu/strings.xml" "${TXPREFIX}hu.xml"
|
|
cp "${SRCPREFIX}-it/strings.xml" "${TXPREFIX}it.xml"
|
|
cp "${SRCPREFIX}-ja/strings.xml" "${TXPREFIX}ja_JP.xml"
|
|
cp "${SRCPREFIX}-ko/strings.xml" "${TXPREFIX}ko.xml"
|
|
cp "${SRCPREFIX}-nb/strings.xml" "${TXPREFIX}nb_NO.xml"
|
|
cp "${SRCPREFIX}-nl/strings.xml" "${TXPREFIX}nl.xml"
|
|
cp "${SRCPREFIX}-pl/strings.xml" "${TXPREFIX}pl.xml"
|
|
cp "${SRCPREFIX}-pt/strings.xml" "${TXPREFIX}pt.xml"
|
|
cp "${SRCPREFIX}-ru/strings.xml" "${TXPREFIX}ru.xml"
|
|
cp "${SRCPREFIX}-sq/strings.xml" "${TXPREFIX}sq.xml"
|
|
cp "${SRCPREFIX}-sr/strings.xml" "${TXPREFIX}sr.xml"
|
|
cp "${SRCPREFIX}-ta/strings.xml" "${TXPREFIX}ta.xml"
|
|
cp "${SRCPREFIX}-te/strings.xml" "${TXPREFIX}te.xml"
|
|
cp "${SRCPREFIX}-tr/strings.xml" "${TXPREFIX}tr.xml"
|
|
cp "${SRCPREFIX}-uk/strings.xml" "${TXPREFIX}uk.xml"
|
|
cp "${SRCPREFIX}-zh/strings.xml" "${TXPREFIX}zh_CN.xml"
|
|
|
|
tx push -s -t # -s: push source, -t: push translations, -f: ignore timestamps; see https://docs.transifex.com/client/push
|
|
|