Skip to content

Commit f71c4ac

Browse files
authored
Merge branch 'develop' into fix-unread-count
2 parents 93c902f + 06b8910 commit f71c4ac

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+9165
-9075
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: organize translations
2+
3+
on:
4+
push:
5+
paths:
6+
- 'app/i18n/locales/**.json'
7+
8+
jobs:
9+
organize-and-commit:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
with:
14+
fetch-depth: 0
15+
16+
- name: Setup Node.js
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: 18
20+
21+
- name: Run script to organize JSON keys
22+
run: node scripts/organize-translations.js
23+
24+
- name: Get changed files
25+
id: git-check
26+
uses: tj-actions/changed-files@v42
27+
with:
28+
files: |
29+
**.json
30+
31+
- name: List all changed files
32+
if: steps.git-check.outputs.any_changed == 'true'
33+
env:
34+
ALL_CHANGED_FILES: ${{ steps.git-check.outputs.all_changed_files }}
35+
run: |
36+
for file in ${ALL_CHANGED_FILES}; do
37+
echo "$file was changed"
38+
done
39+
40+
- name: Commit and push if changes
41+
if: steps.git-check.outputs.any_changed == 'true'
42+
uses: EndBug/add-and-commit@v9
43+
with:
44+
message: 'action: organized translations'

app/i18n/locales/af.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ }
1+
{}

app/i18n/locales/ar.json

+221-221
Large diffs are not rendered by default.

app/i18n/locales/az.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ }
1+
{}

app/i18n/locales/bas-CM.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ }
1+
{}

app/i18n/locales/be-BY.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ }
1+
{}

app/i18n/locales/bg.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ }
1+
{}

app/i18n/locales/bn-BD.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ }
1+
{}

app/i18n/locales/bn-IN.json

+758-758
Large diffs are not rendered by default.

app/i18n/locales/bs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ }
1+
{}

app/i18n/locales/ca.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ }
1+
{}

app/i18n/locales/cs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ }
1+
{}

app/i18n/locales/cy.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ }
1+
{}

app/i18n/locales/da.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ }
1+
{}

app/i18n/locales/de-AT.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ }
1+
{}

app/i18n/locales/de.json

+463-463
Large diffs are not rendered by default.

app/i18n/locales/el.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ }
1+
{}

app/i18n/locales/en.json

+518-518
Large diffs are not rendered by default.

app/i18n/locales/eo.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ }
1+
{}

0 commit comments

Comments
 (0)