-
Notifications
You must be signed in to change notification settings - Fork 1
143 lines (138 loc) · 5.8 KB
/
check_for_crowdin_updates.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
name: Check for Crowdin Updates
on:
schedule:
- cron: '0 0 * * 1' # Every Monday at 12:00 AM UTC, which is 10:00 AM Melbourne time (AEST)
workflow_dispatch:
jobs:
fetch_convert_and_diff_translations:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo Content
uses: actions/checkout@v4
with:
path: 'scripts'
# don't provide a branch (ref) so it uses the default for that event
- name: Checkout Android
uses: actions/checkout@v4
with:
repository: 'oxen-io/session-android'
path: 'android'
ref: 'dev'
- name: Checkout Desktop
uses: actions/checkout@v4
with:
repository: 'oxen-io/session-desktop'
path: 'desktop'
ref: 'unstable'
- name: Checkout iOS
uses: actions/checkout@v4
with:
repository: 'oxen-io/session-ios'
path: 'ios'
ref: 'dev'
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
cache: 'pip' # caching pip dependencies
- name: Install Dependencies
run: |
pip install -r ${{ github.workspace }}/scripts/crowdin/requirements.txt
- name: Download Translations
env:
CROWDIN_API_TOKEN: ${{ secrets.CROWDIN_API_TOKEN }}
run: |
python "${{ github.workspace }}/scripts/crowdin/download_translations_from_crowdin.py" \
"$CROWDIN_API_TOKEN" \
618696 \
407522 \
36 \
"${{ github.workspace }}/raw_translations" \
--skip-untranslated-strings
- name: Prepare Android Strings
run: |
python "${{ github.workspace }}/scripts/crowdin/generate_android_strings.py" \
"${{ github.workspace }}/raw_translations" \
"${{ github.workspace }}/android/app/src/main/res" \
"${{ github.workspace }}/android/session-android/libsession/src/main/java/org/session/libsession/utilities/NonTranslatableStringConstants.kt"
- name: Prepare Desktop Strings
run: |
python "${{ github.workspace }}/scripts/crowdin/generate_desktop_strings.py" \
"${{ github.workspace }}/raw_translations" \
"${{ github.workspace }}/desktop/_locales" \
"${{ github.workspace }}/desktop/ts/localization/constants.ts"
- name: Prepare iOS Strings
run: |
python "${{ github.workspace }}/scripts/crowdin/generate_ios_strings.py" \
"${{ github.workspace }}/raw_translations" \
"${{ github.workspace }}/ios/Session/Meta" \
"${{ github.workspace }}/ios/SessionUtilitiesKit/General/Constants.swift"
# - name: Create Android Pull Request
# uses: peter-evans/create-pull-request@v6
# with:
# path: 'android'
# token: ${{ secrets.CROWDIN_PR_TOKEN }}
# title: "[Automated] Update translations from Crowdin"
# body: |
# [Automated]
# This PR includes the latest translations from Crowdin
# Session uses the community-driven translation platform Crowdin for localization, anyone can contribute at https://getsession.org/translate
# branch: feature/update-crowdin-translations
# commit-message: "[Automated] Update translations from Crowdin"
# delete-branch: true
# - name: Create Desktop Pull Request
# uses: peter-evans/create-pull-request@v6
# with:
# path: 'desktop'
# token: ${{ secrets.CROWDIN_PR_TOKEN }}
# title: "[Automated] Update translations from Crowdin"
# body: |
# [Automated]
# This PR includes the latest translations from Crowdin
# Session uses the community-driven translation platform Crowdin for localization, anyone can contribute at https://getsession.org/translate
# branch: feature/update-crowdin-translations
# commit-message: "[Automated] Update translations from Crowdin"
# delete-branch: true
# - name: Create iOS Pull Request
# uses: peter-evans/create-pull-request@v6
# with:
# path: 'ios'
# token: ${{ secrets.CROWDIN_PR_TOKEN }}
# title: "[Automated] Update translations from Crowdin"
# body: |
# [Automated]
# This PR includes the latest translations from Crowdin
# Session uses the community-driven translation platform Crowdin for localization, anyone can contribute at https://getsession.org/translate
# branch: feature/update-crowdin-translations
# commit-message: "[Automated] Update translations from Crowdin"
# delete-branch: true
- name: Upload Android artifacts
uses: actions/upload-artifact@v4
with:
name: session-android-artifact
path: |
android/app/src/main/res/values*/strings.xml
android/session-android/libsession/src/main/java/org/session/libsession/utilities/NonTranslatableStringConstants.kt
overwrite: true
if-no-files-found: warn
retention-days: 7
- name: Upload Desktop artifacts
uses: actions/upload-artifact@v4
with:
name: session-desktop-artifact
path: |
${{ github.workspace }}/desktop/_locales
${{ github.workspace }}/desktop/ts/localization/constants.ts
overwrite: true
if-no-files-found: warn
retention-days: 7
- name: Upload iOS artifacts
uses: actions/upload-artifact@v4
with:
name: session-ios-artifact
path: |
ios/Session/Meta/Localizable.xcstrings
ios/SessionUtilitiesKit/General/Constants.swift
overwrite: true
if-no-files-found: warn
retention-days: 7