core icon indicating copy to clipboard operation
core copied to clipboard

The internationalization (i18n) library for Angular

Results 184 core issues
Sort by recently updated
recently updated
newest added

When I use the setTranslation method in my project, I get the following error: ERROR Error: Uncaught (in promise): TypeError: can't define array index property past the end of an...

Suddenly, the translation system doesn't work for new words, old words translate good, but not new ones ??? What can be problem ?? I never face with such error so...

Is there a way to change path to translation files? I have them in different directory than `assets/i18n` and would like not to have to move them. Thanks.

## Current behavior Currently, a translation can only directly output a placeholder expression without further manipulation. ## Expected behavior It would be nice to be able to use expressions like...

## Current behavior - Alternate i18n files are not loaded when using lazy-loaded modules if "isolate" param is false. So the module can access the main file translations but not...

Hi! This line: https://github.com/ngx-translate/core/blob/5d04bd849876030b4117bf912a30c1a02a62df19/projects/ngx-translate/core/src/lib/translate.service.ts#L265 should be: ``` this.translations[lang] = this.extend && this.translations[lang] ? { ...this.translations[lang], ...res } : res; ```

## Current behavior We recently upgraded from version 11.0.0 to 14.0.0. It now seems that using content as key causes the key to be displayed instead of the value whenever...

## Current behavior Current get/instant methods do not allow to load string in a specific language: ```typescript instant(key: string|Array, interpolateParams?: Object): string|Object ``` ## Expected behavior I would love to...

I have a design on my Angular app where I have to show two radio button values on a label as comma-separated. But when I use the translate pipe for...

Hi folks, First of all let me thank you for the awesome work you've accomplished here! It's really been a pleasure to use. Lately I updated an angular 9 project...