mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-09 22:55:35 +00:00
pl option in menu
This commit is contained in:
@@ -5,6 +5,7 @@ import * as ES from './es';
|
|||||||
import * as FR from './fr';
|
import * as FR from './fr';
|
||||||
import * as IT from './it';
|
import * as IT from './it';
|
||||||
import * as RU from './ru';
|
import * as RU from './ru';
|
||||||
|
import * as PL from './pl';
|
||||||
import d3 from 'd3';
|
import d3 from 'd3';
|
||||||
|
|
||||||
let fallbackTerms = EN.terms;
|
let fallbackTerms = EN.terms;
|
||||||
@@ -23,6 +24,7 @@ export function getLanguage(langCode) {
|
|||||||
case 'fr': lang = FR; break;
|
case 'fr': lang = FR; break;
|
||||||
case 'it': lang = IT; break;
|
case 'it': lang = IT; break;
|
||||||
case 'ru': lang = RU; break;
|
case 'ru': lang = RU; break;
|
||||||
|
case 'pl': lang = PL; break;
|
||||||
default:
|
default:
|
||||||
lang = EN;
|
lang = EN;
|
||||||
}
|
}
|
||||||
@@ -78,5 +80,6 @@ export const Languages = {
|
|||||||
it: 'Italiano',
|
it: 'Italiano',
|
||||||
es: 'Español',
|
es: 'Español',
|
||||||
fr: 'Français',
|
fr: 'Français',
|
||||||
ru: 'ру́сский'
|
ru: 'ру́сский',
|
||||||
|
pl: 'polski'
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user