Intl.js revision b07c442afe94f55ef7b93a69046dd8291d1bbaac
var _mods = {},
ROOT_LANG = "yuiRootLang",
ACTIVE_LANG = "yuiActiveLang";
/**
* Provides utilities to support the management of localized resources (strings and formatting patterns).
*
* @module intl
*/
/**
* The Intl utility provides a central location for managing sets of localized resources (strings and formatting patterns).
*
* @class Intl
* @uses EventTarget
* @static
*/
/**
* Private method to retrieve the language hash for a given module.
*
* @method _mod
* @private
*
* @param {String} module The name of the module
* @return {Object} The hash of localized resources for the module, keyed by BCP language tag
*/
}
},
/**
* Sets the active language for the given module.
*
* Returns false on failure, which would happen if the language had not been registered through the <a href="#method_add">add()</a> method.
*
* @method setLang
* @private
*
* @param {String} module The module name.
* @param {String} lang The BCP 47 language tag.
* @return boolean true if successful, false if not.
*/
if (exists) {
this.fire("intl:langChange", {module: module, prevVal: currLang, newVal: (lang === ROOT_LANG) ? "" : lang});
}
return exists;
},
/**
* Get the currently active language for the given module.
*
* @method getLang
*
* @param {String} module The module name.
* @return {String} The BCP 47 language tag.
*/
},
/**
* Register a hash of localized resources for the given module and language
*
* @method add
*
* @param {String} module The module name.
* @param {String} lang The BCP 47 language tag.
* @param {Object} strings The hash of localized values, keyed by the string name.
*/
},
/**
* Gets the module's localized resources for the currently active language (as provided by the <a href="#method_getLang">getLang</a> method).
* <p>
* Optionally, the localized resources for alternate langauges which have been added to Intl (see the <a href="#method_add">add</a> method) can
* be retrieved by providing the BCP language tag as the lang parameter.
* </p>
* @method get
*
* @param {String} module The module name.
* @param {String} key Optional. A single resource key. If not provided, returns a copy (shallow clone) of all resources.
* @param {String} lang Optional. The BCP 47 langauge tag.
* @return String | Object A copy of the module's localized resources, or a single value if key is provided.
*/
strs;
},
/**
* Gets the list of languages for which localized resources are available for a given module, based on the module
* meta-data (part of loader). If loader is not on the page, returns an empty array.
*
* @method getAvailableLangs
* @param {String} module The name of the module
* @return {Array} The array of languages available.
*/
getAvailableLangs : function(module) {
var availLangs = [],
lang;
// Y.Env.lang[lang][m.name]
if(allLangs) {
}
}
}
}
return availLangs;
}
});
/**
* Notification event to indicate when the lang for a module has changed. There is no default behavior associated with this event,
* so the on and after moments are equivalent.
*
* @event intl:langChange
* @param {EventFacade} e The event facade
* <p>The event facade contains:</p>
* <dl>
* <dt>module</dt><dd>The name of the module for which the language changed</dd>
* <dt>newVal</dt><dd>The new language tag</dd>
* <dt>prevVal</dt><dd>The current language tag</dd>
* </dl>
*/