1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

lowercase header for add/edit v2 (#10770)

This commit is contained in:
Nick Krantz
2024-09-03 10:24:14 -05:00
committed by GitHub
parent 5f5e4498e8
commit 87a1742a43

View File

@@ -312,13 +312,13 @@ export class AddEditV2Component implements OnInit {
switch (type) { switch (type) {
case CipherType.Login: case CipherType.Login:
return this.i18nService.t(partOne, this.i18nService.t("typeLogin")); return this.i18nService.t(partOne, this.i18nService.t("typeLogin").toLocaleLowerCase());
case CipherType.Card: case CipherType.Card:
return this.i18nService.t(partOne, this.i18nService.t("typeCard")); return this.i18nService.t(partOne, this.i18nService.t("typeCard").toLocaleLowerCase());
case CipherType.Identity: case CipherType.Identity:
return this.i18nService.t(partOne, this.i18nService.t("typeIdentity")); return this.i18nService.t(partOne, this.i18nService.t("typeIdentity").toLocaleLowerCase());
case CipherType.SecureNote: case CipherType.SecureNote:
return this.i18nService.t(partOne, this.i18nService.t("note")); return this.i18nService.t(partOne, this.i18nService.t("note").toLocaleLowerCase());
} }
} }
} }