7b0e1d331b
- Add nolocales.js and let the __ function handle case where there aren't any locales specified. Also: In require config, change localstorage to backbone.localStorage (for better integration with bungle).
10 lines
180 B
JavaScript
10 lines
180 B
JavaScript
/*
|
|
* This file can be used if no locale support is required.
|
|
*/
|
|
|
|
(function (root, factory) {
|
|
define("locales", [], function () {
|
|
root.locales = {};
|
|
});
|
|
})(this);
|