import { Inject, Injectable, LOCALE_ID, Optional } from "@angular/core"; @Injectable() export class I18nService { constructor(@Optional() @Inject(LOCALE_ID) public localeId: string) { } public get title(): string { let result = '特性编辑器'; switch (this.localeId) { case 'en': result = 'Feature Editor'; break; case 'zh-CHT': result = '特性編輯器'; break; default: break; } return result; } }