From 405d6c7f1e4fd04de311e2963dd6968927a67f42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Mur=C3=A9?= Date: Sun, 29 Jun 2014 11:26:15 +0200 Subject: [PATCH] i18n: big refactor Each translatable string have to be marked with the css class "i18n" Add a new ?i18nextract URL parameter that extract all string that can be translated/corrected Separate each translation in a file, add a grunt task to recombine them --- Gruntfile.js | 17 +- index.html | 940 ++++------------------------------------ l10n/cs.js | 134 ++++++ l10n/de.js | 131 ++++++ l10n/el.js | 121 ++++++ l10n/en.js | 18 + l10n/es.js | 117 +++++ l10n/fr.js | 116 +++++ l10n/it.js | 130 ++++++ src/index.html | 5 - src/ninja.onload.js | 39 ++ src/ninja.translator.js | 880 +------------------------------------ 12 files changed, 917 insertions(+), 1731 deletions(-) create mode 100644 l10n/cs.js create mode 100644 l10n/de.js create mode 100644 l10n/el.js create mode 100644 l10n/en.js create mode 100644 l10n/es.js create mode 100644 l10n/fr.js create mode 100644 l10n/it.js diff --git a/Gruntfile.js b/Gruntfile.js index 5d4f5ec..67da18f 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -2,7 +2,7 @@ module.exports = function (grunt) { // Project configuration. grunt.initConfig({ combine: { - single: { + src: { input: "./src/index.html", output: "./index.html", tokens: [ @@ -42,11 +42,20 @@ module.exports = function (grunt) { { token: "//janin.currency.js", file: "./src/janin.currency.js" }, { token: "//main.css", file: "./src/main.css" } ] - } - } + }, + i18n: { + input: "./index.html", + output: "./index.html", + tokens: [ + { token: "//en.js", file: "./l10n/en.js" }, + //{ token: "//fr.js", file: "./l10n/fr.js" } + ] + } + } + }); grunt.file.defaultEncoding = 'utf-8'; grunt.loadNpmTasks("grunt-combine"); - grunt.registerTask("default", ["combine:single"]); + grunt.registerTask("default", ["combine:src", "combine:i18n"]); }; \ No newline at end of file diff --git a/index.html b/index.html index 56705a2..45bad4c 100644 --- a/index.html +++ b/index.html @@ -9653,12 +9653,7 @@ h1 { margin: 0px; height: 91px; }