File tree Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Original file line number Diff line number Diff line change @@ -6,3 +6,4 @@ export { default as ptBR } from './ptBR';
66export { default as ru } from './ru' ;
77export { default as zh } from './zh' ;
88export { default as nl } from './nl' ;
9+ export { default as pl } from './pl' ;
Original file line number Diff line number Diff line change 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+ } ;
You can’t perform that action at this time.
0 commit comments