From 5b906512e046681439278c00e26cffc5e8aff214 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 28 Oct 2025 21:23:48 +0000 Subject: [PATCH] feat(dirt): add i18n keys for application review workflow Add localized strings for review success/error toast messages. - applicationsCriticalMarked: Success message with count - applicationsReviewed: Success message without critical marking - failedToSaveApplications: Error message Related to PM-27284 --- apps/web/src/locales/en/messages.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/apps/web/src/locales/en/messages.json b/apps/web/src/locales/en/messages.json index aa0353e754d..abed7069836 100644 --- a/apps/web/src/locales/en/messages.json +++ b/apps/web/src/locales/en/messages.json @@ -214,6 +214,18 @@ "applicationsMarkedAsCriticalFail": { "message": "Failed to mark applications as critical" }, + "applicationsCriticalMarked": { + "message": "$COUNT$ applications marked as critical", + "placeholders": { + "count": { + "content": "$1", + "example": "3" + } + } + }, + "applicationsReviewed": { + "message": "Applications reviewed successfully" + }, "application": { "message": "Application" }, @@ -10115,6 +10127,9 @@ "failedToSaveIntegration": { "message": "Failed to save integration. Please try again later." }, + "failedToSaveApplications": { + "message": "Failed to save application review status" + }, "mustBeOrgOwnerToPerformAction": { "message": "You must be the organization owner to perform this action." },