1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 17:53:39 +00:00

added i18n sorting to folders, ciphers, collection

This commit is contained in:
Kyle Spearrin
2018-01-26 22:16:35 -05:00
parent 78dcbac7fa
commit ce4f683b96
4 changed files with 38 additions and 3 deletions

View File

@@ -1,4 +1,7 @@
export abstract class I18nService {
locale: string;
translationLocale: string;
collator: Intl.Collator;
t: (id: string) => string;
translate: (id: string) => string;
}