mirror of
https://github.com/cpvalente/ontime.git
synced 2026-09-02 04:49:05 +00:00
Added Polish Translation (#1077)
This commit is contained in:
@@ -153,6 +153,7 @@ export default function GeneralPanelForm() {
|
|||||||
<option value='pt'>Portuguese</option>
|
<option value='pt'>Portuguese</option>
|
||||||
<option value='es'>Spanish</option>
|
<option value='es'>Spanish</option>
|
||||||
<option value='sv'>Swedish</option>
|
<option value='sv'>Swedish</option>
|
||||||
|
<option value='pl'>Polish</option>
|
||||||
</Select>
|
</Select>
|
||||||
</Panel.ListItem>
|
</Panel.ListItem>
|
||||||
</Panel.ListGroup>
|
</Panel.ListGroup>
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ import { langIt } from './languages/it';
|
|||||||
import { langNo } from './languages/no';
|
import { langNo } from './languages/no';
|
||||||
import { langPt } from './languages/pt';
|
import { langPt } from './languages/pt';
|
||||||
import { langSv } from './languages/sv';
|
import { langSv } from './languages/sv';
|
||||||
|
import { langPl } from './languages/pl';
|
||||||
|
|
||||||
const translationsList = {
|
const translationsList = {
|
||||||
en: langEn,
|
en: langEn,
|
||||||
@@ -20,6 +21,7 @@ const translationsList = {
|
|||||||
no: langNo,
|
no: langNo,
|
||||||
pt: langPt,
|
pt: langPt,
|
||||||
sv: langSv,
|
sv: langSv,
|
||||||
|
pl: langPl,
|
||||||
};
|
};
|
||||||
|
|
||||||
interface TranslationContextValue {
|
interface TranslationContextValue {
|
||||||
|
|||||||
@@ -0,0 +1,21 @@
|
|||||||
|
import { TranslationObject } from './en';
|
||||||
|
|
||||||
|
export const langPl: TranslationObject = {
|
||||||
|
'common.end_time': 'Czas zakończenia',
|
||||||
|
'common.expected_finish': 'Zakładany czas zakończenia',
|
||||||
|
'common.minutes': 'min',
|
||||||
|
'common.now': 'Teraz',
|
||||||
|
'common.next': 'Następnie',
|
||||||
|
'common.public_message': 'Wiadomość publiczna',
|
||||||
|
'common.start_time': 'Czas rozpoczęcia',
|
||||||
|
'common.stage_timer': 'Timer Scena',
|
||||||
|
'common.started_at': 'Rozpoczęte o',
|
||||||
|
'common.time_now': 'Aktualny czas',
|
||||||
|
'countdown.ended': 'Zakończone o',
|
||||||
|
'countdown.running': 'Trwa',
|
||||||
|
'countdown.select_event': 'Wybierz event który chcesz śledzić',
|
||||||
|
'countdown.to_start': 'Do rozpoczęcia',
|
||||||
|
'countdown.waiting': 'Oczekiwanie na start',
|
||||||
|
'countdown.overtime': 'ponad czasem',
|
||||||
|
};
|
||||||
|
|
||||||
Reference in New Issue
Block a user