mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-23 00:29:50 +02:00
Update translations
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
iD.js
|
||||
iD.min.js
|
||||
build
|
||||
transifex.auth
|
||||
|
||||
+4635
-1
File diff suppressed because one or more lines are too long
@@ -28,7 +28,7 @@ asyncMap(resources, getResource, function(err, locales) {
|
||||
locale = _.merge(locale, l);
|
||||
});
|
||||
for (var i in locale) {
|
||||
out += 'locale.' + i + ' = ' + JSON.stringify(locale[i]) + ';';
|
||||
out += 'locale.' + i + ' = ' + JSON.stringify(locale[i], null, 4) + ';';
|
||||
}
|
||||
fs.writeFileSync(outfile, out);
|
||||
});
|
||||
|
||||
@@ -29,7 +29,7 @@ iD.presets.Preset = function(id, preset, fields) {
|
||||
};
|
||||
|
||||
preset.t = function(scope, options) {
|
||||
return t('presets.preset.' + id + '.' + scope, options);
|
||||
return t('presets.presets.' + id + '.' + scope, options);
|
||||
};
|
||||
|
||||
preset.name = function() {
|
||||
|
||||
+2
-1
@@ -23,7 +23,8 @@
|
||||
"uglify-js": "~2.2.5",
|
||||
"mocha-phantomjs": "~1.1.1",
|
||||
"glob": "~3.1.21",
|
||||
"js-yaml": "~2.0.3"
|
||||
"js-yaml": "~2.0.3",
|
||||
"request": "~2.16.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": "~0.8.20"
|
||||
|
||||
Reference in New Issue
Block a user