1
0
mirror of https://github.com/bitwarden/web synced 2025-12-06 00:03:28 +00:00

Fix missing translation for unlinking SSO dialog (#1350)

This commit is contained in:
Daniel James Smith
2021-12-17 21:11:02 +01:00
committed by GitHub
parent f5fdb34f7d
commit 3880d60101
2 changed files with 4 additions and 1 deletions

View File

@@ -77,7 +77,7 @@ export class OrganizationsComponent implements OnInit {
async unlinkSso(org: Organization) {
const confirmed = await this.platformUtilsService.showDialog(
"Are you sure you want to unlink SSO for this organization?",
this.i18nService.t("unlinkSsoConfirmation"),
org.name,
this.i18nService.t("yes"),
this.i18nService.t("no"),

View File

@@ -3444,6 +3444,9 @@
"unlinkSso": {
"message": "Unlink SSO"
},
"unlinkSsoConfirmation": {
"message": "Are you sure you want to unlink SSO for this organization?"
},
"linkSso": {
"message": "Link SSO"
},