1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 13:53:34 +00:00

Change cancel button to close and add period to end (#9047)

This commit is contained in:
cyprain-okeke
2024-05-06 00:41:15 +01:00
committed by GitHub
parent 77d854b5c1
commit 4877f08ef7
2 changed files with 4 additions and 3 deletions

View File

@@ -7961,8 +7961,8 @@
}
}
},
"deleteProviderWarningDesc": {
"message": "You must unlink all clients before you can delete $ID$",
"deleteProviderWarningDescription": {
"message": "You must unlink all clients before you can delete $ID$.",
"placeholders": {
"id": {
"content": "$1",

View File

@@ -81,8 +81,9 @@ export class AccountComponent {
if (providerClients.data != null && providerClients.data.length > 0) {
await this.dialogService.openSimpleDialog({
title: { key: "deleteProviderName", placeholders: [this.provider.name] },
content: { key: "deleteProviderWarningDesc", placeholders: [this.provider.name] },
content: { key: "deleteProviderWarningDescription", placeholders: [this.provider.name] },
acceptButtonText: { key: "ok" },
cancelButtonText: { key: "close" },
type: "danger",
});