Skip to content

Commit 76a7fbd

Browse files
committed
added pl translations
1 parent 1ddfaf3 commit 76a7fbd

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

src/i18n/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ export { default as ptBR } from './ptBR';
66
export { default as ru } from './ru';
77
export { default as zh } from './zh';
88
export { default as nl } from './nl';
9+
export { default as pl } from './pl';

src/i18n/pl.ts

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
export default {
2+
csv: {
3+
buttonMain: {
4+
label: "Importuj",
5+
tooltip: "Dopuszczalne formaty plików to '.csv' i '.tsv'",
6+
emptyResource:
7+
"'resource' nie został ustawiony, czy przekazałeś propa 'resource' do komponentu ImportButton?",
8+
},
9+
parsing: {
10+
collidingIds: 'Znaleziono kolizje w polach "id"',
11+
failedValidateRow: "CSV nie spełnił wymagań walidacyjnych",
12+
invalidCsv: 'Nieprawidłowy plik "csv"',
13+
},
14+
dialogCommon: {
15+
subtitle: 'Importowanie %{count} rekordów z %{fileName} do "%{resource}"',
16+
conflictCount:
17+
"Zasób <strong>%{resource}</strong> ma jeszcze <strong>%{conflictingCount}</strong> rekordów z konfliktami pól 'id'",
18+
buttons: {
19+
cancel: "Anuluj",
20+
},
21+
},
22+
dialogImport: {
23+
alertClose: "Zaimportowano %{fname}",
24+
title: 'Importuję do "%{resource}"',
25+
buttons: {
26+
replaceAllConflicts: "Zastąp rekordy",
27+
skipAllConflicts: "Pomiń rekordy",
28+
letmeDecide: "Pozwól mi zadecydować dla każdego rekordu",
29+
},
30+
},
31+
dialogDecide: {
32+
title: 'Importowanie id %{id} do "%{resource}"',
33+
buttons: {
34+
replaceRow: "Zastąp rekord z id=%{id}",
35+
addAsNewRow: "Dodaj nowy rekord (Nie zastępuj)",
36+
skipDontReplace: "Pomiń ten rekord (Nie zastępuj)",
37+
},
38+
},
39+
loading: "Ładowanie...",
40+
},
41+
};

0 commit comments

Comments
 (0)