0
我正在使用ng2-translate
節點包在Angular SPA應用程序中實現翻譯。如何使用TranslationService.setTranslation方法手動定義翻譯
繼https://www.npmjs.com/package/ng2-translate發現該指令(見第3號定義的翻譯),我在組件的一個定義翻譯如下:
import { Component, } from '@angular/core';
import { TranslateService } from 'ng2-translate';
@Component({
selector: 'home',
templateUrl: './home.component.html'
})
export class HomeComponent {
constructor(private translate: TranslateService) {
this.translate.setTranslation('en', {
"HELLO": "Hello World from TranslateServiceLand"
}, true);
this.translate.setTranslation('fr', {
"HELLO": "Bonjour tout le moonde d'TranslateServiceLand"
}, true);
}
}
但是,這是行不通的。有人能給我一個例子嗎?