123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- /*
- 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);
|