Make customized translations more maintainable

This commit is contained in:
yflory
2018-10-15 18:38:41 +02:00
parent 7d0d8352bf
commit 9f0398826d
23 changed files with 7076 additions and 6765 deletions

View File

@@ -262,7 +262,7 @@ define([], function () {
}
for (var k in b) {
if (Util.isObject(b[k])) {
a[k] = {};
a[k] = Util.isObject(a[k]) ? a[k] : {};
Util.extend(a[k], b[k]);
continue;
}