chore: update copy in delete account dialog (#2015)

This commit is contained in:
ggurdin 2025-02-28 15:43:35 -05:00 committed by GitHub
parent d833cb8b5e
commit e20628f116
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 3 deletions

View file

@ -4829,5 +4829,6 @@
"ttsDisabledBody": "You can enable text-to-speech in your learning settings",
"noSpaceDescriptionYet": "No space description created yet.",
"tooLargeToSend": "This message is too large to send",
"leaveRoomDescription": "You're about to leave this chat. Other users will see that you have left the chat."
"leaveRoomDescription": "You're about to leave this chat. Other users will see that you have left the chat.",
"confirmUserId": "Please confirm your Pangea Chat username in order to delete your account."
}

View file

@ -43,7 +43,6 @@ import '../../widgets/matrix.dart';
import 'package:fluffychat/utils/tor_stub.dart'
if (dart.library.html) 'package:tor_detector_web/tor_detector_web.dart';
enum PopupMenuAction {
settings,
invite,

View file

@ -87,7 +87,10 @@ class SettingsSecurityController extends State<SettingsSecurity> {
final mxid = await showTextInputDialog(
useRootNavigator: false,
context: context,
title: L10n.of(context).confirmMatrixId,
// #Pangea
// title: L10n.of(context).confirmMatrixId,
title: L10n.of(context).confirmUserId,
// Pangea#
validator: (text) => text == supposedMxid
? null
: L10n.of(context).supposedMxid(supposedMxid),