Skip to content

Commit af36dae

Browse files
authored
Merge branch 'master' into imaun-fa-ir-locale
2 parents 1c98887 + cf30318 commit af36dae

File tree

12 files changed

+1429
-4479
lines changed

12 files changed

+1429
-4479
lines changed

.github/workflows/coverage.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v2
1616
- run: npm install
17+
- run: npm run install:plugins
1718
- uses: artiomtr/[email protected]
1819
with:
1920
github_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/main.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ jobs:
99

1010
steps:
1111
- uses: actions/checkout@v2
12+
- run: npm install
13+
- run: npm run install:plugins
1214
- uses: preactjs/compressed-size-action@v2
1315
with:
1416
repo-token: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/nodejs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [12.x, 13.x, 14.x]
12+
node-version: [12.x, 14.x, 16.x]
1313

1414
steps:
1515
- uses: actions/checkout@v2
@@ -18,6 +18,7 @@ jobs:
1818
with:
1919
node-version: ${{ matrix.node-version }}
2020
- run: npm install
21+
- run: npm run install:plugins
2122
- run: npm run lint
2223
- run: npm run build
2324
- run: npm test

l10n/ar_SA.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
export default {
2+
search: {
3+
placeholder: 'ابدأ البحث',
4+
},
5+
sort: {
6+
sortAsc: 'الترتيب تصاعدي',
7+
sortDesc: 'الترتيب تنازلي',
8+
},
9+
pagination: {
10+
previous: 'السابق',
11+
next: 'التالي',
12+
navigate: (page, pages) => `الصفحة ${page} من ${pages}`,
13+
page: (page) => `الصفحة ${page}`,
14+
showing: 'المعروض',
15+
of: 'من',
16+
to: 'إلى',
17+
results: 'النتائج',
18+
},
19+
loading: 'جاري التحميل...',
20+
noRecordsFound: 'لم نجد ما تبحث عنه',
21+
error: 'حصل خطأ ما أثناء جلب البيانات',
22+
};

l10n/de_DE.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
export default {
2+
search: {
3+
placeholder: 'Geben Sie ein Schlüsselwort ein...',
4+
},
5+
sort: {
6+
sortAsc: 'Spalte aufsteigend sortieren',
7+
sortDesc: 'Spalte absteigend sortieren',
8+
},
9+
pagination: {
10+
previous: 'Bisherige',
11+
next: 'Nächste',
12+
navigate: (page, pages) => `Seite ${page} von ${pages}`,
13+
page: (page) => `Seite ${page}`,
14+
showing: 'Anzeigen',
15+
of: 'von',
16+
to: 'zu',
17+
results: 'Ergebnisse',
18+
},
19+
loading: 'Wird geladen...',
20+
noRecordsFound: 'Keine übereinstimmenden Aufzeichnungen gefunden',
21+
error: 'Beim Abrufen der Daten ist ein Fehler aufgetreten',
22+
};

l10n/es_ES.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export default {
22
search: {
3-
placeholder: '🔍 Busqueda...',
3+
placeholder: 'Buscar...',
44
},
55
sort: {
66
sortAsc: 'Ordenar la columna en orden ascendente',
@@ -11,12 +11,12 @@ export default {
1111
next: 'Siguiente',
1212
navigate: (page, pages) => `Página ${page} de ${pages}`,
1313
page: (page) => `Página ${page}`,
14-
showing: 'Mostrando los resultados',
15-
of: 'sobre',
16-
to: 'a',
17-
results: '',
14+
showing: 'Mostrando registros del',
15+
of: 'de un total de',
16+
to: 'al',
17+
results: 'registros',
1818
},
1919
loading: 'Cargando...',
20-
noRecordsFound: 'Nigún resultado encontrado',
20+
noRecordsFound: 'No se encontraron registros',
2121
error: 'Se produjo un error al recuperar datos',
2222
};

l10n/index.ts

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,24 @@ import ruRU from './ru_RU';
88
import idID from './id_ID';
99
import jaJP from './ja_JP';
1010
import cnCN from './cn_CN';
11+
import arSA from './ar_SA';
12+
import deDE from './de_DE';
13+
import ptBR from './pt_BR';
1114
import faIR from './fa_IR';
1215

13-
export { esES, frFR, itIT, ptPT, trTR, koKR, ruRU, idID, jaJP, cnCN, faIR };
16+
export {
17+
esES,
18+
frFR,
19+
itIT,
20+
ptPT,
21+
trTR,
22+
koKR,
23+
ruRU,
24+
idID,
25+
jaJP,
26+
cnCN,
27+
arSA,
28+
deDE,
29+
ptBR,
30+
faIR,
31+
};

l10n/pt_BR.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
export default {
2+
search: {
3+
placeholder: 'Digite uma palavra-chave...',
4+
},
5+
sort: {
6+
sortAsc: 'Coluna em ordem crescente',
7+
sortDesc: 'Coluna em ordem decrescente',
8+
},
9+
pagination: {
10+
previous: 'Anterior',
11+
next: 'Próxima',
12+
navigate: (page, pages) => `Página ${page} de ${pages}`,
13+
page: (page) => `Página ${page}`,
14+
showing: 'Mostrando',
15+
of: 'de',
16+
to: 'até',
17+
results: 'resultados',
18+
},
19+
loading: 'Carregando...',
20+
noRecordsFound: 'Nenhum registro encontrado',
21+
error: 'Ocorreu um erro ao buscar os dados',
22+
};

0 commit comments

Comments
 (0)