mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 18:23:31 +00:00
Move to libs
This commit is contained in:
9
libs/common/src/abstractions/i18n.service.ts
Normal file
9
libs/common/src/abstractions/i18n.service.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export abstract class I18nService {
|
||||
locale: string;
|
||||
supportedTranslationLocales: string[];
|
||||
translationLocale: string;
|
||||
collator: Intl.Collator;
|
||||
localeNames: Map<string, string>;
|
||||
t: (id: string, p1?: string, p2?: string, p3?: string) => string;
|
||||
translate: (id: string, p1?: string, p2?: string, p3?: string) => string;
|
||||
}
|
||||
Reference in New Issue
Block a user