blob: b7a612cd1a2dc986cfa3133c7b8559b1cb66d58c [file] [log] [blame]
/*
Copyright (C) 2011 by James A. Rosen; Zendesk, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
(function(window) {
var I18n, assert, findTemplate, get, set, isBinding, lookupKey, pluralForm;
get = Ember.Handlebars.get || Ember.Handlebars.getPath || Ember.getPath;
set = Ember.set;
function warn(msg) { Ember.Logger.warn(msg); }
if (typeof CLDR !== "undefined" && CLDR !== null) pluralForm = CLDR.pluralForm;
if (pluralForm == null) {
warn("CLDR.pluralForm not found. Em.I18n will not support count-based inflection.");
}
lookupKey = function(key, hash) {
var firstKey, idx, remainingKeys;
if (hash[key] != null) { return hash[key]; }
if ((idx = key.indexOf('.')) !== -1) {
firstKey = key.substr(0, idx);
remainingKeys = key.substr(idx + 1);
hash = hash[firstKey];
if (hash) { return lookupKey(remainingKeys, hash); }
}
};
assert = Ember.assert != null ? Ember.assert : window.ember_assert;
findTemplate = function(key, setOnMissing) {
assert("You must provide a translation key string, not %@".fmt(key), typeof key === 'string');
var result = lookupKey(key, I18n.translations);
if (setOnMissing) {
if (result == null) {
result = I18n.translations[key] = I18n.compile("Missing translation: " + key);
warn("Missing translation: " + key);
}
}
if ((result != null) && !jQuery.isFunction(result)) {
result = I18n.translations[key] = I18n.compile(result);
}
return result;
};
function eachTranslatedAttribute(object, fn) {
var isTranslatedAttribute = /(.+)Translation$/,
isTranslatedAttributeMatch;
for (var key in object) {
isTranslatedAttributeMatch = key.match(isTranslatedAttribute);
if (isTranslatedAttributeMatch) {
fn.call(object, isTranslatedAttributeMatch[1], I18n.t(object[key]));
}
}
}
I18n = {
compile: Handlebars.compile,
translations: {},
template: function(key, count) {
var interpolatedKey, result, suffix;
if ((count != null) && (pluralForm != null)) {
suffix = pluralForm(count);
interpolatedKey = "%@.%@".fmt(key, suffix);
result = findTemplate(interpolatedKey, false);
}
return result != null ? result : result = findTemplate(key, true);
},
t: function(key, context) {
var template;
if (context == null) context = {};
template = I18n.template(key, context.count);
return template(context);
},
TranslateableProperties: Em.Mixin.create({
init: function() {
var result = this._super.apply(this, arguments);
eachTranslatedAttribute(this, function(attribute, translation) {
set(this, attribute, translation);
});
return result;
}
}),
TranslateableAttributes: Em.Mixin.create({
didInsertElement: function() {
var result = this._super.apply(this, arguments);
eachTranslatedAttribute(this, function(attribute, translation) {
this.$().attr(attribute, translation);
});
return result;
}
})
};
Ember.I18n = I18n;
isBinding = /(.+)Binding$/;
// CRUFT: in v2, which requires Ember 1.0+, Ember.uuid will always be
// available, so this function can be cleaned up.
var uniqueElementId = (function(){
var id = Ember.uuid || 0;
return function() {
var elementId = 'i18n-' + id++;
return elementId;
};
})();
Handlebars.registerHelper('t', function(key, options) {
var attrs, context, data, elementID, result, tagName, view;
context = this;
attrs = options.hash;
data = options.data;
view = data.view;
tagName = attrs.tagName || 'span';
delete attrs.tagName;
elementID = uniqueElementId();
Em.keys(attrs).forEach(function(property) {
var bindPath, currentValue, invoker, isBindingMatch, normalized, normalizedPath, observer, propertyName, root, _ref;
isBindingMatch = property.match(isBinding);
if (isBindingMatch) {
propertyName = isBindingMatch[1];
bindPath = attrs[property];
currentValue = get(context, bindPath, options);
attrs[propertyName] = currentValue;
invoker = null;
normalized = Ember.Handlebars.normalizePath(context, bindPath, data);
_ref = [normalized.root, normalized.path], root = _ref[0], normalizedPath = _ref[1];
observer = function() {
var elem, newValue;
if (view.get('state') !== 'inDOM') {
Em.removeObserver(root, normalizedPath, invoker);
return;
}
newValue = get(context, bindPath, options);
elem = view.$("#" + elementID);
attrs[propertyName] = newValue;
return elem.html(I18n.t(key, attrs));
};
invoker = function() {
return Em.run.once(observer);
};
return Em.addObserver(root, normalizedPath, invoker);
}
});
result = '<%@ id="%@">%@</%@>'.fmt(tagName, elementID, I18n.t(key, attrs), tagName);
return new Handlebars.SafeString(result);
});
Handlebars.registerHelper('translateAttr', function(options) {
var attrs, result;
attrs = options.hash;
result = [];
Em.keys(attrs).forEach(function(property) {
var translatedValue;
translatedValue = I18n.t(attrs[property]);
return result.push('%@="%@"'.fmt(property, translatedValue));
});
return new Handlebars.SafeString(result.join(' '));
});
}).call(undefined, this);