improve verification badge faq

This commit is contained in:
otsmr 2026-06-15 18:38:48 +02:00
parent 2f0e2a9e24
commit 7dbd190434
5 changed files with 13 additions and 6 deletions

View file

@ -2717,7 +2717,7 @@ abstract class AppLocalizations {
/// No description provided for @verificationBadgeGeneralDesc. /// No description provided for @verificationBadgeGeneralDesc.
/// ///
/// In en, this message translates to: /// In en, this message translates to:
/// **'The checkmark gives you the certainty that you are messaging the right person. You can verify contacts at any time by scanning their QR code.'** /// **'The badge *protects you from scammers and attackers*. It will be displayed next to a contact that has been *manually verified* by you or a friend.'**
String get verificationBadgeGeneralDesc; String get verificationBadgeGeneralDesc;
/// No description provided for @verificationBadgeGreenDesc. /// No description provided for @verificationBadgeGreenDesc.

View file

@ -1528,7 +1528,7 @@ class AppLocalizationsDe extends AppLocalizations {
@override @override
String get verificationBadgeGeneralDesc => String get verificationBadgeGeneralDesc =>
'Der Haken gibt dir die Sicherheit, dass du mit der richtigen Person schreibst. Du kannst Kontakte jederzeit verifizieren, indem du deren QR-Code scannst.'; 'Der Haken *schützt dich vor Betrügern und Angreifern*. Es wird neben einem Kontakt angezeigt, der von dir oder einem Freund *manuell überprüft* wurde.';
@override @override
String get verificationBadgeGreenDesc => String get verificationBadgeGreenDesc =>

View file

@ -1515,7 +1515,7 @@ class AppLocalizationsEn extends AppLocalizations {
@override @override
String get verificationBadgeGeneralDesc => String get verificationBadgeGeneralDesc =>
'The checkmark gives you the certainty that you are messaging the right person. You can verify contacts at any time by scanning their QR code.'; 'The badge *protects you from scammers and attackers*. It will be displayed next to a contact that has been *manually verified* by you or a friend.';
@override @override
String get verificationBadgeGreenDesc => String get verificationBadgeGreenDesc =>

@ -1 +1 @@
Subproject commit 2e608f2d5acc26ee001877b673e361884fb3d0ca Subproject commit b6a106eebce0f5cbfe4272e47721929f32ed325c

View file

@ -23,10 +23,17 @@ class VerificationBadgeInfo extends StatelessWidget {
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Column( return Column(
children: [ children: [
Text( RichText(
text: TextSpan(
children: formattedText(
context,
context.lang.verificationBadgeGeneralDesc, context.lang.verificationBadgeGeneralDesc,
),
style: const TextStyle(fontSize: 16),
),
textAlign: TextAlign.center, textAlign: TextAlign.center,
), ),
const SizedBox(height: 30), const SizedBox(height: 30),
_buildItem( _buildItem(
context, context,