diff --git a/apps/client/public/locales/en-US/translation.json b/apps/client/public/locales/en-US/translation.json
index 08f83bb8..c61b7d9b 100644
--- a/apps/client/public/locales/en-US/translation.json
+++ b/apps/client/public/locales/en-US/translation.json
@@ -608,21 +608,16 @@
"Image exceeds 10MB limit.": "Image exceeds 10MB limit.",
"Image removed successfully": "Image removed successfully",
"API key": "API key",
- "API key created successfully": "API key created successfully",
"API keys": "API keys",
"API management": "API management",
- "Are you sure you want to revoke this API key": "Are you sure you want to revoke this API key",
- "Create API Key": "Create API Key",
"Custom expiration date": "Custom expiration date",
"Enter a descriptive token name": "Enter a descriptive token name",
"Expiration": "Expiration",
"Expired": "Expired",
"Expires": "Expires",
- "I've saved my API key": "I've saved my API key",
"Last use": "Last Used",
"No API keys found": "No API keys found",
"No expiration": "No expiration",
- "Revoke API key": "Revoke API key",
"Revoked successfully": "Revoked successfully",
"Select expiration date": "Select expiration date",
"This action cannot be undone. Any applications using this API key will stop working.": "This action cannot be undone. Any applications using this API key will stop working.",
@@ -881,25 +876,25 @@
"Try again": "Try again",
"Untitled chat": "Untitled chat",
"What can I help you with?": "What can I help you with?",
- "Are you sure you want to revoke this SCIM token": "Are you sure you want to revoke this SCIM token",
+ "Are you sure you want to revoke this {{credential}}": "Are you sure you want to revoke this {{credential}}",
"Automatically provision users and groups from your identity provider via SCIM.": "Automatically provision users and groups from your identity provider via SCIM.",
"Configure your identity provider with this URL to provision users and groups.": "Configure your identity provider with this URL to provision users and groups.",
- "Create SCIM token": "Create SCIM token",
+ "Create {{credential}}": "Create {{credential}}",
+ "{{credential}} created": "{{credential}} created",
+ "{{credential}} created successfully": "{{credential}} created successfully",
"Created by": "Created by",
"Custom": "Custom",
"Enable SCIM": "Enable SCIM",
"Enter a descriptive name": "Enter a descriptive name",
- "I've saved my SCIM token": "I've saved my SCIM token",
+ "I've saved my {{credential}}": "I've saved my {{credential}}",
"Important": "Important",
- "Make sure to copy your SCIM token now. You won't be able to see it again!": "Make sure to copy your SCIM token now. You won't be able to see it again!",
+ "Make sure to copy your {{credential}} now. You won't be able to see it again!": "Make sure to copy your {{credential}} now. You won't be able to see it again!",
"Never": "Never",
- "Revoke SCIM token": "Revoke SCIM token",
+ "Revoke {{credential}}": "Revoke {{credential}}",
"SCIM endpoint URL": "SCIM endpoint URL",
"SCIM provisioning": "SCIM provisioning",
"SCIM takes precedence over SSO group sync while enabled.": "SCIM takes precedence over SSO group sync while enabled.",
"SCIM token": "SCIM token",
- "SCIM token created": "SCIM token created",
- "SCIM token created successfully": "SCIM token created successfully",
"SCIM tokens": "SCIM tokens",
"This action cannot be undone. Your identity provider will stop syncing immediately.": "This action cannot be undone. Your identity provider will stop syncing immediately.",
"Toggle SCIM provisioning": "Toggle SCIM provisioning",
diff --git a/apps/client/src/ee/api-key/components/api-key-created-modal.tsx b/apps/client/src/ee/api-key/components/api-key-created-modal.tsx
index 6a01ee3c..ed44811a 100644
--- a/apps/client/src/ee/api-key/components/api-key-created-modal.tsx
+++ b/apps/client/src/ee/api-key/components/api-key-created-modal.tsx
@@ -31,7 +31,7 @@ export function ApiKeyCreatedModal({
@@ -41,7 +41,8 @@ export function ApiKeyCreatedModal({
color="red"
>
{t(
- "Make sure to copy your API key now. You won't be able to see it again!",
+ "Make sure to copy your {{credential}} now. You won't be able to see it again!",
+ { credential: t("API key") },
)}
@@ -64,7 +65,7 @@ export function ApiKeyCreatedModal({
diff --git a/apps/client/src/ee/api-key/components/create-api-key-modal.tsx b/apps/client/src/ee/api-key/components/create-api-key-modal.tsx
index ab19552c..0b93c080 100644
--- a/apps/client/src/ee/api-key/components/create-api-key-modal.tsx
+++ b/apps/client/src/ee/api-key/components/create-api-key-modal.tsx
@@ -105,7 +105,7 @@ export function CreateApiKeyModal({