forked from dojo/dojo-oldmirror
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathi18n.js
More file actions
205 lines (185 loc) · 7.28 KB
/
i18n.js
File metadata and controls
205 lines (185 loc) · 7.28 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
define(["./_base/kernel", "require", "./has", "./_base/array", "./_base/config", "./_base/lang", "./_base/xhr"],
function(dojo, require, has, array, config, lang, xhr) {
// module:
// dojo/i18n
// summary:
// This module implements the !dojo/i18n plugin and the v1.6- i18n API
// description:
// We choose to include our own plugin to leverage functionality already contained in dojo
// and thereby reduce the size of the plugin compared to various loader implementations. Also, this
// allows foreign AMD loaders to be used without their plugins.
var
thisModule= dojo.i18n=
// the dojo.i18n module
{},
nlsRe=
// regexp for reconstructing the master bundle name from parts of the regexp match
// nlsRe.exec("foo/bar/baz/nls/en-ca/foo") gives:
// ["foo/bar/baz/nls/en-ca/foo", "foo/bar/baz/nls/", "/", "/", "en-ca", "foo"]
// nlsRe.exec("foo/bar/baz/nls/foo") gives:
// ["foo/bar/baz/nls/foo", "foo/bar/baz/nls/", "/", "/", "foo", ""]
// so, if match[5] is blank, it means this is the top bundle definition.
// courtesy of http://requirejs.org
/(^.*(^|\/)nls)(\/|$)([^\/]*)\/?([^\/]*)/,
getAvailableLocales= function(
root,
locale,
bundlePath,
bundleName
){
// return a vector of module ids containing all available locales with respect to the target locale
// For example, assuming:
// * the root bundle indicates specific bundles for "fr" and "fr-ca",
// * bundlePath is "myPackage/nls"
// * bundleName is "myBundle"
// Then a locale argument of "fr-ca" would return
// ["myPackage/nls/myBundle", "myPackage/nls/fr/myBundle", "myPackage/nls/fr-ca/myBundle"]
// Notice that bundles are returned least-specific to most-specific, starting with the root.
//
// If root===false indicates we're working with a pre-AMD i18n bundle that doesn't tell about the available locales;
// therefore, assume everything is available and get 404 errors that indicate a particular localization is not available
//
for(var result= [bundlePath + bundleName], localeParts= locale.split("-"), current= "", i= 0; i<localeParts.length; i++){
current+= (current ? "-" : "") + localeParts[i];
if(!root || root[current]){
result.push(bundlePath + current + "/" + bundleName);
}
}
return result;
},
cache= {},
getL10nName= dojo.getL10nName = function(moduleName, bundleName, locale){
locale = locale ? locale.toLowerCase() : dojo.locale;
moduleName = "dojo/i18n!" + moduleName.replace(/\./g, "/");
bundleName = bundleName.replace(/\./g, "/");
return (/root/i.test(locale)) ?
(moduleName + "/nls/" + bundleName) :
(moduleName + "/nls/" + locale + "/" + bundleName);
},
doLoad = function(require, bundlePathAndName, bundlePath, bundleName, locale, load){
// get the root bundle which instructs which other bundles are required to construct the localized bundle
require([bundlePathAndName], function(root){
var
current= cache[bundlePathAndName + "/"]= lang.clone(root.root),
availableLocales= getAvailableLocales(!root._v1x && root, locale, bundlePath, bundleName);
require(availableLocales, function(){
for (var i= 1; i<availableLocales.length; i++){
cache[availableLocales[i]]= current= lang.mixin(lang.clone(current), arguments[i]);
}
// target may not have been resolve (e.g., maybe only "fr" exists when "fr-ca" was requested)
var target= bundlePathAndName + "/" + locale;
cache[target]= current;
load && load(lang.delegate(current));
});
});
},
normalize = function(id, toAbsMid){
// note: id may be relative
var match= nlsRe.exec(id),
bundlePath= match[1];
return /^\./.test(bundlePath) ? toAbsMid(bundlePath) + "/" + id.substring(bundlePath.length) : id;
},
load = function(id, require, load){
// note: id is always absolute
var
match= nlsRe.exec(id),
bundlePath= match[1] + "/",
bundleName= match[5] || match[4],
bundlePathAndName= bundlePath + bundleName,
localeSpecified = (match[5] && match[4]),
targetLocale= localeSpecified || dojo.locale,
target= bundlePathAndName + "/" + targetLocale;
if(localeSpecified){
if(cache[target]){
// a request for a specific local that has already been loaded; just return it
load(cache[target]);
}else{
// a request for a specific local that has not been loaded; load and return just that locale
doLoad(require, bundlePathAndName, bundlePath, bundleName, targetLocale, load);
}
return;
}// else a non-locale-specific request; therefore always load dojo.locale + config.extraLocale
// notice the subtle algorithm that loads targetLocal last, which is the only doLoad application that passes a value for the load callback
// this makes the sync loader follow a clean code path that loads extras first and then proceeds with tracing the current deps graph
var extra = config.extraLocale || [];
extra = lang.isArray(extra) ? extra : [extra];
extra.push(targetLocale);
var remaining = extra.length,
targetBundle;
array.forEach(extra, function(locale){
doLoad(require, bundlePathAndName, bundlePath, bundleName, locale, function(bundle){
if(locale == targetLocale){
targetBundle = bundle;
}
if(!--remaining){
load(targetBundle);
}
});
});
};
has.add("dojo-v1x-i18n-Api",
// if true, define the v1.x i18n functions
1
);
if(has("dojo-v1x-i18n-Api")){
var
evalBundle=
// keep the minifiers off our define!
// if bundle is an AMD bundle, then __amdResult will be defined; otherwise it's a pre-amd bundle and the bundle value is returned by eval
new Function("bundle", "var __preAmdResult, __amdResult; function define(bundle){__amdResult= bundle;} __preAmdResult= eval(bundle); return [__preAmdResult, __amdResult];"),
fixup= function(url, preAmdResult, amdResult){
// nls/<locale>/<bundle-name> indicates not the root.
return preAmdResult ? (/nls\/[^\/]+\/[^\/]+$/.test(url) ? preAmdResult : {root:preAmdResult, _v1x:1}) : amdResult;
},
syncRequire= function(deps, callback){
var results= [];
array.forEach(deps, function(mid){
var url= require.toUrl(mid + ".js");
if(cache[url]){
results.push(cache[url]);
}else{
try {
var bundle= require(mid);
if(bundle){
results.push(bundle);
return;
}
}catch(e){}
xhr.get({
url:url,
sync:true,
load:function(text){
var result = evalBundle(text);
results.push(cache[url]= fixup(url, result[0], result[1]));
},
error:function(){
results.push(cache[url]= {});
}
});
}
});
callback.apply(null, results);
};
thisModule.getLocalization= function(moduleName, bundleName, locale){
var result,
l10nName= getL10nName(moduleName, bundleName, locale).substring(10);
load(l10nName, (has("dojo-sync-loader") && !require.isXdUrl(require.toUrl(l10nName + ".js")) ? syncRequire : require), function(result_){ result= result_; });
return result;
};
thisModule.normalizeLocale= function(locale){
var result = locale ? locale.toLowerCase() : dojo.locale;
if(result == "root"){
result = "ROOT";
}
return result;
};
}
return lang.mixin(thisModule, {
dynamic:true,
normalize:normalize,
load:load,
cache:function(mid, value){
cache[mid] = value;
}
});
});