-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #96 from lOdwrot/feature/translation-pl
added pl translations
- Loading branch information
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
export default { | ||
csv: { | ||
buttonMain: { | ||
label: "Importuj", | ||
tooltip: "Dopuszczalne formaty plików to '.csv' i '.tsv'", | ||
emptyResource: | ||
"'resource' nie został ustawiony, czy przekazałeś propa 'resource' do komponentu ImportButton?", | ||
}, | ||
parsing: { | ||
collidingIds: 'Znaleziono kolizje w polach "id"', | ||
failedValidateRow: "CSV nie spełnił wymagań walidacyjnych", | ||
invalidCsv: 'Nieprawidłowy plik "csv"', | ||
}, | ||
dialogCommon: { | ||
subtitle: 'Importowanie %{count} rekordów z %{fileName} do "%{resource}"', | ||
conflictCount: | ||
"Zasób <strong>%{resource}</strong> ma jeszcze <strong>%{conflictingCount}</strong> rekordów z konfliktami pól 'id'", | ||
buttons: { | ||
cancel: "Anuluj", | ||
}, | ||
}, | ||
dialogImport: { | ||
alertClose: "Zaimportowano %{fname}", | ||
title: 'Importuję do "%{resource}"', | ||
buttons: { | ||
replaceAllConflicts: "Zastąp rekordy", | ||
skipAllConflicts: "Pomiń rekordy", | ||
letmeDecide: "Pozwól mi zadecydować dla każdego rekordu", | ||
}, | ||
}, | ||
dialogDecide: { | ||
title: 'Importowanie id %{id} do "%{resource}"', | ||
buttons: { | ||
replaceRow: "Zastąp rekord z id=%{id}", | ||
addAsNewRow: "Dodaj nowy rekord (Nie zastępuj)", | ||
skipDontReplace: "Pomiń ten rekord (Nie zastępuj)", | ||
}, | ||
}, | ||
loading: "Ładowanie...", | ||
}, | ||
}; |