diff --git a/lib/src/localization/generated/app_localizations.dart b/lib/src/localization/generated/app_localizations.dart index c5f4bf5c..a4a961bc 100644 --- a/lib/src/localization/generated/app_localizations.dart +++ b/lib/src/localization/generated/app_localizations.dart @@ -2717,7 +2717,7 @@ abstract class AppLocalizations { /// No description provided for @verificationBadgeGeneralDesc. /// /// 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; /// No description provided for @verificationBadgeGreenDesc. diff --git a/lib/src/localization/generated/app_localizations_de.dart b/lib/src/localization/generated/app_localizations_de.dart index 1077511a..1292597c 100644 --- a/lib/src/localization/generated/app_localizations_de.dart +++ b/lib/src/localization/generated/app_localizations_de.dart @@ -1528,7 +1528,7 @@ class AppLocalizationsDe extends AppLocalizations { @override 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 String get verificationBadgeGreenDesc => diff --git a/lib/src/localization/generated/app_localizations_en.dart b/lib/src/localization/generated/app_localizations_en.dart index 6f12abd8..fa70283f 100644 --- a/lib/src/localization/generated/app_localizations_en.dart +++ b/lib/src/localization/generated/app_localizations_en.dart @@ -1515,7 +1515,7 @@ class AppLocalizationsEn extends AppLocalizations { @override 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 String get verificationBadgeGreenDesc => diff --git a/lib/src/localization/translations b/lib/src/localization/translations index 2e608f2d..b6a106ee 160000 --- a/lib/src/localization/translations +++ b/lib/src/localization/translations @@ -1 +1 @@ -Subproject commit 2e608f2d5acc26ee001877b673e361884fb3d0ca +Subproject commit b6a106eebce0f5cbfe4272e47721929f32ed325c diff --git a/lib/src/visual/components/verification_badge_info.comp.dart b/lib/src/visual/components/verification_badge_info.comp.dart index 28b40b85..5d0bbc6c 100644 --- a/lib/src/visual/components/verification_badge_info.comp.dart +++ b/lib/src/visual/components/verification_badge_info.comp.dart @@ -23,10 +23,17 @@ class VerificationBadgeInfo extends StatelessWidget { Widget build(BuildContext context) { return Column( children: [ - Text( - context.lang.verificationBadgeGeneralDesc, + RichText( + text: TextSpan( + children: formattedText( + context, + context.lang.verificationBadgeGeneralDesc, + ), + style: const TextStyle(fontSize: 16), + ), textAlign: TextAlign.center, ), + const SizedBox(height: 30), _buildItem( context,