From 6eb29a696200b300c1ea00e0c6592f469010181f Mon Sep 17 00:00:00 2001 From: Michael Achmann Date: Sat, 19 Nov 2016 01:24:23 +0100 Subject: [PATCH] Added German Translation --- customize.dist/messages.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/customize.dist/messages.js b/customize.dist/messages.js index fdd11d3d6..0740d53a9 100644 --- a/customize.dist/messages.js +++ b/customize.dist/messages.js @@ -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';