Improve the localization system

Improve and enable the French translation
This commit is contained in:
yflory
2016-09-14 18:08:52 +02:00
parent 217e664d4c
commit f086492e50
10 changed files with 309 additions and 147 deletions

View File

@@ -2,8 +2,9 @@
globals define
*/
define([
'/customize/languageSelector.js',
'/bower_components/jquery/dist/jquery.min.js'
], function () {
], function (LS) {
var $ = window.jQuery;
var main = function () {
$.ajax({
@@ -15,6 +16,7 @@ define([
rel: 'stylesheet',
href: '/customize/main.css'
}));
LS.main();
}
});
};