Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/docker-ci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2022-10-19 12:40:01 +0300
committerGitHub <noreply@github.com>2022-10-19 12:40:01 +0300
commit7de37e390b05e421362040a8b4ef8a962b50f70e (patch)
treeb433e183fd103c42fd3d60e3d60282e72ad3d066
parent320ad515a79f7e17dd027eed6a4fbeb3252d1d48 (diff)
parent6ef0774f64f952cbbd6df950260212b6c9912f59 (diff)
Merge pull request #451 from nextcloud/bugfix/noid/fix-android-translations-2
Also fix android files
-rwxr-xr-xtranslations/handlePlainTranslations.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/translations/handlePlainTranslations.sh b/translations/handlePlainTranslations.sh
index a5225cf..5742280 100755
--- a/translations/handlePlainTranslations.sh
+++ b/translations/handlePlainTranslations.sh
@@ -34,6 +34,14 @@ if [ $1 = "nextcloud" -a $2 = "android" ]; then
for version in $versions
do
git checkout $version
+
+ # Migrate the transifex config to the new client version
+ tx migrate
+ git add .tx/config
+ rm .tx/config_*
+ git commit -am "[tx-robot] Update transifex configuration" -s || true
+ git push
+
cp app/src/main/res/values/strings.xml stable-values/$version.xml
done