fix: Edit unpin confirmation text

This commit is contained in:
Kelrap 2025-08-04 11:48:16 -04:00
parent 34a07fad82
commit 66c2c6b9d1
2 changed files with 4 additions and 2 deletions

View file

@ -3374,5 +3374,7 @@
"moreEvents": "More events",
"@moreEvents": {},
"declineInvitation": "Decline invitation",
"@declineInvitation": {}
"@declineInvitation": {},
"confirmMessageUnpin": "Are you sure you want to unpin this message?",
"@confirmMessageUnpin": {}
}

View file

@ -1177,7 +1177,7 @@ class ChatController extends State<ChatPageWithRoom>
final response = await showOkCancelAlertDialog(
context: context,
title: L10n.of(context).unpin,
message: L10n.of(context).confirmEventUnpin,
message: L10n.of(context).confirmMessageUnpin,
okLabel: L10n.of(context).unpin,
cancelLabel: L10n.of(context).cancel,
);