diff options
author | Duda Dornelles <dudassdornelles@gmail.com> | 2015-01-21 18:12:25 -0200 |
---|---|---|
committer | Pixpoa pairing <pixpoapairing@pixelated-project.org> | 2015-01-21 18:12:25 -0200 |
commit | 8abb94a88e40fde249b562a841a5b0398582717e (patch) | |
tree | c2cc4c7a00e80fb85423cd3a0b7a25c076a710c4 /web-ui/app/js/views | |
parent | 8310db57c7f1829497ebadddff65682392a60a27 (diff) |
#224 App is working without klein - migration to twisted "complete"
Diffstat (limited to 'web-ui/app/js/views')
-rw-r--r-- | web-ui/app/js/views/i18n.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web-ui/app/js/views/i18n.js b/web-ui/app/js/views/i18n.js index b09490f5..19327c27 100644 --- a/web-ui/app/js/views/i18n.js +++ b/web-ui/app/js/views/i18n.js @@ -24,7 +24,7 @@ define(['i18next'], function(i18n) { self.get = self; self.init = function(path) { - i18n.init({detectLngQS: 'lang', fallbackLng: 'en', lowerCaseLng: true, getAsync: false, resGetPath: path + 'locales/__lng__/__ns__.json'}); + i18n.init({detectLngQS: 'lang', fallbackLng: 'en', lowerCaseLng: true, getAsync: false, resGetPath: path + 'assets/locales/__lng__/__ns__.json'}); Handlebars.registerHelper('t', self.get.bind(self)); }; |