@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.
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js +1 -1
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.js.map +1 -1
- package/bundles/eo-sdk-client-projects-eo-sdk-core.umd.min.js.map +1 -1
- package/bundles/eo-sdk-client.umd.js +20 -9
- package/bundles/eo-sdk-client.umd.js.map +1 -1
- package/bundles/eo-sdk-client.umd.min.js +1 -1
- package/bundles/eo-sdk-client.umd.min.js.map +1 -1
- package/eo-sdk-client.metadata.json +1 -1
- package/esm2015/app/eo-client/about-state/about-state.component.js +3 -3
- package/esm2015/app/eo-framework/tab-container/tab-view-nav/tab-view-nav.component.js +1 -1
- package/esm2015/app/eo-framework/upload-overlay/upload-overlay.component.js +4 -4
- package/esm2015/projects/eo-sdk/core/lib/config/translate-json-loader.js +2 -2
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js +1 -1
- package/fesm2015/eo-sdk-client-projects-eo-sdk-core.js.map +1 -1
- package/fesm2015/eo-sdk-client.js +6 -6
- package/fesm2015/eo-sdk-client.js.map +1 -1
- package/package.json +2 -2
- package/projects/eo-sdk/core/package.json +1 -1
|
@@ -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
|
}));
|