pl option in menu

This commit is contained in:
Grzegorz
2016-10-10 17:39:17 +02:00
committed by GitHub
parent 5f75c9d32b
commit 7d99d59790

View File

@@ -5,6 +5,7 @@ import * as ES from './es';
import * as FR from './fr';
import * as IT from './it';
import * as RU from './ru';
import * as PL from './pl';
import d3 from 'd3';
let fallbackTerms = EN.terms;
@@ -23,6 +24,7 @@ export function getLanguage(langCode) {
case 'fr': lang = FR; break;
case 'it': lang = IT; break;
case 'ru': lang = RU; break;
case 'pl': lang = PL; break;
default:
lang = EN;
}
@@ -78,5 +80,6 @@ export const Languages = {
it: 'Italiano',
es: 'Español',
fr: 'Français',
ru: 'ру́сский'
ru: 'ру́сский',
pl: 'polski'
};