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:
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user