mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-06-25 06:24:07 +00:00
improve verification badge faq
This commit is contained in:
parent
2f0e2a9e24
commit
7dbd190434
5 changed files with 13 additions and 6 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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 =>
|
||||
|
|
|
|||
|
|
@ -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 =>
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 2e608f2d5acc26ee001877b673e361884fb3d0ca
|
||||
Subproject commit b6a106eebce0f5cbfe4272e47721929f32ed325c
|
||||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue