Added options to choose Polish language

This commit is contained in:
pojebunny 2016-12-06 18:02:43 +01:00 committed by GitHub
parent 0b459890fd
commit f6f1bc09bb
1 changed files with 127 additions and 126 deletions

View File

@ -4,17 +4,18 @@ define(['/customize/languageSelector.js',
'/customize/translations/messages.fr.js',
// 1) additional translation files can be added here...
'/customize/translations/messages.pl.js',
'/bower_components/jquery/dist/jquery.min.js'],
// 2) name your language module here...
function(LS, Default, Spanish, French) {
function(LS, Default, Spanish, French, Polish) {
var $ = window.jQuery;
// 3) add your module to this map so it gets used
var map = {
'fr': French,
'es': Spanish,
'pl': Polish,
};
var defaultLanguage = 'en';