mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-21 16:18:28 +01:00
Change cancel button to close and add period to end (#9047)
This commit is contained in:
parent
77d854b5c1
commit
4877f08ef7
@ -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",
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user