Skip to content
This repository has been archived by the owner on Dec 25, 2024. It is now read-only.

[Identity] Update headline to indicate asynchronous Tax PIN verification process #287

Merged
merged 1 commit into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ internal class IdentificationVerificationFragment(factory: ViewModelProvider.Fac
binding.tvBirthday.text = DateUtils.formatDateTime(requireContext(), it, DateUtils.FORMAT_SHOW_DATE)
}
}
binding.buttonContinue.text = getString(R.string.button_verify)
binding.buttonContinue.text = getString(R.string.button_continue)
binding.buttonContinue.setOnClickListener {
verify()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ internal class TaxPinVerificationFragment(factory: ViewModelProvider.Factory) :
"Verification upload request is null"
}

binding.buttonContinue.text = getString(R.string.button_verify)
binding.buttonContinue.text = getString(R.string.button_continue)
binding.buttonContinue.setOnClickListener {
verify(verificationRequest)
}
Expand Down
6 changes: 2 additions & 4 deletions identity/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,7 @@
<string name="selfie_text_selfie_scan_completed">Scan Complete!</string>

<!-- Document Verification -->
<string name="document_verification_title_document_verification">Verify your identity by providing
your first and last name.</string>
<string name="document_verification_title_document_verification">Kindly provide your first name last name, and document details to necessary for verification</string>
<string name="document_verification_hint_first_name">First Name</string>
<string name="document_verification_hint_last_name">Last Name</string>
<string name="document_verification_hint_document_number">Document Number</string>
Expand All @@ -98,9 +97,8 @@
<string name="document_verification_error_invalid_last_name">The last name is required.</string>

<!-- Tax Pin Verification -->
<string name="tax_pin_verification_title_tax_pin">Verify your Tax Pin</string>
<string name="tax_pin_verification_title_tax_pin">Kindly provide your tax PIN number</string>
<string name="tax_pin_verification_hint_tax_pin">Tax Pin Number</string>
<string name="tax_pin_verification_error_invalid_tax_pin_number">Invalid tax pin.</string>


</resources>