@elite.framework/ng.core 2.0.41 → 2.0.42

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.
@@ -1049,7 +1049,7 @@ class LocalizationService {
1049
1049
  // return defaultValue || (key as string);
1050
1050
  // }
1051
1051
  if (!state.localization)
1052
- return defaultValue || keys[1];
1052
+ return this.in18Translate.instant(keys[0]) || defaultValue || keys[1];
1053
1053
  const sourceName = keys.length > 1 ? keys[0] || state.localization.defaultResourceName : state.localization.defaultResourceName;
1054
1054
  const sourceKey = keys.length > 1 ? keys[1] : keys[0];
1055
1055
  if (sourceName === '_') {