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:
authorMorris Jobke <hey@morrisjobke.de>2021-03-19 12:32:53 +0300
committerGitHub <noreply@github.com>2021-03-19 12:32:53 +0300
commitd7b3bb689490069b709a3d6796cbf03c85505590 (patch)
treec935c4189057b2e30629c91ca399654830c1c445
parent581d0528a6ba2a8bc128ba2e6ffbcac58d8520b0 (diff)
parenta87dd8625393073c6f84e74aa7c05de0207b44c2 (diff)
Sign-off the translations generated by the translation bot
-rwxr-xr-xtranslations/handleAppTranslations.sh2
-rwxr-xr-xtranslations/handleAppsTranslations.sh2
-rwxr-xr-xtranslations/handleAppstoreTranslations.sh2
-rwxr-xr-xtranslations/handleChangelogServerTranslations.sh2
-rwxr-xr-xtranslations/handleDesktopTranslations.sh2
-rwxr-xr-xtranslations/handleExternalBranchedAndroidTranslations.sh2
-rwxr-xr-xtranslations/handlePlainTranslations.sh2
-rwxr-xr-xtranslations/handleTranslations.sh2
-rwxr-xr-xtranslations/handleWindowsPhoneAppTranslations.sh2
-rwxr-xr-xtranslations/handleiOSTalkTranslations.sh2
-rwxr-xr-xtranslations/handleiOSTranslations.sh2
11 files changed, 11 insertions, 11 deletions
diff --git a/translations/handleAppTranslations.sh b/translations/handleAppTranslations.sh
index 0f2c4a5..9da37e4 100755
--- a/translations/handleAppTranslations.sh
+++ b/translations/handleAppTranslations.sh
@@ -95,7 +95,7 @@ do
# create git commit and push it
git add l10n/*.js l10n/*.json
- git commit -am "[tx-robot] updated from transifex" || true
+ git commit -am "[tx-robot] updated from transifex" -s || true
git push origin $version
echo "done with $version"
diff --git a/translations/handleAppsTranslations.sh b/translations/handleAppsTranslations.sh
index 0a7948b..73c991d 100755
--- a/translations/handleAppsTranslations.sh
+++ b/translations/handleAppsTranslations.sh
@@ -51,6 +51,6 @@ do
done
# create git commit and push it
-git commit -m "[tx-robot] updated from transifex" || true
+git commit -m "[tx-robot] updated from transifex" -s || true
git push origin master
echo "done"
diff --git a/translations/handleAppstoreTranslations.sh b/translations/handleAppstoreTranslations.sh
index cb615b2..e212705 100755
--- a/translations/handleAppstoreTranslations.sh
+++ b/translations/handleAppstoreTranslations.sh
@@ -28,6 +28,6 @@ rm -rf locale/de_DE/
# create git commit and push it
git add locale/
-git commit -am "[tx-robot] updated from transifex" || true
+git commit -am "[tx-robot] updated from transifex" -s || true
git push origin master
echo "done"
diff --git a/translations/handleChangelogServerTranslations.sh b/translations/handleChangelogServerTranslations.sh
index b12b0c8..4c2b3d7 100755
--- a/translations/handleChangelogServerTranslations.sh
+++ b/translations/handleChangelogServerTranslations.sh
@@ -25,6 +25,6 @@ php /translationtool/generate-xml.php /app/data/
# create git commit and push it
git add .
-git commit -am "[tx-robot] updated from transifex" || true
+git commit -am "[tx-robot] updated from transifex" -s || true
git push origin master
echo "done"
diff --git a/translations/handleDesktopTranslations.sh b/translations/handleDesktopTranslations.sh
index f719b90..75fa055 100755
--- a/translations/handleDesktopTranslations.sh
+++ b/translations/handleDesktopTranslations.sh
@@ -74,7 +74,7 @@ do
# create git commit and push it
git add .
- git commit -am "[tx-robot] updated from transifex" || true
+ git commit -am "[tx-robot] updated from transifex" -s || true
git push origin $version
echo "done with $version"
done
diff --git a/translations/handleExternalBranchedAndroidTranslations.sh b/translations/handleExternalBranchedAndroidTranslations.sh
index 1910292..e03c91c 100755
--- a/translations/handleExternalBranchedAndroidTranslations.sh
+++ b/translations/handleExternalBranchedAndroidTranslations.sh
@@ -28,6 +28,6 @@ fi
# create git commit and push it
git add .
-git commit -am "[tx-robot] updated from transifex" || true
+git commit -am "[tx-robot] updated from transifex" -s || true
git push -f origin $3
echo "done"
diff --git a/translations/handlePlainTranslations.sh b/translations/handlePlainTranslations.sh
index 508471e..d543318 100755
--- a/translations/handlePlainTranslations.sh
+++ b/translations/handlePlainTranslations.sh
@@ -104,7 +104,7 @@ do
# create git commit and push it
git add .
- git commit -am "[tx-robot] updated from transifex" || true
+ git commit -am "[tx-robot] updated from transifex" -s || true
git push origin $version
echo "done"
done
diff --git a/translations/handleTranslations.sh b/translations/handleTranslations.sh
index 82d3645..1e841be 100755
--- a/translations/handleTranslations.sh
+++ b/translations/handleTranslations.sh
@@ -87,7 +87,7 @@ do
# create git commit and push it
git add apps core lib
- git commit -am "[tx-robot] updated from transifex" || true
+ git commit -am "[tx-robot] updated from transifex" -s || true
git push origin $version
echo "done with $version"
diff --git a/translations/handleWindowsPhoneAppTranslations.sh b/translations/handleWindowsPhoneAppTranslations.sh
index e163156..5bf9e07 100755
--- a/translations/handleWindowsPhoneAppTranslations.sh
+++ b/translations/handleWindowsPhoneAppTranslations.sh
@@ -20,6 +20,6 @@ tx pull -f -a --minimum-perc=75
# create git commit and push it
git add .
-git commit -am "[tx-robot] updated from transifex" || true
+git commit -am "[tx-robot] updated from transifex" -s || true
git push origin master
echo "done"
diff --git a/translations/handleiOSTalkTranslations.sh b/translations/handleiOSTalkTranslations.sh
index ec46ef2..3d66f10 100755
--- a/translations/handleiOSTalkTranslations.sh
+++ b/translations/handleiOSTalkTranslations.sh
@@ -32,6 +32,6 @@ cd ..
# create git commit and push it
git add .
-git commit -am "[tx-robot] updated from transifex" || true
+git commit -am "[tx-robot] updated from transifex" -s || true
git push origin master
echo "done"
diff --git a/translations/handleiOSTranslations.sh b/translations/handleiOSTranslations.sh
index 4f5421e..9053978 100755
--- a/translations/handleiOSTranslations.sh
+++ b/translations/handleiOSTranslations.sh
@@ -33,6 +33,6 @@ cd ..
# create git commit and push it
git add .
-git commit -am "[tx-robot] updated from transifex" || true
+git commit -am "[tx-robot] updated from transifex" -s || true
git push origin develop
echo "done"