Skip to content

Commit

Permalink
Merge pull request #96 from lOdwrot/feature/translation-pl
Browse files Browse the repository at this point in the history
added pl translations
  • Loading branch information
benwinding authored Jul 24, 2023
2 parents 1ddfaf3 + 76a7fbd commit 80f6821
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/i18n/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ export { default as ptBR } from './ptBR';
export { default as ru } from './ru';
export { default as zh } from './zh';
export { default as nl } from './nl';
export { default as pl } from './pl';
41 changes: 41 additions & 0 deletions src/i18n/pl.ts
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...",
},
};

0 comments on commit 80f6821

Please sign in to comment.