1
0
mirror of https://github.com/bitwarden/browser synced 2025-01-11 09:55:18 +01:00

checked -> checkbox (#10212)

This commit is contained in:
Nick Krantz 2024-07-22 15:04:03 -05:00 committed by GitHub
parent 52f6b24020
commit 0e207e851a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -1317,8 +1317,8 @@
"cfTypeBoolean": {
"message": "Boolean"
},
"cfTypeChecked": {
"message": "Checked"
"cfTypeCheckbox": {
"message": "Checkbox"
},
"cfTypeLinked": {
"message": "Linked",

View File

@ -52,7 +52,7 @@ export class AddEditCustomFieldDialogComponent {
fieldTypeOptions = [
{ name: this.i18nService.t("cfTypeText"), value: FieldType.Text },
{ name: this.i18nService.t("cfTypeHidden"), value: FieldType.Hidden },
{ name: this.i18nService.t("cfTypeChecked"), value: FieldType.Boolean },
{ name: this.i18nService.t("cfTypeCheckbox"), value: FieldType.Boolean },
{ name: this.i18nService.t("cfTypeLinked"), value: FieldType.Linked },
];