Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
justinenerio committed Dec 15, 2024
1 parent 46689fe commit 966295e
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,23 @@ class KycStatusScreen extends StatelessWidget {
],
),
)
else if (status == KycValidationStatus.approved)
else if (status == KycValidationStatus.approved) ...[
Padding(
padding: const EdgeInsets.symmetric(horizontal: 12),
child: Text(
context.l10n.kycApprovedStatusDescription2,
style: _textStyle,
),
),
const SizedBox(height: 14),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 12),
child: Text(
context.l10n.kycApprovedStatusDescription3,
style: _textStyle,
),
),
],
const SizedBox(height: 16),
const Spacer(),
if (status == KycValidationStatus.approved) ...[
Expand Down
24 changes: 13 additions & 11 deletions packages/espressocash_app/lib/l10n/intl_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -1108,25 +1108,27 @@
"@kycVerificationFooter": {},
"personalDetails": "Personal Details",
"@personalDetails": {},
"kycPendingStatusTitle": "Identity *Pending Approval*",
"kycPendingStatusTitle": "Identity *Pending Approval.*",
"@kycPendingStatusTitle": {},
"kycPendingStatusDescription": "Your verification is under review and will take 10-20 minutes. ",
"@kycPendingStatusDescription": {},
"kycPendingStatusDescription2": "You can still send and receive money during this time.",
"@kycPendingStatusDescription2": {},
"kycPendingStatusDescription3": "Updates on your status will appear in your activity feed.",
"@kycPendingStatusDescription3": {},
"kycRejectedStatusTitle": "Identity *Not Verified*",
"kycRejectedStatusTitle": "Identity *Not Verified.*",
"@kycRejectedStatusTitle": {},
"kycRejectedStatusDescription": "Your verification was not approved.\nPlease ensure all your information is accurate and your ID is up to date.",
"@kycRejectedStatusDescription": {},
"kycApprovedStatusTitle": "Identity *Verified*",
"kycApprovedStatusTitle": "Identity *Verified.*",
"@kycApprovedStatusTitle": {},
"kycApprovedStatusDescription": "Good news! Your ID verification is approved.",
"kycApprovedStatusDescription": "Good news!",
"@kycApprovedStatusDescription": {},
"kycApprovedStatusDescription2": "You can now make deposits and withdrawals, and it applies to all future transactions.",
"kycApprovedStatusDescription2": "Your ID verification has been successfully approved. You are now able to make deposits and withdrawals.",
"@kycApprovedStatusDescription2": {},
"emailPendingStatusTitle": "Email Address *Pending Approval*",
"kycApprovedStatusDescription3": "Start by adding funds to your account.",
"@kycApprovedStatusDescription3": {},
"emailPendingStatusTitle": "Email Address *Pending Approval.*",
"@emailPendingStatusTitle": {},
"emailPendingStatusDescription": "Your email {email} has not been verified.",
"@emailPendingStatusDescription": {
Expand All @@ -1136,7 +1138,7 @@
}
}
},
"emailRejectedStatusTitle": "Email Address *Not Verified*",
"emailRejectedStatusTitle": "Email Address *Not Verified.*",
"@emailRejectedStatusTitle": {},
"emailRejectedStatusDescription": "Your email {email} could not be verified. Enter your email address to receive a new confirmation code.",
"@emailRejectedStatusDescription": {
Expand All @@ -1146,7 +1148,7 @@
}
}
},
"emailApprovedStatusTitle": "Email Address *Verified*",
"emailApprovedStatusTitle": "Email Address *Verified.*",
"@emailApprovedStatusTitle": {},
"emailApprovedStatusDescription": "Your email {email} has been successfully verified.",
"@emailApprovedStatusDescription": {
Expand All @@ -1156,7 +1158,7 @@
}
}
},
"phonePendingStatusTitle": "Phone Number *Pending Approval*",
"phonePendingStatusTitle": "Phone Number *Pending Approval.*",
"@phonePendingStatusTitle": {},
"phonePendingStatusDescription": "Your phone number {phone} has not been verified.",
"@phonePendingStatusDescription": {
Expand All @@ -1166,7 +1168,7 @@
}
}
},
"phoneRejectedStatusTitle": "Phone Number *Not Verified*",
"phoneRejectedStatusTitle": "Phone Number *Not Verified.*",
"@phoneRejectedStatusTitle": {},
"phoneRejectedStatusDescription": "Your phone number {phone} could not be verified. Re-enter your mobile phone number to receive a new confirmation code.",
"@phoneRejectedStatusDescription": {
Expand All @@ -1176,7 +1178,7 @@
}
}
},
"phoneApprovedStatusTitle": "Phone Number *Verified*",
"phoneApprovedStatusTitle": "Phone Number *Verified.*",
"@phoneApprovedStatusTitle": {},
"phoneApprovedStatusDescription": "Your phone number {phone} has been successfully verified.",
"@phoneApprovedStatusDescription": {
Expand Down

0 comments on commit 966295e

Please sign in to comment.