我们在应用程序中使用Angular 6。在该应用程序中,我们希望提供多语言支持。
我们如何在角度6中实现本地化和国际化?它是一个有角度的6版本。
答案 0 :(得分:20)
使用ngx-translate翻译Angular 6应用 我们将做什么:
创建最小的Angular6项目 安装并加载ngx-translate 初始化TranslateService 创建.json翻译文件 翻译简单的标题和简介 集成语言切换器 用变量翻译句子
创建最小的Angular6项目
我们使用@ angular / cli在终端中创建一个名为“ traduction”的新项目:
ng new traduction --prefix tr
cd traduction
ng serve -o
安装并加载ngx-translate
在终端的项目文件夹“ traduction”中使用npm:
npm install @ngx-translate/core --save
npm install @ngx-translate/http-loader
注意: 低于6号角时使用以下版本
"@ngx-translate/core": "^9.1.1"
"@ngx-translate/http-loader": "^3.0.1"
对于角度5,请使用最新版本10及更高版本
将必要的模块导入app.module.ts中:
import { HttpClientModule, HttpClient } from '@angular/common/http';
import { TranslateModule, TranslateLoader } from '@ngx-translate/core';
import { TranslateHttpLoader } from '@ngx-translate/http-loader';
添加一个函数,该函数返回“ TranslateHttpLoader”并导出(AoT需要)。在这种情况下,我们创建的HttpLoaderFactory函数返回一个可以使用Http和.json加载Translations的对象,但是您可以编写自己的Class,例如,使用全局JavaScript变量而不是加载文件,或者使用Google Translate:< / p>
export function HttpLoaderFactory(http: HttpClient) {
return new TranslateHttpLoader(http);
}
OR
export function HttpLoaderFactory(http: HttpClient) {
return new TranslateHttpLoader(http, 'assets/i18n/', '.json');
}
然后我们需要将模块导入@NgModule,这是告诉Angular将此模块加载到您的AppModule中的导入:
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
HttpClientModule,
TranslateModule.forRoot({
loader: {
provide: TranslateLoader,
useFactory: HttpLoaderFactory,
deps: [HttpClient]
}
})
],
providers: [],
bootstrap: [AppComponent]
})
注入TranslateService
在“ app.component.ts”中,我们现在启动“ TranslateService”,我们导入TranslateService:
import { TranslateService } from '@ngx-translate/core';
然后在AppComponent类内部,我们注入服务并定义我们的默认语言。为了准备下一步,我们添加了切换语言的功能。
constructor(private translate: TranslateService) {
translate.setDefaultLang('en');
}
switchLanguage(language: string) {
this.translate.use(language);
}
创建.json翻译文件
我们现在在asset / i18n文件夹中创建翻译文件:
src/assets/i18n/en.json
{
"Title": "Translation example",
"Intro": "Hello I am Arthur, I am 42 years old."
}
src/assets/i18n/fr.json
{
"Title": "Exemple de traduction",
"Intro": "Bonjour je m'appelle Arthur, j'ai 42 ans."
}
这些是简单的.json文件,这些文件将由我们在“ app.module.ts”中创建的“ TranslateHttpLoader”加载。
翻译简单的标题和简介
在app.component.html中,我们在“ h1”标签内添加了带有翻译“指令”的标头。该指令将把标签内的文本替换为匹配的翻译。如果您使用指令,则必须确保标记中除了文本外没有其他内容。
作为第二个示例,我们使用“ TranslationPipe”翻译带有定义为内联字符串的标签。由于有时在要替换的转换中具有价值,因此可以将数据对象传递到“ translate”管道中。
<h1 translate>Title</h1>
<div>
{{ 'Intro' | translate:user }}
</div>
集成语言切换器
我们现在可以将上面在app.component.ts中看到的语言切换器功能附加到按钮上。在这种情况下,我们为每种语言创建一个按钮,然后使用匹配的语言键调用switchLanguage()函数。
<button (click)="switchLanguage('en')">en</button>
<button (click)="switchLanguage('fr')">fr</button>
翻译带有变量的句子
如前所述,有时您会在句子中包含变量。在这个小例子中,我们在“ app.component.ts”中有一个带有年龄和名称的用户对象,我们想要翻译一个包含以下值的句子:
...
export class AppComponent {
user = {
name: 'Arthur',
age: 42
};
...
}
因为我们将此对象传递到“ translate”管道中,所以现在可以在我们的翻译中使用{{placeholder}}表示法使用它的属性。
src/assets/i18n/en.json
{
"Title": "Translation example",
"Intro": "Hello I am {{name}}, I am {{age}} years old."
}
src/assets/i18n/fr.json
{
"Title": "Exemple de traduction",
"Intro": "Bonjour je m'appelle {{name}}, j'ai {{age}} ans."
}
使用嵌套的.json对象
如果您希望对翻译有更多的控制权,例如翻译页面块(从最终用户的角度)或组件(从开发人员的角度),则可以采用以下解决方案:使用git repo中所述的嵌套.json对象。 -json文件中的示例如下所示:
{
"Title": "Translation example",
"Intro": "Hello I am {{name}}, I am {{age}} years old.",
"Startpage": {
"TranslationSections": "Hello World"
},
"Aboutpage": {
"TranslationSections": "We are letsboot"
}
}
{
"Title": "Exemple de traduction",
"Intro": "Bonjour je m'appelle {{name}}, j'ai {{age}} ans.",
"Startpage": {
"TranslationSections": "Bonjour Monde"
},
"Aboutpage": {
"TranslationSections": "Nous sommes letsboot"
}
}
并在相应的模板中:
<h1 translate>Title</h1>
<div>
{{ 'Intro' | translate:user }}
</div>
<div>
{{ 'Startpage.TranslationSections' | translate }}
</div>
<div>
{{ 'Aboutpage.TranslationSections' | translate }}
</div>
<br/>
<button (click)="switchLanguage('en')">en</button>
<button (click)="switchLanguage('fr')">fr</button>
答案 1 :(得分:0)
component.module.ts
export function translateHttpLoaderFactory(http: HttpClient) {
return new TranslateHttpLoader(http);
}
TranslateModule.forRoot({
loader: {
provide: TranslateLoader,
useFactory: translateHttpLoaderFactory,
deps: [HttpClient]
}
})
类LanguagService.ts
import { Injectable } from '@angular/core';
import { TranslateService, LangChangeEvent } from '@ngx-translate/core';
import { ReplaySubject } from 'rxjs';
import { take } from 'rxjs/operators';
@Injectable({ providedIn: 'root' })
export class LanguageService {
language$ = new ReplaySubject<LangChangeEvent>(1);
translate = this.translateService;
// 國旗對照;
constructor(private translateService: TranslateService) {}
setInitState() {
this.translateService.addLangs(['en', 'cn','vi']);
console.log( 'Browser Lang', this.translate.getBrowserLang());
const browserLang = (this.translate.getBrowserLang().includes('vi')) ? 'vi' : 'cn' ;
console.log("anhtt "," anguage = " +browserLang);
this.setLang(browserLang);
}
setLang(lang: string) {
this.translateService.onLangChange.pipe(take(1)).subscribe(result => {
this.language$.next(result);
});
this.translateService.use(lang);
}
}
app.component.html
<h1>How to multi language in angular 7</h1>
<p >{{'content' |translate}}</p>
<h4 translate>
{{'message' |translate}}
</h4>
<button (click)="selectLanguageEN()">English</button>
<button (click)="selectLanguageCN()">中國</button>
<button (click)="selectLanguageVI()">Viet Nam</button>
代码演示:
https://tienanhvn.blogspot.com/2019/06/angular-7-how-to-multi-language.html