Skip to content

Commit fb67722

Browse files
authored
Merge branch 'master' into add_ptbr_locale
2 parents c06eefe + 01a370f commit fb67722

File tree

11 files changed

+1405
-4479
lines changed

11 files changed

+1405
-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: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,22 @@ 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';
1113
import ptBR from './pt_BR';
1214

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

0 commit comments

Comments
 (0)