core
core copied to clipboard
The internationalization (i18n) library for Angular
In my components (lazy loaded routes) When I set the following, it works fine: constructor( public translate:TranslateService ) { this.translate.setDefaultLang( this.langService.lang ); this.translate.use( this.langService.lang ); } I have my own...
There is a typo in the documentation. The ngFor is wrongly placed on the ul tag. ## Current docs {{ 'LANGUAGES.' + language | translate }} ## Should be {{...
Is there an example application that implement routes with this library? Because there are some things to be consider like redirecting to lang. update the URL when the lang is...
## Current behavior The published package contains the entry `"license": "SEE LICENSE IN LICENSE"` its `package.json`, however the `LICENSE` file itself is not included. ## Expected behavior The `LICENSE` file...
We are using ngx-translate with **Angular V.13** and everything seems to be working well, the translations come through, but we sometimes are faced with the following error message: `"Http failure...
# Ngx translate isloation issue issue ## Links to issue *[Youtube](https://www.youtube.com/watch?v=pxVXf4IjrJ0) *[Github]() ## Expected Behavior * if I use TranslateModule.forChild what should happen in the production application, only the buttons...
I have converted my application to angular 16 from angular 15, getting error when given command npm start related to import { ProgressHttpModule } from 'angular-progress-http'; package. I do not...
On the constructor if is extended it will force load the default and the current language. Possible fix for #1266
In cases where the key and translated value are the same or translated value isn't available the node.lastKey is never set. This causes issue #1416 where the value for the...
## Current behavior When calling `TranslateService.instant("")`, the error `Error: Parameter "key" required` is thrown. ## Expected behavior An empty string should be returned, like when using `"" | translate`. ##...