From 451ced6580afc03a127cc699dfb59c7feed22f5d Mon Sep 17 00:00:00 2001 From: Kelrap <99418823+Kelrap@users.noreply.github.com> Date: Mon, 4 Aug 2025 16:39:04 -0400 Subject: [PATCH] Edit unpin confirmation text (#3620) * Edit unpin confirmation text * Add new intl entry for edited unpin confirmation text * Add Pangea comments * Fix pangea comments --------- Co-authored-by: ggurdin --- lib/l10n/intl_en.arb | 1 + lib/pages/chat/chat.dart | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/l10n/intl_en.arb b/lib/l10n/intl_en.arb index cf5b3bccd..1ded34254 100644 --- a/lib/l10n/intl_en.arb +++ b/lib/l10n/intl_en.arb @@ -5093,6 +5093,7 @@ "errorFetchingActivity": "Failed to fetch activity", "check": "Check", "unableToFindRoom": "No chat or space found with that code. Please try again.", + "confirmMessageUnpin": "Are you sure you want to unpin this message?", "createActivityPlan": "Create a new activity plan", "saveAndLaunch": "Save and Launch", "launchToSpace": "Launch to Space", diff --git a/lib/pages/chat/chat.dart b/lib/pages/chat/chat.dart index ea4efd4d9..ad434e152 100644 --- a/lib/pages/chat/chat.dart +++ b/lib/pages/chat/chat.dart @@ -1805,7 +1805,10 @@ class ChatController extends State final response = await showOkCancelAlertDialog( context: context, title: L10n.of(context).unpin, - message: L10n.of(context).confirmEventUnpin, + // #Pangea + // message: L10n.of(context).confirmEventUnpin, + message: L10n.of(context).confirmMessageUnpin, + // Pangea# okLabel: L10n.of(context).unpin, cancelLabel: L10n.of(context).cancel, );