mirror of https://github.com/xwiki-labs/cryptpad
Added options to choose Polish language
This commit is contained in:
parent
0b459890fd
commit
f6f1bc09bb
|
@ -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';
|
||||
|
|
Loading…
Reference in New Issue