Skip to content

Commit 084385e

Browse files
add SwiftNextcloudUI
Signed-off-by: tobiasKaminsky <[email protected]>
1 parent 3f8eb7a commit 084385e

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM ghcr.io/nextcloud/continuous-integration-translations:latest
2+
3+
MAINTAINER Tobias Kaminsky <[email protected]>
4+
5+
ADD handleSwiftNextcloudUITranslations.sh /handleTranslations.sh

translations/config.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,12 @@
225225
""
226226
]
227227
},
228+
{
229+
"name": "swiftnextcloudui",
230+
"arguments": [
231+
""
232+
]
233+
},
228234
{
229235
"name": "desktop",
230236
"arguments": [
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/bin/sh
2+
3+
# verbose and exit on error
4+
set -xe
5+
6+
# import GPG keys
7+
gpg --import /gpg/nextcloud-bot.public.asc
8+
gpg --allow-secret-key-import --import /gpg/nextcloud-bot.asc
9+
gpg --list-keys
10+
11+
# fetch git repo
12+
git clone [email protected]:nextcloud/swiftnextcloudui /app
13+
14+
# push sources
15+
tx push -s
16+
17+
# pull translations
18+
tx pull -f -a
19+
20+
# create git commit and push it
21+
git add .
22+
git commit -am "fix(l10n): Update translations from Transifex" -s || true
23+
git push origin main
24+
echo "done"

0 commit comments

Comments
 (0)