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

Hello, I have a specific need and I don't find a solution with no downside. Maybe I just missed something but I can't find what. My need: get a translation...

## Current behavior Translations returned as functions when I try to load them async. this.translate.get('shared').subscribe(translations => { console.log(translations.key) // Function(d) { return 'Value' } }); So I need to execute...

I realize this is a common issue and have been scouring this repo's support tickets and Stackoverflow looking for why I can't get this working. None of the many suggestions...

I wasn't able to find this is the docs or on the internet. Is there a way to have the translation fallback to the standard language if it can't find...

Type: feature request

Hi! The docs said that any questions should be addressed here, so I have a question please: In the usage guide it says the translations done with the service should...

## Current behavior In `app.component.ts` I have set up the `TranslateService` as follows: ``` translate.addLangs(['en', 'bn']); translate.use('en'); translate.onLangChange.subscribe((change) => { console.log('langChange', change); }) ``` In another module, I'm doing this...

## Current behavior Hello I am also using ngx-translate in a project of ours. We use HTTP Loader for getting all the res strings from our DB. I have a...

**I'm submitting a ...** (check one with "x") ``` [x] bug report => check the FAQ and search github for a similar issue or PR before submitting [ ] support...

Type: bug

Hi, I'm trying to know if its possible to reload a certain translation which holds a parameter when the param value changes. json ``` { "HELLO": "hello {{value}}" } ```...

## Current behavior I am trying to use ngx-translate inside an Angular 5 lib. I have read from docs that _"The forRoot static method is a convention that provides and...