This commit is contained in:
yuri
2015-01-14 09:41:18 +02:00
parent b4ab83d2d8
commit 396e2c176c
+1 -1
View File
@@ -139,7 +139,7 @@ Lang.prototype.run = function () {
}
var escapedKey = this.escape(key);
contents = contents.replace(new RegExp('(' + escapedKey + ')', 'g'), '' + translationHash[key].replace(/\\"/g, '"') + '');
contents = contents.replace(new RegExp('(' + escapedKey.replace(/\\"/g, '"') + ')', 'g'), '' + translationHash[key].replace(/\\"/g, '"') + '');
}
}