Procházet zdrojové kódy

Update translator.js

when translate word, trim the word first, in case the word doesn't match the key of wordsMap.
bubble
bnupaladin před 9 roky
rodič
revize
c0ea250ddd
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      lang/translator.js

+ 1
- 1
lang/translator.js Zobrazit soubor

@@ -29,7 +29,7 @@ window.SwaggerTranslator = {
},

_tryTranslate: function(word) {
return this._words[word] !== undefined ? this._words[word] : word;
return this._words[$.trim(word)] !== undefined ? this._words[$.trim(word)] : word;
},

learn: function(wordsMap) {


Načítá se…
Zrušit
Uložit