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 <coding@schilljs.com>2022-10-19 12:26:55 +0300
committerJoas Schilling <coding@schilljs.com>2022-10-19 12:26:55 +0300
commit6ef0774f64f952cbbd6df950260212b6c9912f59 (patch)
treeb433e183fd103c42fd3d60e3d60282e72ad3d066
parentf41c7578be0102f3a64e333d5be11001745ce45d (diff)
Also fix android files
Signed-off-by: Joas Schilling <coding@schilljs.com>
-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