I have decided to use ng2-translate library for application internationalization as it seems better that default implementation. But I have faced the following problems.
Here is my code:
app.module.ts:
import { TranslateModule } from 'ng2-translate';
@NgModule({
imports: [
BrowserModule,
HttpModule,
TranslateModule.forRoot(),
appRoutes
],
app.component.ts
@Component({
selector: 'fiv-app',
templateUrl: './app.fivtemplate.html',
providers: [TranslateService]
})
.....
constructor(private _translateService: TranslateService) {
this.langs= ['fi','en'];
_translateService.addLangs(["en", "fi"]);
_translateService.setDefaultLang('fi');
let browserLang = _translateService.getBrowserLang();
_translateService.use('fi');
}
.....
app.component.html
<fiv-hello></fiv-hello>
<h2>{{ 'HOME.TITLE' | translate }}</h2>
and fivhello.component.ts
<h2>{{ 'HOME.TITLE' | translate }}</h2>
<div [translate]="'HOME.TITLE'"> Test</div>
- I tried to use the latest version, 5.0.0 but I get this error:
Uncaught TypeError: ctorParameters.map is not a function at ReflectionCapabilities.parameters (http://localhost:4200/main.bundle.js:40295:47)
I am using angular-cli , angular 2.0.0 and npm So I switched to 4.2.0 which seems to be working fine with my configuration.
The text from app.component.html is translated. But the one from fivhello component is not localized. It just display HOME.TITLE. When debugging I noticed that the get function from TranslateService is invoked later, after rendering, but I would expect the text to be updated.
After changing the language to use, the dom also is not updated. The component that is used to change language is the following:
@Component({ selector: 'language-option', templateUrl: './languageoption.component.html', styleUrls: ['./languageoption.component.css'], providers: [ TranslateService ] }) export class LanguageoptionComponent implements OnInit { langs : String []; constructor(private _translateService: TranslateService) { this.langs = ['fi', 'en']; } ngOnInit() { } public changeLocale = (locale) => { this._translateService.use(locale); } }
Has anyone met the same problems?
Thanks.
You should add in child module: TranslateModule.forChild({....})