1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 19:23:52 +00:00

i18n2service

This commit is contained in:
Kyle Spearrin
2018-01-26 22:38:54 -05:00
parent 5a662cacb4
commit f382f125be
2 changed files with 37 additions and 3 deletions

View File

@@ -0,0 +1,29 @@
import { I18nService as I18nServiceAbstraction } from 'jslib/abstractions/i18n.service';
export default class I18n2Service implements I18nServiceAbstraction {
locale: string;
translationLocale: string;
collator: Intl.Collator;
inited: boolean;
constructor(private systemLanguage: string, private i18nService: any) {
}
async init(locale?: string) {
if (this.inited) {
throw new Error('i18n already initialized.');
}
this.inited = true;
this.locale = this.translationLocale = locale != null ? locale : this.systemLanguage;
this.collator = new Intl.Collator(this.locale);
}
t(id: string): string {
return this.translate(id);
}
translate(id: string): string {
return this.i18nService[id];
}
}