I18n模块中的一个低级错误

在tortoise-engine.js:37735:13
i18n/i18n-bundle模块的_warning.add(locale)中的变量_warnings打错成_warning了


      switch(locale) {
        if (this.supports(locale)) {
          return this._current = BUNDLES[locale];
        } else {
          if (!_warnings.has(locale)) {
            _warning.add(locale);
            console.warn(`Unsupported locale '${locale}', reverting to 'en_us'.`);
          }
          return this._current = EN_US;
        }
      }
2 Likes

Please send it to the correct category (Bugs).

@jeremy.baker This seems like a real bug with a very simple solution.