monkey-front-core 0.0.443 → 0.0.444

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.
@@ -3332,8 +3332,11 @@ class MonkeyEcxi18nConfigService extends MonkeyEcxCommonsService {
3332
3332
  try {
3333
3333
  const pathName = ['alerts', 'auth', 'register', 'shared'];
3334
3334
  const services = pathName?.map((name) => {
3335
+ const url = MonkeyEcxUtils.replaceVariables(environment.urli18nAssets, {
3336
+ name, lang
3337
+ });
3335
3338
  return monkeyecxService
3336
- ?.get(`${environment.urlAssets}/data/i18n/${name}/${lang}.json`)
3339
+ ?.get(url)
3337
3340
  .pipe(take(1))
3338
3341
  .toPromise();
3339
3342
  });