diff options
| -rw-r--r-- | locale.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -64,7 +64,7 @@ Localizer.prototype.translate = function (string) { return Object.prototype.hasOwnProperty.call( this.dict[this.language], string - ) ? this.dict[this.language][string] || string; + ) ? this.dict[this.language][string] : string; }; Localizer.prototype.languages = function () { |
