mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 14:53:33 +00:00
Change cancel button to close and add period to end (#9047)
This commit is contained in:
@@ -7961,8 +7961,8 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"deleteProviderWarningDesc": {
|
"deleteProviderWarningDescription": {
|
||||||
"message": "You must unlink all clients before you can delete $ID$",
|
"message": "You must unlink all clients before you can delete $ID$.",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"id": {
|
"id": {
|
||||||
"content": "$1",
|
"content": "$1",
|
||||||
|
|||||||
@@ -81,8 +81,9 @@ export class AccountComponent {
|
|||||||
if (providerClients.data != null && providerClients.data.length > 0) {
|
if (providerClients.data != null && providerClients.data.length > 0) {
|
||||||
await this.dialogService.openSimpleDialog({
|
await this.dialogService.openSimpleDialog({
|
||||||
title: { key: "deleteProviderName", placeholders: [this.provider.name] },
|
title: { key: "deleteProviderName", placeholders: [this.provider.name] },
|
||||||
content: { key: "deleteProviderWarningDesc", placeholders: [this.provider.name] },
|
content: { key: "deleteProviderWarningDescription", placeholders: [this.provider.name] },
|
||||||
acceptButtonText: { key: "ok" },
|
acceptButtonText: { key: "ok" },
|
||||||
|
cancelButtonText: { key: "close" },
|
||||||
type: "danger",
|
type: "danger",
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user