2009-03-10 23:08:52 +01:00
|
|
|
if(typeof(ss) == 'undefined') ss = {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stub implementation for ss.i18n code.
|
2012-10-05 06:00:39 +02:00
|
|
|
* Use instead of framework/javascript/i18n.js
|
2009-03-10 23:08:52 +01:00
|
|
|
* if you want to use any SilverStripe javascript
|
|
|
|
* without internationalization support.
|
|
|
|
*/
|
|
|
|
ss.i18n = {
|
|
|
|
currentLocale: 'en_US',
|
|
|
|
|
|
|
|
defaultLocale: 'en_US',
|
2016-01-06 00:34:58 +01:00
|
|
|
|
2009-03-10 23:08:52 +01:00
|
|
|
_t: function (entity, fallbackString, priority, context) {
|
|
|
|
return fallbackString;
|
|
|
|
},
|
|
|
|
|
|
|
|
sprintf: function(S) {
|
|
|
|
if (arguments.length == 1) return S;
|
|
|
|
|
2014-06-01 15:15:52 +02:00
|
|
|
var args = [],
|
|
|
|
len = arguments.length,
|
|
|
|
index = 0,
|
|
|
|
regx = new RegExp('(.?)(%s)', 'g'),
|
|
|
|
result;
|
|
|
|
|
|
|
|
for (var i=1; i<len; ++i) {
|
2009-03-10 23:08:52 +01:00
|
|
|
args.push(arguments[i]);
|
|
|
|
};
|
|
|
|
|
2014-06-01 15:15:52 +02:00
|
|
|
result = S.replace(regx, function(match, subMatch1, subMatch2, offset, string){
|
|
|
|
if (subMatch1 == '%') return match; // skip %%s
|
|
|
|
return subMatch1 + args[index++];
|
|
|
|
});
|
|
|
|
|
|
|
|
return result;
|
|
|
|
},
|
|
|
|
|
|
|
|
inject: function(S, map) {
|
|
|
|
var regx = new RegExp("\{([A-Za-z0-9_]*)\}", "g"),
|
|
|
|
result;
|
|
|
|
|
|
|
|
result = S.replace(regx, function(match, key, offset, string){
|
|
|
|
return (map[key]) ? map[key] : match;
|
|
|
|
});
|
|
|
|
|
|
|
|
return result;
|
2009-03-10 23:08:52 +01:00
|
|
|
},
|
2016-01-06 00:34:58 +01:00
|
|
|
|
2009-03-10 23:08:52 +01:00
|
|
|
// stub methods
|
|
|
|
addDictionary: function() {},
|
|
|
|
getDictionary: function() {}
|
2016-01-06 00:34:58 +01:00
|
|
|
};
|