-
Notifications
You must be signed in to change notification settings - Fork 6
/
locale.js
65 lines (55 loc) · 1.47 KB
/
locale.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
var locale = [];
/**
* Similar to the concept of gettext, this function returns the
* localized string for the parsed string. The function supports
* wrapping.
*
* @param {string} args The string we want localized
* @return {string} Returns the localized string
*
*/
function _U() {
var args = arguments;
var string = args[0];
// Was a string specified?
if (!string) {
console.log('locale.js: no string was parsed');
return 'locale.js: no string was parsed';
}
// Has the locale file been set?
if (locale.length == 0) {
console.log('locale.js: no locale has been set');
return 'locale.js: no locale has been set';
}
// Does the translation exist?
if (!locale[string]) {
console.log('locale.js: translation [{0}] does not exist'.format(string));
return 'locale.js: translation [{0}] does not exist'.format(string);
}
// Do we need to format the string?
if (args.length == 1) {
return capitalize(locale[string]);
} else {
return formatString(args);
}
}
function formatString(args) {
var string = capitalize(locale[args[0]]);
for (var i = 1; i < args.length; i++) {
string = string.replace(/%s/, args[i]);
}
return string;
}
function capitalize(string) {
return string[0].toUpperCase() + string.slice(1);
}
// https://stackoverflow.com/a/35359503
String.prototype.format = function () {
var args = arguments;
return this.replace(/{(\d+)}/g, function (match, number) {
return typeof args[number] != 'undefined'
? args[number]
: match
;
});
};