Added German Translation

pull/1/head
Michael Achmann 2016-11-19 01:24:23 +01:00
parent 5fecfb99a5
commit 6eb29a6962
1 changed files with 3 additions and 1 deletions

View File

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