From 74e679a5387a01cdfb73eef49b23433e45f531dd Mon Sep 17 00:00:00 2001 From: Nathan Dinsmore Date: Thu, 18 Apr 2013 07:54:27 -0400 Subject: Fixed #51 --- locale.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale.js b/locale.js index fa71c08..f366f16 100644 --- a/locale.js +++ b/locale.js @@ -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 () { -- cgit v1.3.1