monkey-front-core 0.0.104 → 0.0.105

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.
@@ -2005,11 +2005,7 @@ class MonkeyEcxCommonsService {
2005
2005
  }
2006
2006
  geti18n(translateService, keys) {
2007
2007
  translateService.onDefaultLangChange.subscribe(() => {
2008
- console.log('translateService.instant(keys)');
2009
- console.log(translateService.instant(keys));
2010
- });
2011
- translateService.getStreamOnTranslationChange(keys).subscribe((translations) => {
2012
- this.__i18n = translations;
2008
+ this.__i18n = translateService.instant(keys);
2013
2009
  this.__oni18nDataChanged$.next(null);
2014
2010
  });
2015
2011
  }