From e85ac666adaae09e1669dff15ba7a299ad87805e Mon Sep 17 00:00:00 2001 From: Kelrap Date: Tue, 4 Nov 2025 15:21:02 -0500 Subject: [PATCH] Replace 'ban from chat' with 'ban' and 'kick from chat' with 'kick' --- lib/widgets/member_actions_popup_menu_button.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/widgets/member_actions_popup_menu_button.dart b/lib/widgets/member_actions_popup_menu_button.dart index 01c56e45e..07fa5c2dd 100644 --- a/lib/widgets/member_actions_popup_menu_button.dart +++ b/lib/widgets/member_actions_popup_menu_button.dart @@ -178,7 +178,7 @@ void showMemberActionsPopupMenu({ ), const SizedBox(width: 18), Text( - L10n.of(context).kickFromChat, + L10n.of(context).kick, style: TextStyle(color: theme.colorScheme.onErrorContainer), ), ], @@ -195,7 +195,7 @@ void showMemberActionsPopupMenu({ ), const SizedBox(width: 18), Text( - L10n.of(context).banFromChat, + L10n.of(context).ban, style: TextStyle(color: theme.colorScheme.onErrorContainer), ), ],