From 3880d60101f66cf1fdf570145b737ff6a6f4b8a5 Mon Sep 17 00:00:00 2001 From: Daniel James Smith Date: Fri, 17 Dec 2021 21:11:02 +0100 Subject: [PATCH] Fix missing translation for unlinking SSO dialog (#1350) --- src/app/settings/organizations.component.ts | 2 +- src/locales/en/messages.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/settings/organizations.component.ts b/src/app/settings/organizations.component.ts index c22fc130686..483e93bd895 100644 --- a/src/app/settings/organizations.component.ts +++ b/src/app/settings/organizations.component.ts @@ -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"), diff --git a/src/locales/en/messages.json b/src/locales/en/messages.json index 74d61382589..fe9b64a6535 100644 --- a/src/locales/en/messages.json +++ b/src/locales/en/messages.json @@ -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" },