@eo-sdk/client 8.0.0-rc.7 → 8.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -158,7 +158,7 @@
158
158
  var _this = this;
159
159
  return this.http.get("" + folder + lang + ".json").pipe(operators.catchError(function (e) {
160
160
  // ISO codes with more than 2 characters are sub-languages like de-CH.
161
- // If there is no translation file for that sub-language we'll try to load
161
+ // If there is no translation file for that sub-language we'll try to load
162
162
  // the file for the base language (in this case de).
163
163
  return lang.length > 2 ? _this.loadTranslationFile(folder, lang.substring(0, 2)) : rxjs.of({});
164
164
  }));