summaryrefslogtreecommitdiff
path: root/web-ui/app/js/views
diff options
context:
space:
mode:
authorBruno Tavares <bruno.exz@gmail.com>2015-04-08 21:30:53 -0300
committerBruno Tavares <bruno.exz@gmail.com>2015-04-08 21:40:49 -0300
commited8fd002c53800b966fc1ef6115c2ff53fa042b1 (patch)
treed503a13239afeac79b47526d7178f0dacc911083 /web-ui/app/js/views
parent497488499fcf870df762919e42862ca6b52a0028 (diff)
Removes argument fixing of the i18n library #66
To introduce variables on the internationalization functions we should be able to pass extra arguments to the `i18n.t`. The way it was we could only pass the key and no more options to interpolate values.
Diffstat (limited to 'web-ui/app/js/views')
-rw-r--r--web-ui/app/js/views/i18n.js8
1 files changed, 2 insertions, 6 deletions
diff --git a/web-ui/app/js/views/i18n.js b/web-ui/app/js/views/i18n.js
index b09490f5..568e7635 100644
--- a/web-ui/app/js/views/i18n.js
+++ b/web-ui/app/js/views/i18n.js
@@ -17,15 +17,11 @@
define(['i18next'], function(i18n) {
'use strict';
- var self = function(str) {
- return i18n.t(str);
- };
-
- self.get = self;
+ var self = i18n.t;
self.init = function(path) {
i18n.init({detectLngQS: 'lang', fallbackLng: 'en', lowerCaseLng: true, getAsync: false, resGetPath: path + 'locales/__lng__/__ns__.json'});
- Handlebars.registerHelper('t', self.get.bind(self));
+ Handlebars.registerHelper('t', self.bind(self));
};
return self;