diff options
| author | Jens Mönig <jens@moenig.org> | 2013-04-18 22:43:47 -0700 |
|---|---|---|
| committer | Jens Mönig <jens@moenig.org> | 2013-04-18 22:43:47 -0700 |
| commit | 05c1e8da820a289abb5a19451e65f53adef2694b (patch) | |
| tree | a1d2990e017d78f1a90abc5c3656ff432c82e793 | |
| parent | cfc84accea904bdac9e24ec0b95813e20e8bba3a (diff) | |
| parent | 74e679a5387a01cdfb73eef49b23433e45f531dd (diff) | |
| download | snap-yow-05c1e8da820a289abb5a19451e65f53adef2694b.tar.gz snap-yow-05c1e8da820a289abb5a19451e65f53adef2694b.zip | |
Merge pull request #52 from queryselector/issue-51
Fixed #51
| -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 () { |
