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 <ggurdin@gmail.com>
This commit is contained in:
Kelrap 2025-08-04 16:39:04 -04:00 committed by GitHub
parent 62140c56da
commit 451ced6580
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View file

@ -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",

View file

@ -1805,7 +1805,10 @@ class ChatController extends State<ChatPageWithRoom>
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,
);