IncdOnboarding Localization Guide

IncdOnboarding Localization Guide

Apply localization using *.strings files

IncdOnboarding SDK contains localized texts in English, Spanish and Portuguese. In order to have this multi-language support please enable Use Base Internationalization inside your project and add languages that you want. If you would like to customize texts displayed by IncdOnboarding SDK next step would be to create a Localizable.strings file for different languages. To do that:

  1. In Xcode, select File > New > File, then select Resource in the iOS category in the sidebar.
  2. Select Strings File from the files and click Next.
  3. Name the file Localizable and click Create.
  4. Choose the strings to customize and add them to the Localizable.strings file as follows:
// add a key and change the value to what you want
"incdOnboarding.phone.title" = "Please enter your phone number";

Make sure that the file is in the Copy Bundle Resources section of the Build Phases tab in Xcode.

To give a custom name to the .strings file instead of using default Localizable file name. To specify this set IncdOnboardingManager.shared.localizationStringsFile to ie. LocalizableCustom.

Apply localization in runtime

Specify preferred language

Set IncdOnboardingManager.shared.localizationLanguage to desired locale, ie. "es":

IncdOnboardingManager.shared.localizationLanguage = "es"

Notes:

  • Possible values are "en", "es", and "pt". If requested language is not found in bundle, preferred by current locale will be used.
  • If you overriden some texts in .strings file used by current locale, but you still want to force the preferred language please specify the bundle as well, ie. "es":
let path = Bundle.main.path(forResource: "es", ofType: "lproj")
if let path = path,
   let bundle = Bundle(path: path) {
	IncdOnboardingManager.shared.localizationBundle = bundle
}

Change texts programatically from the code

Change individual texts:

IncdLocalization.current["incdOnboarding.idChooser.idButton"] = "Button 1"

Define all texts:

var textDictionary = [String:String]()
textDictionary["incdOnboarding.idChooser.idButton"] = "Button 1"
textDictionary["incdOnboarding.idChooser.passportButton"] = "Button 2"

IncdLocalization.current = textDictionary

List of localizable texts

Here's the list of texts bundled in IncdOnboarding.bundle:

"incdOnboarding.global.button.cancel" = "Cancel";
"incdOnboarding.global.button.continue" = "CONTINUE";
"incdOnboarding.global.button.continue.lowerCase" = "Continue";
"incdOnboarding.global.button.done" = "Done";
"incdOnboarding.global.button.next" = "Next";
"incdOnboarding.global.button.tryAgain" = "TRY AGAIN";
"incdOnboarding.global.button.tryAgain.lowerCase" = "Try Again";
"incdOnboarding.global.button.quitProcess" = "Quit process";
"incdOnboarding.global.dialog.cameraPermissionsBtnOpenSettings" = "OPEN SETTINGS";
"incdOnboarding.global.dialog.cameraPermissionsBtnOpenSettings.lowerCase" = "Open settings";
"incdOnboarding.global.dialog.cameraPermissionsMandatorySubtitle" = "Please open Settings and enable Camera";
"incdOnboarding.global.dialog.cameraPermissionsMandatoryTitle" = "Camera permission is mandatory";
"incdOnboarding.global.dialog.continue" = "Continue";
"incdOnboarding.global.dialog.quitConfirmation" = "Are you sure you want to quit the process?";
"incdOnboarding.global.dialog.ok" = "OK";
"incdOnboarding.global.dialog.permission.finishProcess" = "FINISH PROCESS";
"incdOnboarding.global.dialog.quit" = "Quit";
"incdOnboarding.global.error.generic.message" = "Please try again";
"incdOnboarding.global.error.generic.title" = "Something went wrong";
"incdOnboarding.global.processing" = "Processing…";
"incdOnboarding.global.uploading" = "Uploading…";
"incdOnboarding.global.verifying" = "Verifying…";
"incdOnboarding.global.pleaseWait" = "Please wait";
"incdOnboarding.global.adjustingCamera" = "Adjusting camera…";
"incdOnboarding.autoCapture.detectionSuccess" = "Don’t move!\nTaking photo…";
"incdOnboarding.barcodeTips.continue" = "Continue";
"incdOnboarding.barcodeTips.subtitle" = "Photo will be taken automatically";
"incdOnboarding.barcodeTips.title" = "Zoom the barcode inside the frame";
"incdOnboarding.barcodeUploader.success" = "Success";
"incdOnboarding.barcodeUploader.uploading" = "Uploading";
"incdOnboarding.btnRetakePhoto" = "RETAKE PHOTO";
"incdOnboarding.ccv.invalidCCV" = "Invalid security code";
"incdOnboarding.ccv.title" = "Enter your security code";
"incdOnboarding.conference.btnSend" = "SEND";
"incdOnboarding.conference.chatWith" = "Chat with %@";
"incdOnboarding.conference.interviewerConnected" = "connected";
"incdOnboarding.conference.subtitle" = "We’re connecting you\nwith a representative";
"incdOnboarding.conference.title" = "Hang on";
"incdOnboarding.conference.waitingTimeLabel" = "This usually takes 2 – 3 minutes.";
"incdOnboarding.conference.writeMessageHint" = "Write a message";
"incdOnboarding.creditCardTips.title" = "Place your Credit Card\nwithin the frame\nand take the photo";
"incdOnboarding.curp.add.continue" = "CONTINUE";
"incdOnboarding.curp.add.curptextfield.placeholder" = "CURP";
"incdOnboarding.curp.add.generate" = "Generate";
"incdOnboarding.curp.add.info" = "CURP NOT VALID";
"incdOnboarding.curp.add.nocurp" = "I don’t have my CURP.";
"incdOnboarding.curp.add.title" = "Enter your CURP";
"incdOnboarding.curp.add.title.confirm" = "Confirm your CURP";
"incdOnboarding.curp.generation.birth.state.placeholder" = "Birth state";
"incdOnboarding.curp.generation.birthdate.placeholder" = "Birthdate";
"incdOnboarding.curp.generation.failure" = "Couldn't generate your CURP";
"incdOnboarding.curp.generation.gender.female" = "Female";
"incdOnboarding.curp.generation.gender.male" = "Male";
"incdOnboarding.curp.generation.gender.placeholder" = "Gender";
"incdOnboarding.curp.generation.generate" = "GENERATE";
"incdOnboarding.curp.generation.info.failure" = "Please check your data";
"incdOnboarding.curp.generation.inprogress" = "Generating your CURP";
"incdOnboarding.curp.generation.last.name.placeholder" = "Last name";
"incdOnboarding.curp.generation.name.placeholder" = "Name";
"incdOnboarding.curp.generation.second.last.name.placeholder" = "Second last name";
"incdOnboarding.curp.generation.state.bornAbroad" = "Born Abroad";
"incdOnboarding.curp.generation.success" = "CURP verified!";
"incdOnboarding.curp.generation.title" = "Generate your CURP";
"incdOnboarding.curp.validation.failure" = "CURP not verified";
"incdOnboarding.curp.validation.inprogress" = "Verifying your CURP";
"incdOnboarding.curp.validation.success" = "CURP verified!";
"incdOnboarding.document.addressStatement.subtitle" = "This can be any legal documentation that proves your address.";
"incdOnboarding.document.addressStatement.title" = "Upload a document to verify your identity";
"incdOnboarding.document.continue" = "Continue";
"incdOnboarding.document.failUpload" = "Couldn't upload your document";
"incdOnboarding.document.uploadFailed.continue" = "CONTINUE";
"incdOnboarding.document.files" = "Files";
"incdOnboarding.document.footer" = "Take a photo or upload PDF, JPG";
"incdOnboarding.document.info.noDocumentDetected" = "No document detected";
"incdOnboarding.document.info.showPaperStatement" = "Show the paper\nstatement";
"incdOnboarding.document.info.tooBlurry" = "Statement out of focus";
"incdOnboarding.document.info.tooDark" = "Too dark\nStatement not detected";
"incdOnboarding.document.info.tooFar" = "Please move the statement\n closer";
"incdOnboarding.document.medicalDoc.subtitle" = "This can be a document that shows you are medically insured.";
"incdOnboarding.document.medicalDoc.title" = "Upload your medical document";
"incdOnboarding.document.otherDocument1.subtitle" = "This can be any legal documentation that proves your identity";
"incdOnboarding.document.otherDocument1.title" = "Upload a document to verify your identity";
"incdOnboarding.document.otherDocument2.subtitle" = "This can be any legal documentation that proves your identity";
"incdOnboarding.document.otherDocument2.title" = "Upload a document to verify your identity";
"incdOnboarding.document.otherDocument3.subtitle" = "This can be any legal documentation that proves your identity";
"incdOnboarding.document.otherDocument3.title" = "Upload a document to verify your identity";
"incdOnboarding.document.paymentProof.subtitle" = "This can be a document from your bank or electronic invoice that shows a specific transaction.";
"incdOnboarding.document.paymentProof.title" = "Upload your proof of payment";
"incdOnboarding.document.photoLibrary" = "Photo Library";
"incdOnboarding.document.takePhoto" = "Take Photo";
"incdOnboarding.document.tutorial.subtitle" = "Make sure that entire document fits the view";
"incdOnboarding.document.tutorial.title" = "Place your document within the frame and take the photo";
"incdOnboarding.document.review.continue" = "CONTINUE";
"incdOnboarding.document.review.retake" = "RETAKE";
"incdOnboarding.document.review.subtitle" = "Make sure the letters are clear and it has good lighting";
"incdOnboarding.document.review.title" = "Review your document";
"incdOnboarding.email.invalidEmail" = "Email not valid";
"incdOnboarding.email.title" = "Please enter your email address";
"incdOnboarding.faceEnroll.tutorial.title" = "Take a selfie";
"incdOnboarding.faceEnroll.tutorial.subtitle" = "This allows you to sign in using your face.";
"incdOnboarding.faceEnroll.tutorial.hint" = "Stay still, photo will be taken automatically";
"incdOnboarding.faceEnroll.tutorial.buttonTitle" = "Take selfie";
"incdOnboarding.geolocation.btnContinue" = "CONTINUE";
"incdOnboarding.geolocation.btnDontProvideLocation" = "Don’t provide location";
"incdOnboarding.geolocation.btnGoToSettings" = "GO TO SETTINGS";
"incdOnboarding.geolocation.title.allowLocation" = "Allow Location\nPermission to continue";
"incdOnboarding.geolocation.title.intro" = "We need to determine\nyour location";
"incdOnboarding.geolocation.title.success" = "You are currently in:";
"incdOnboarding.govValidation.error.connection" = "Government Check connection error";
"incdOnboarding.govValidation.error.ineInfrastructure" = "Government Check infrastructure error";
"incdOnboarding.govValidation.error.insufficientLookupData" = "Insufficient lookup data";
"incdOnboarding.govValidation.error.missingDocumentIdentifier" = "Missing document identifier";
"incdOnboarding.govValidation.error.missingSelfie" = "Missing selfie";
"incdOnboarding.govValidation.error.moduleNotSupported" = "Module not supported error";
"incdOnboarding.govValidation.error.userNotFound" = "User not found";
"incdOnboarding.govValidation.error.userNotInDatabase" = "User not in government check DB";
"incdOnboarding.govValidation.failure" = "Identity not verified";
"incdOnboarding.govValidation.inProgress" = "Hang on\nWe are validating your documents";
"incdOnboarding.govValidation.startedSuccessfully" = "Identity submitted for verification";
"incdOnboarding.govValidation.success" = "Identity verified!";
"incdOnboarding.id.documentType.unknown" = "Unknown";
"incdOnboarding.id.documentType.passport" = "Passport";
"incdOnboarding.id.documentType.visa" = "Visa";
"incdOnboarding.id.documentType.driversLicense" = "Driver's License";
"incdOnboarding.id.documentType.identificationCard" = "Identification Card";
"incdOnboarding.id.documentType.permit" = "Permit";
"incdOnboarding.id.documentType.currency" = "Currency";
"incdOnboarding.id.documentType.residenceDocument" = "Residence Document";
"incdOnboarding.id.documentType.travelDocument" = "Travel Document";
"incdOnboarding.id.documentType.birthCertificate" = "Birth Certificate";
"incdOnboarding.id.documentType.vehicleRegistration" = "Vehicle Registration";
"incdOnboarding.id.documentType.other" = "Other";
"incdOnboarding.id.documentType.weaponLicense" = "Weapon License";
"incdOnboarding.id.documentType.tribalIdentification" = "Tribal Identification";
"incdOnboarding.id.documentType.voterIdentification" = "Voter Identification";
"incdOnboarding.id.documentType.military" = "Military";
"incdOnboarding.id.documentType.taxIdentification" = "Tax Identification";
"incdOnboarding.id.documentType.federalID" = "Federal ID";
"incdOnboarding.id.documentType.medicalCard" = "Medical Card";
"incdOnboarding.id.err.blurDesc" = "Photo\nis blurred";
"incdOnboarding.id.err.classificationFailed" = "ID scan failed";
"incdOnboarding.id.err.commonIssuesNoAttemptsRemaining" = "No attempts remaining";
"incdOnboarding.id.err.commonIssuesAttemptRemaining" = "1 attempt remaining";
"incdOnboarding.id.err.commonIssuesAttemptsRemaining" = "%d attempts remaining";
"incdOnboarding.id.err.commonIssuesTitle" = "Common issues";
"incdOnboarding.id.err.default" = "Couldn't capture";
"incdOnboarding.id.err.fillFrame" = "Fill the rectangle with your ID";
"incdOnboarding.id.err.glare" = "Glare detected";
"incdOnboarding.id.err.readability" = "ID not readable";
"incdOnboarding.id.err.shadowDesc" = "Shadows or\nglare present";
"incdOnboarding.id.err.sharpness" = "ID out of focus";
"incdOnboarding.id.err.tooDark" = "Too dark";
"incdOnboarding.id.err.unreadableDesc" = "Info is\nnot readable";
"incdOnboarding.id.err.unacceptable" = "ID type is not accepted";
"incdOnboarding.id.err.unacceptableButton" = "Use another ID";
"incdOnboarding.id.err.wrongSide.title" = "Wrong ID side captured";
"incdOnboarding.id.err.wrongSide.subtitleFront" = "Please capture the front side of the ID";
"incdOnboarding.id.err.wrongSide.subtitleBack" = "Please capture the back side of the ID";
"incdOnboarding.id.err.uploadIssue.blur" = "Blur present";
"incdOnboarding.id.err.uploadIssue.blur.hint" = "Move ID further away or closer to your phone until the image is focused";
"incdOnboarding.id.err.uploadIssue.glare" = "Glare present";
"incdOnboarding.id.err.uploadIssue.glare.hint" = "Tilt the ID slightly up or down to minimize the reflection";
"incdOnboarding.id.err.uploadIssue.readablity" = "Info is not readable";
"incdOnboarding.id.err.uploadIssue.readablity.hint" = "Minimize camera shake by holding your phone steady";
"incdOnboarding.id.err.uploadIssue.unacceptableID" = "ID type is not accepted";
"incdOnboarding.id.err.uploadIssue.unacceptableID.hint" = "Please try with a different document";
"incdOnboarding.id.help.btnNeedHelp" = "HELP";
"incdOnboarding.id.help.btnOk" = "Ok, try again";
"incdOnboarding.id.help.btnSwitchToManualCapture" = "I PREFER TO CAPTURE THE PHOTO MANUALLY";
"incdOnboarding.id.help.title" = "Common issues";
"incdOnboarding.id.capturingIn.voiceover" = "Capturing in";
"incdOnboarding.id.holdStill.voiceover" = "Hold still";
"incdOnboarding.id.intro.voiceover" = "Back camera has started and ready to scan.";
"incdOnboarding.id.help.glare.title" = "Glare present";
"incdOnboarding.id.help.glare.subtitle" = "Tilt the ID slightly up or down to minimize the reflection";
"incdOnboarding.id.help.blur.title" = "Blur present";
"incdOnboarding.id.help.blur.subtitle" = "Move ID further away or closer to your phone until the image is focused";
"incdOnboarding.id.help.unreadable.title" = "Camera lens dirty";
"incdOnboarding.id.help.unreadable.subtitle" = "Minimize camera shake by holding your phone steady";
"incdOnboarding.id.manualCaptureInfo" = "1. Put ID in the frame\n2. Press capture button";
"incdOnboarding.id.manualCaptureInfo_v2" = "1. Fill the frame with your ID\n2. Press the button";
"incdOnboarding.id.showBackIDSide" = "Show the back of the ID";
//"incdOnboarding.id.showBackIDSideOnCountdown" = "Keep the camera still";
"incdOnboarding.id.showFrontIDSide" = "Show the front of the ID";
//"incdOnboarding.id.showFrontIDSideOnCountdown" = "Keep the camera still";
"incdOnboarding.id.showPassport" = "Show passport page with your photo";
"incdOnboarding.id.summary.backFail" = "Back ID scan fail";
"incdOnboarding.id.summary.backSuccess" = "Back ID scan success";
"incdOnboarding.id.summary.frontFail" = "Front ID scan fail";
"incdOnboarding.id.summary.frontSuccess" = "Front ID scan success";
"incdOnboarding.id.summary.mainButton" = "CONTINUE";
"incdOnboarding.id.summary.passportFail" = "Passport scan fail";
"incdOnboarding.id.summary.subtitle" = "We will notify you with the result";
"incdOnboarding.id.summary.title" = "Referred to an executive";
"incdOnboarding.id.userReview.continue" = "CONTINUE";
"incdOnboarding.id.userReview.retake" = "RETAKE";
"incdOnboarding.id.userReview.subtitle" = "• Ensure that the text on the ID is readable";
"incdOnboarding.id.userReview.subtitle2" = "• The ID photo must be sharp and without glare";
"incdOnboarding.id.userReview.title" = "Review your photo";
"incdOnboarding.id.warn.showBackID" = "Show the back\nof the ID";
"incdOnboarding.id.warn.showfrontID" = "Show the front\nof the ID";
"incdOnboarding.idBackTips.title" = "Now show the\nback side of your ID";
"incdOnboarding.idBackTips.title.highlight" = "back side";
"incdOnboarding.idChooser.idButton" = "Driver License\nID Card\nResident Card";
"incdOnboarding.idChooser.passportButton" = "Passport \nVisa";
"incdOnboarding.idChooser.title" = "Select what document\nyou want to scan";
"incdOnboarding.idTips.btnNext" = "NEXT";
"incdOnboarding.idTips.btnSkip" = "SKIP";
"incdOnboarding.idTips.btnStart" = "START";
"incdOnboarding.idTips.firstSubtitle" = "Avoid shadows and glare";
"incdOnboarding.idTips.secondSubtitle" = "Photo will be taken automatically";
"incdOnboarding.idTips0" = "Place your\nID inside the frame";
"incdOnboarding.idTips1" = "Avoid\nshadows and glare";
"incdOnboarding.idTips2" = "Make sure\nthe photo is sharp";
"incdOnboarding.idTips3" = "Make sure\ninfo is readable";
"incdOnboarding.idTips.voiceover" = "Place your ID up to the back camera of your phone and slowly move the ID while holding your phone in position. Once you feel the vibration, hold still, and the capture will happen automatically.";
"incdOnboarding.idTips.ageAssurance.title" = "Age verification";
"incdOnboarding.idTips.ageAssurance.subtitle" = "We need to scan your ID to know your age";
"incdOnboarding.idTips.ageAssurance.tip1" = "Show your ID and scan it";
"incdOnboarding.idTips.ageAssurance.tip2" = "We only use the date of birth information";
"incdOnboarding.idTips.ageAssurance.tip3" = "The rest of your information will be deleted to ensure your privacy";
"incdOnboarding.idTips.ageAssurance.idScan" = "Place your ID vertically inside the frame";
"incdOnboarding.idTips.ageAssurance.calculatingAge" = "Calculating your age...";
"incdOnboarding.id.tooClose.voiceOver" = "Move phone further from the ID";
"incdOnboarding.id.tooFar.voiceOver" = "Move phone closer to the ID";
"incdOnboarding.id.switchingToManualCapture" = "Double tap on the screen to capture, or bottom right button if you need help with capturing.";
"incdOnboarding.intro.dataProtected" = "Your data is protected by Incode";
"incdOnboarding.intro.dataProtected.highlight" = "Incode";
"incdOnboarding.intro.title" = "For this process you will need:";
"incdOnboarding.intro.continue" = "CONTINUE";
"incdOnboarding.match.fail" = "Couldn\’t match\nyou to the ID";
"incdOnboarding.match.nfc.fail" = "Faces do not match";
"incdOnboarding.match.livenessFailed" = "Liveness failed";
"incdOnboarding.match.livenessSuccess" = "Liveness success";
"incdOnboarding.match.success" = "Matched";
"incdOnboarding.match.title" = "Verifying photo\nbased identity";
"incdOnboarding.match.userAlreadyExists" = "User already exists";
"incdOnboarding.match.primaryID" = "First ID";
"incdOnboarding.match.secondaryID" = "Second ID";
"incdOnboarding.match.selfie" = "Selfie";
"incdOnboarding.nameInfo.continue" = "CONTINUE";
"incdOnboarding.nameInfo.lastnamePlaceholder" = "Last Name";
"incdOnboarding.nameInfo.namePlaceholder" = "Name";
"incdOnboarding.nameInfo.subtitle" = "Please make sure to enter your name as shown on your ID";
"incdOnboarding.nameInfo.title" = "Enter your name";
"incdOnboarding.otp.btnSubmit" = "SUBMIT";
"incdOnboarding.otp.generating" = "Generating new code..";
"incdOnboarding.otp.timeLeft" = "%i second left";
"incdOnboarding.otp.timeLeftPlural" = "%i seconds left";
"incdOnboarding.otp.title" = "Please enter\nthe following code";
"incdOnboarding.otp.wrongCode" = "Incorrect code, please try again.";
"incdOnboarding.passport.err.classificationFailed" = "Passport scan failed";
"incdOnboarding.passport.err.readability" = "Passport not readable";
"incdOnboarding.passport.err.sharpness" = "Passport out of focus";
"incdOnboarding.passport.manualCaptureInfo" = "1. Put passport in the frame\n2. Press capture button";
"incdOnboarding.passport.manualCaptureInfo_v2" = "1. Fill the frame with your passport\n2. Press the button";
"incdOnboarding.passportTips0" = "Place your Passport inside the\nframe and take a photo";
"incdOnboarding.passportTips1" = "Avoid\nshadows and glare";
"incdOnboarding.passportTips2" = "Make sure\nthe photo is sharp";
"incdOnboarding.passportTips3" = "Make sure\ninfo is readable";
"incdOnboarding.phone.numberExistsMsg" = "User with this phone number already exists. Please check and try again.";
"incdOnboarding.phone.numberExistsTitle" = "User already exists";
"incdOnboarding.phone.optin" = "Yes, I’d like to receive important messages from %@ on my phone";
"incdOnboarding.phone.title" = "Please enter your phone number";
"incdOnboarding.phone.continue" = "CONTINUE";
"incdOnboarding.progressDetails.title" = "Your progress";
"incdOnboarding.progressDetails.subtitle" = "Complete the following, it takes around 2-5 minutes to prove your identity";
"incdOnboarding.progressDetails.dataProtected" = "Your data is protected by Incode";
"incdOnboarding.progressDetails.dataProtected.highlight" = "Incode";
"incdOnboarding.progressStep.intro.title" = "Intro";
"incdOnboarding.progressStep.intro.subtitle" = "Intro";
"incdOnboarding.progressStep.mobilePhone.title" = "Mobile Phone";
"incdOnboarding.progressStep.mobilePhone.subtitle" = "Mobile Phone";
"incdOnboarding.progressStep.email.title" = "Email";
"incdOnboarding.progressStep.email.subtitle" = "Email";
"incdOnboarding.progressStep.name.title" = "Name";
"incdOnboarding.progressStep.name.subtitle" = "Name";
"incdOnboarding.progressStep.barcode.title" = "Barcode";
"incdOnboarding.progressStep.barcode.subtitle" = "Barcode";
"incdOnboarding.progressStep.idFront.title" = "ID capture";
"incdOnboarding.progressStep.idFront.subtitle" = "Scan your ID from both sides";
"incdOnboarding.progressStep.idBack.title" = "ID Back";
"incdOnboarding.progressStep.idBack.subtitle" = "ID Back";
"incdOnboarding.progressStep.idProcessing.title" = "ID Processing";
"incdOnboarding.progressStep.idProcessing.subtitle" = "ID Processing";
"incdOnboarding.progressStep.qr.title" = "QR";
"incdOnboarding.progressStep.qr.subtitle" = "QR";
"incdOnboarding.progressStep.documentScan.title" = "Document Scan";
"incdOnboarding.progressStep.documentScan.subtitle" = "Document Scan";
"incdOnboarding.progressStep.creditCard.title" = "Credit Card Scan";
"incdOnboarding.progressStep.creditCard.subtitle" = "Credit Card Scan";
"incdOnboarding.progressStep.geolocation.title" = "Geolocation";
"incdOnboarding.progressStep.geolocation.subtitle" = "Geolocation";
"incdOnboarding.progressStep.curp.title" = "CURP";
"incdOnboarding.progressStep.curp.subtitle" = "CURP";
"incdOnboarding.progressStep.selfie.title" = "Selfie";
"incdOnboarding.progressStep.selfie.subtitle" = "Selfie";
"incdOnboarding.progressStep.faceMatch.title" = "Face Match";
"incdOnboarding.progressStep.faceMatch.subtitle" = "Face Match";
"incdOnboarding.progressStep.government.title" = "Government Validation";
"incdOnboarding.progressStep.government.subtitle" = "Government Validation";
"incdOnboarding.progressStep.signature.title" = "Signature";
"incdOnboarding.progressStep.signature.subtitle" = "Signature";
"incdOnboarding.progressStep.userConsent.title" = "User Consent";
"incdOnboarding.progressStep.userConsent.subtitle" = "User Consent";
"incdOnboarding.progressStep.videoConference.title" = "Video Conference";
"incdOnboarding.progressStep.videoConference.subtitle" = "Video Conference";
"incdOnboarding.progressStep.userScore.title" = "User Score";
"incdOnboarding.progressStep.userScore.subtitle" = "User Score";
"incdOnboarding.progressStep.approval.title" = "User Approval";
"incdOnboarding.progressStep.approval.subtitle" = "User Approval";
"incdOnboarding.progressStep.captchaOtp.title" = "Captcha/OTP";
"incdOnboarding.progressStep.captchaOtp.subtitle" = "Captcha/OTP";
"incdOnboarding.progressStep.videoSelfie.title" = "Video Selfie";
"incdOnboarding.progressStep.videoSelfie.subtitle" = "Video Selfie";
"incdOnboarding.processId.description" = "We’re verifying your identity";
"incdOnboarding.processId.status" = "Hold on a sec…";
"incdOnboarding.qr.btnTryAgain" = "TRY AGAIN";
"incdOnboarding.qr.help.badCaptureAngleDesc" = "Bad capture angle";
"incdOnboarding.qr.help.blurredDesc" = "Blurred or damaged QR";
"incdOnboarding.qr.help.btnOk" = "Ok, try again";
"incdOnboarding.qr.help.positionDesc" = "QR cropped out of frame";
"incdOnboarding.qr.help.title" = "Common Issues";
"incdOnboarding.qr.help.tooCloseOrTooFarDesc" = "QR too close or too far";
"incdOnboarding.qr.processing" = "Processing...";
"incdOnboarding.qr.scanningDone" = "Done!";
"incdOnboarding.qr.scanningError" = "QR Scan\nUnsuccessful!";
"incdOnboarding.qr.title" = "Place the QR code\ninside the box";
"incdOnboarding.qrTips.subtitle" = "QR will be read automatically";
"incdOnboarding.qrTips.title" = "Locate the QR inside\nthe document";
"incdOnboarding.results.btnDone" = "DONE";
"incdOnboarding.results.check.2DBarcodeRead" = "2D Barcode Read";
"incdOnboarding.results.check.balancedLightBack" = "Balanced light (back side)";
"incdOnboarding.results.check.balancedLightFront" = "Balanced light (front side)";
"incdOnboarding.results.check.birthDateCheckDigit" = "Birth Date Check Digit";
"incdOnboarding.results.check.birthDateCrosscheck" = "Birth Date Crosscheck";
"incdOnboarding.results.check.birthDateValid" = "Birth Date Valid";
"incdOnboarding.results.check.compositeCheckDigit" = "Composite Check Digit";
"incdOnboarding.results.check.documentClassification" = "Document Classification";
"incdOnboarding.results.check.documentCrosscheckAggregation" = "Document Crosscheck Aggregation";
"incdOnboarding.results.check.documentExpired" = "Document Expired";
"incdOnboarding.results.check.documentIdCheck" = "Document ID Check";
"incdOnboarding.results.check.documentNumberCheckDigit" = "Document Number Check Digit";
"incdOnboarding.results.check.documentNumberCrosscheck" = "Document Number Crosscheck";
"incdOnboarding.results.check.electorsKey" = "Electors Key Valid";
"incdOnboarding.results.check.emissionNumber" = "Emission Number Valid";
"incdOnboarding.results.check.expirationDateCheckDigit" = "Expiration Date Check Digit";
"incdOnboarding.results.check.expirationDateCrosscheck" = "Expiration Date Crosscheck";
"incdOnboarding.results.check.expirationDateValid" = "Expiration Date Valid";
"incdOnboarding.results.check.expirationDateValidity" = "Expiration Date Validity";
"incdOnboarding.results.check.firstName" = "First Name Valid";
"incdOnboarding.results.check.fullNameCrosscheck" = "Full Name Crosscheck";
"incdOnboarding.results.check.idLiveness" = "ID Liveness";
"incdOnboarding.results.check.imageTamperingCheck" = "Image Tampering Check";
"incdOnboarding.results.check.incodeCrossCheck" = "Incode CrossCheck";
"incdOnboarding.results.check.incodeFakeCheck" = "Incode FakeCheck";
"incdOnboarding.results.check.incodeIdLiveness" = "Incode ID Liveness";
"incdOnboarding.results.check.incodeTamperCheck" = "Incode TamperCheck";
"incdOnboarding.results.check.issueDate" = "Issue Date Valid";
"incdOnboarding.results.check.issueDateCheck" = "Issue Date Check";
"incdOnboarding.results.check.issueDateValid" = "Issue Date Valid";
"incdOnboarding.results.check.issueDateValidity" = "Issue Date Validity";
"incdOnboarding.results.check.issuingStateValid" = "Issuing State Valid";
"incdOnboarding.results.check.liveness_score" = "Liveness Score";
"incdOnboarding.results.check.maternalLastName" = "Maternal Last Name Valid";
"incdOnboarding.results.check.ocr" = "OCR Valid";
"incdOnboarding.results.check.paternalLastName" = "Paternal Last Name Valid";
"incdOnboarding.results.check.personalId" = "Personal Id Valid";
"incdOnboarding.results.check.personalNumberCrosscheck" = "Personal Number Crosscheck";
"incdOnboarding.results.check.photoPrinting" = "Photo Printing";
"incdOnboarding.results.check.photo_comparison" = "Photo Comparison";
"incdOnboarding.results.check.photo_quality" = "Photo Quality";
"incdOnboarding.results.check.postitCheck" = "Postit Check";
"incdOnboarding.results.check.qrCheck" = "QR check";
"incdOnboarding.results.check.registrationDate" = "Registration Date Valid";
"incdOnboarding.results.check.sexCrosscheck" = "Sex Crosscheck";
"incdOnboarding.results.check.sharpnessBack" = "Sharpness (back side)";
"incdOnboarding.results.check.sharpnessFront" = "Sharpness (front side)";
"incdOnboarding.results.check.tamperCheck" = "Tamper Check";
"incdOnboarding.results.check.user_already_in_database" = "User already in database";
"incdOnboarding.results.check.visibleColorResponse" = "Visible Color Response";
"incdOnboarding.results.check.visiblePattern" = "Visible Pattern";
"incdOnboarding.results.check.visiblePhotoFeatures" = "Visible Photo Features";
"incdOnboarding.results.frTitle" = "Facial Recognition";
"incdOnboarding.results.governmentValidationOcrTitle" = "OCR Validation";
"incdOnboarding.results.governmentValidationSelfieMatchingTitle" = "Photo Comparison";
"incdOnboarding.results.governmentValidationTitle" = "Government + Incode Check";
"incdOnboarding.results.idScanTitle" = "Incode ID";
"incdOnboarding.results.idSpecificTitle" = "ID Specific";
"incdOnboarding.results.idVerificationTitle" = "ID Verification";
"incdOnboarding.results.ineTitle" = "Government Check Data";
"incdOnboarding.results.ineValidation.faceMatch" = "It's a match!";
"incdOnboarding.results.ineValidation.noFaceMatch" = "No match";
"incdOnboarding.results.livenessScore" = "Liveness Score";
"incdOnboarding.results.livenessTitle" = "Liveness Check";
"incdOnboarding.results.manualCheckNeeded" = "Manual check needed";
"incdOnboarding.results.photoQuality" = "Photo Quality";
"incdOnboarding.results.photoSecurityQualityTitle" = "Photo security & quality";
"incdOnboarding.results.selfieTitle" = "Incode Selfie";
"incdOnboarding.results.userAlreadyInDB" = "User already in database";
"incdOnboarding.selfie.cameraActivated" = "Front camera activated";
"incdOnboarding.selfie.switchingToManualCapture" = "Double tap anywhere on the screen to capture";
"incdOnboarding.selfie.adjustingCamera" = "Please wait, adjusting camera";
"incdOnboarding.selfie.autoCapturing" = "Don't move!\nTaking photo…";
"incdOnboarding.selfie.badAngleXY" = "Look straight";
"incdOnboarding.selfie.badAngleZ" = "Don\'t tilt your head";
"incdOnboarding.selfie.badAngleZ.voiceOver" = "Don\'t tilt your head";
"incdOnboarding.selfie.badFaceQuality" = "Clean the camera and hold still";
"incdOnboarding.selfie.button.takePhoto" = "TAKE PHOTO";
"incdOnboarding.selfie.done" = "Success!";
"incdOnboarding.selfie.eyesClosed" = "Keep your eyes open";
"incdOnboarding.selfie.eyesClosed.voiceOver" = "Keep your eyes open";
"incdOnboarding.selfie.faceOutsideBounds" = "Look at the camera";
"incdOnboarding.selfie.getReady" = "Get ready…";
"incdOnboarding.selfie.lowImageQuality" = "Ensure your face is clearly visible with no obstructions";
"incdOnboarding.selfie.hasFaceMask" = "Take off the mask";
"incdOnboarding.selfie.hasFaceMask.voiceOver" = "Take off your face mask";
"incdOnboarding.selfie.hasFaceMask.title" = "Face mask detected";
"incdOnboarding.selfie.hasFaceMask.subtitle" = "Take off your face mask to ensure a clear capture";
"incdOnboarding.selfie.hasHeadwear.title" = "Head covered";
"incdOnboarding.selfie.hasHeadwear.subtitle" = "Remove head coverings such as hats and caps";
"incdOnboarding.selfie.hasLenses.title" = "Lenses detected";
"incdOnboarding.selfie.hasLenses.subtitle" = "Take off your glasses to ensure a clear capture";
"incdOnboarding.selfie.eyesClosed.title" = "Eyes closed";
"incdOnboarding.selfie.eyesClosed.subtitle" = "Keep your eyes open during the capture";
"incdOnboarding.selfie.tooDark.title" = "Too dark";
"incdOnboarding.selfie.tooDark.subtitle" = "Adjust the lightning or move closer to a light source";
"incdOnboarding.selfie.faceNotAligned.title" = "Face not aligned";
"incdOnboarding.selfie.faceNotAligned.subtitle" = "Make sure you align your face with the white silhouette";
"incdOnboarding.selfie.spoofDetected.title" = "Selfie processing failed";
"incdOnboarding.selfie.spoofDetected.subtitle" = "We couldn’t process your selfie. Please try again";
"incdOnboarding.selfie.result.fail.buttonTitle.continue" = "Continue";
"incdOnboarding.selfie.result.fail.buttonTitle.tryAgain" = "Try again";
"incdOnboarding.selfie.result.fail.subtitle" = "Your selfie will be manually reviewed later";
"incdOnboarding.selfie.hasHeadwear" = "Take your hat off";
"incdOnboarding.selfie.hasLenses" = "Take off your glasses";
"incdOnboarding.selfie.hasLenses.voiceOver" = "Take off your glasses";
"incdOnboarding.selfie.login.fail" = "Access denied";
"incdOnboarding.selfie.login.success" = "Success";
"incdOnboarding.selife.login.manualFaceNotFound" = "Face not detected";
"incdOnboarding.selfie.login.userNotFound" = "User not found";
"incdOnboarding.selfie.lookAtTheCamera" = "Align your face within the white silhouette";
"incdOnboarding.selfie.lookAtTheCameraManual" = "Align your face within the silhouette and press the button";
"incdOnboarding.selfie.faceNotFound" = "Align your face within the silhouette and look at the camera";
"incdOnboarding.selfie.ageAssurance.lookAtTheCamera" = "Look at the camera to estimate your age";
"incdOnboarding.selfie.multipleFacesFound" = "Make sure you are the only person in the frame";
"incdOnboarding.selfie.spoofDetected" = "Poor conditions for selfie,\ntry in another place";
"incdOnboarding.selfie.tooBlurry" = "Too blurry";
"incdOnboarding.selfie.tooBlurry.voiceOver" = "Image not focused, adjust";
"incdOnboarding.selfie.tooClose" = "Move away";
"incdOnboarding.selfie.tooClose.voiceOver" = "Move phone further, please";
"incdOnboarding.selfie.tooDark" = "Too dark. Face not detected";
"incdOnboarding.selfie.tooFar" = "Move closer";
"incdOnboarding.selfie.tooFar.voiceOver" = "Move phone closer to you, please";
"incdOnboarding.selfie.tryAgain" = "Try again";
"incdOnboarding.selfie.unknown" = "Look at the camera";
"incdOnboarding.selfie.customText" = "";
"incdOnboarding.selfie.audioRecordingPermissionsDeclined" = "Audio permissions declined.";
"incdOnboarding.selfieTips.subtitle" = "Keep a neutral expression, find balanced light and remove any glasses and hats";
"incdOnboarding.selfieTips.title" = "Let's take a selfie";
"incdOnboarding.selfieTips.voiceOver" = "Place your phone by arm distance in front of your face, and the image will be taken automatically";
"incdOnboarding.selfieTips.ageAssurance.title" = "Age Verification";
"incdOnboarding.selfieTips.ageAssurance.subtitle" = "Please take a selfie to estimate your age, your data is private, your face is not stored or shared";
"incdOnboarding.selfieTips.ageAssurance.footer" = "Keep a neutral expression, find balanced light and remove any glasses and hats";
"incdOnboarding.signature.btnClear" = "Clear canvas";
"incdOnboarding.signature.title" = "Digital signature";
"incdOnboarding.signature.description" = "Please sign in the box below to create your digital signature for signing the document.";
"incdOnboarding.signature.signDocument.acceptButton" = "Sign And Continue";
"incdOnboarding.signature.signDocument.declineButton" = "I don’t want to sign";
"incdOnboarding.signature.signDocument.dialog.dontSign" = "Don't sign";
"incdOnboarding.signature.signDocument.dialog.message" = "To be able to continue please sign the documents";
"incdOnboarding.signature.signDocument.dialog.sign" = "Sign";
"incdOnboarding.signature.signDocument.dialog.title" = "Signature is requried";
"incdOnboarding.signature.signHere" = "Please sign here";
"incdOnboarding.stepUp.invalidDigits" = "Invalid last 4 digits";
"incdOnboarding.stepUp.title" = "Enter last 4 digits of your phone";
"incdOnboarding.screenRecordingsUpload.title" = "All good, one more thing";
"incdOnboarding.screenRecordingsUpload.uploadCell.title" = "Session upload";
"incdOnboarding.screenRecordingsUpload.uploadCell.subtitle" = "Uploading %@%%";
"incdOnboarding.tips.continueButton" = "CONTINUE";
"incdOnboarding.userConsent.acceptBtn" = "I Agree";
"incdOnboarding.userConsent.checkboxLabel" = "I have read and agree to Incode’s [Privacy Policy](https://policies.incodesmile.com/privacy-policy/) and Incode’s [Terms of Use](https://policies.incodesmile.com/terms-of-use/).";
"incdOnboarding.userConsent.dialog.continue" = "Continue";
"incdOnboarding.userConsent.dialog.quitProcess" = "Quit";
"incdOnboarding.userConsent.defaultTitle" = "Consent for Biometric Processing";
"incdOnboarding.userConsent.defaultSubtitle" = "I consent to the capture, collection, enrollment, use, retention, processing, and disclosure of a scan of my face geometry (i.e. faceprint) and information derived from the barcode of the identification card I provide as follows:<br>
<br>
- **Purpose:** verifying my identity pursuant to Incode’s [Privacy Policy](https://policies.incodesmile.com/privacy-policy/)<br>
<br>
- **Data Collected:** facial geometry/faceprint/image; data contained in/obtained by scanning the barcode of a government-issued identification card provided by me (including, e.g., name, address, DOB, license type, sex, height, weight, eye color, ID number)<br>
<br>
- **Retention Period:** earliest of: (i) so long as necessary for identity verification purposes; or (ii) stated [Data Retention Period](https://policies.incodesmile.com/privacy-policy/#data-retention) (e.g. IL (3 yrs following last engagement), TX (1 yr following exhaustion of purpose)).";
"incdOnboarding.videoSelfie.audioPermission.allowPermission" = "Allow permission";
"incdOnboarding.videoSelfie.audioPermission.askTitle" = "We need your verbal confirmation of accepting the terms that require Microphone Permission";
"incdOnboarding.videoSelfie.audioPermission.askTitleBold" = "Microphone Permission";
"incdOnboarding.videoSelfie.audioPermission.continue" = "Continue";
"incdOnboarding.videoSelfie.audioPermission.deniedTitle" = "We need your verbal confirmation that require Microphone Permission";
"incdOnboarding.videoSelfie.audioPermission.deniedTitleBold" = "Microphone Permission";
"incdOnboarding.videoSelfie.authorization.authorize" = "I authorize";
"incdOnboarding.videoSelfie.authorization.dontAuthorize" = "Don’t authorize";
"incdOnboarding.videoSelfie.authorization.title" = "Do you authorize %@\nto record you to validate\nyour information?";
"incdOnboarding.videoSelfie.screenRecordingDenied.subtitle" = "All the progress will be lost.";
"incdOnboarding.videoSelfie.screenRecordingDenied.quit" = "Quit";
"incdOnboarding.videoSelfie.screenRecordingDenied.goBack" = "Go Back";
"incdOnboarding.videoSelfie.btnContinue" = "CONTINUE";
"incdOnboarding.videoSelfie.btnContinueUnderlined" = "Continue";
"incdOnboarding.videoSelfie.btnTryAgain" = "TRY AGAIN";
"incdOnboarding.videoSelfie.id.detected" = "All good!";
"incdOnboarding.videoSelfie.id.frontFaceMatchFailed" = "ID photo verification failed, please try again";
"incdOnboarding.videoSelfie.id.frontFaceMatchFailed.skip" = "ID photo verification failed";
"incdOnboarding.videoSelfie.id.frontNotValid" = "ID scan failed, please try again";
"incdOnboarding.videoSelfie.id.frontNotValid.skip" = "ID scan failed";
"incdOnboarding.videoSelfie.id.ocrNotValid" = "Name verification failed, please try again";
"incdOnboarding.videoSelfie.id.ocrNotValid.skip" = "Name verification failed";
"incdOnboarding.videoSelfie.id.processing" = "Processing…";
"incdOnboarding.videoSelfie.id.openingCamera" = "Opening camera…";
"incdOnboarding.videoSelfie.id.showBack" = "Now show back of ID";
"incdOnboarding.videoSelfie.id.showFront" = "Show front of ID";
"incdOnboarding.videoSelfie.id.showPassport" = "Show passport page with photo";
"incdOnboarding.videoSelfie.id.typeMatchFailed" = "ID type mismatch, please show the same ID";
"incdOnboarding.videoSelfie.id.typeMatchFailed.skip" = "ID type mismatch";
"incdOnboarding.videoSelfie.poa.documentDescription" = "Proof of Address";
"incdOnboarding.videoSelfie.poa.title" = "Show your %@\nand then press Continue";
"incdOnboarding.videoSelfie.questions.tapToAnswer" = "Tap to answer";
"incdOnboarding.videoSelfie.questions.tapWhenDone" = "Tap when done";
"incdOnboarding.videoSelfie.questions.tapToSpeak" = "Tap to speak";
"incdOnboarding.videoSelfie.questions.answerOutLoud" = "Please answer out loud";
"incdOnboarding.videoSelfie.questions.sayOutLoud" = "Please say out loud";
"incdOnboarding.videoSelfie.questions.onceAnsweredTap" = "Once you’ve answered tap continue:";
"incdOnboarding.videoSelfie.questions.start.readyButton" = "IM READY TO ANSWER";
"incdOnboarding.videoSelfie.questions.start.title" = "We need you to verbally confirm that you accept the terms";
"incdOnboarding.videoSelfie.questions.terms.error.suggestion1" = "Be sure to be in a place with less ambient noise";
"incdOnboarding.videoSelfie.questions.terms.error.suggestion2" = "Preferably use the microphone of your headphones";
"incdOnboarding.videoSelfie.questions.terms.error.suggestion3" = "Be very clear with the pronunciation";
"incdOnboarding.videoSelfie.questions.terms.error.title" = "Something went wrong";
"incdOnboarding.videoSelfie.questions.terms.onceAnsweredTap" = "Once you’ve accepted tap continue:";
"incdOnboarding.videoSelfie.questions.terms.processing" = "Processing…";
"incdOnboarding.videoSelfie.questions.terms.success" = "All good!";
"incdOnboarding.videoSelfie.questions.terms.title" = "Say\n“%@”\nout loud";
"incdOnboarding.videoSelfie.questions.terms.title.default" = "I accept the terms";
"incdOnboarding.videoSelfie.selfie.continueWithError" = "Continuing the flow, please wait...";
"incdOnboarding.videoSelfie.selfie.error" = "Something wrong, try again";
"incdOnboarding.videoSelfie.selfie.faceCamera" = "Face the camera";
"incdOnboarding.videoSelfie.selfie.faceNotRecognized" = "No match, try again";
"incdOnboarding.videoSelfie.selfie.faceRecognized" = "Looking good!";
"incdOnboarding.videoSelfie.selfie.processing" = "Processing…";
"incdOnboarding.videoSelfie.tutorial.continueButton" = "Start video selfie";
"incdOnboarding.videoSelfie.tutorial.subtitle" = "For legal reasons, we must recheck your documents. You'll be requested to:";
"incdOnboarding.videoSelfie.tutorial.title" = "Video selfie";
"incdOnboarding.videoSelfie.tutorial.step.selfie" = "Look at your front camera";
"incdOnboarding.videoSelfie.tutorial.step.idFront" = "Scan the front of ID";
"incdOnboarding.videoSelfie.tutorial.step.idBack" = "Scan the back of ID";
"incdOnboarding.videoSelfie.tutorial.step.passport" = "Scan the passport";
"incdOnboarding.videoSelfie.tutorial.step.poa" = "Scan your proof of address";
"incdOnboarding.videoSelfie.tutorial.step.recordingPermissions" = "Give recording permissions";
"incdOnboarding.videoSelfie.tutorial.step.questions" = "Answer some questions out loud";
"incdOnboarding.videoSelfie.tutorial.step.voiceConsent" = "Speak words displayed on the screen";
"incdOnboarding.videoSelfie.videoUpload.error" = "Something went wrong";
"incdOnboarding.videoSelfie.videoUpload.success" = "Video Successfully Uploaded";
"incdOnboarding.videoSelfie.videoUpload.uploading" = "Uploading video…";
"incdOnboarding.videoSelfie.videoUpload.switchingToBackCamera" = "Switching to back camera...";
"incdOnboarding.videoSelfie.videoUpload.switchingToFrontCamera" = "Switching to front camera...";
"incdOnboarding.videoSelfie.customText" = "";
"incdOnboarding.videoSelfie.recordingPermissions.title1" = "For legal reasons, we need you to";
"incdOnboarding.videoSelfie.recordingPermissions.title2" = "Allow Record Screen & Microphone";
"incdOnboarding.videoSelfie.recordingPermissions.title2disabledAudio" = "Allow Record Screen";
"incdOnboarding.videoSelfie.voiceConsent.recording" = "Recording...";
"incdOnboarding.videoSelfie.voiceConsent.reminderTitle" = "Finished speaking?";
"incdOnboarding.videoSelfie.voiceConsent.reminderInfo" = "Did you say \"I accept the Terms\"? If you haven’t, please try again";
"incdOnboarding.videoSelfie.voiceConsent.reminderConfirmation" = "Yes, I'm done";
"incdOnboarding.videoSelfie.voiceConsent.reminderTryAgain" = "Try again";
"incdOnboarding.videoSelfie.voiceConsent.processing.processing" = "Processing...";
"incdOnboarding.videoSelfie.voiceConsent.processing.allGood" = "All good!";
"incdOnboarding.videoSelfie.voiceConsent.processing.tryAgain" = "Please, try again.";
"incdOnboarding.videoSelfie.voiceConsent.faceCapture.prompt" = "Center face in frame to continue";
"incdOnboarding.videoSelfie.voiceConsent.faceCapture.failure.faceNotDetected" = "Center face in frame to continue";
"incdOnboarding.videoSelfie.voiceConsent.faceCapture.failure.notMatched" = "Faces do no match";
"incdOnboarding.videoSelfie.processing.title" = "Processing...";
"incdOnboarding.videoSelfie.processing.body" = "Kindly hold on and refrain from closing this, as it may take some time to finish..";
"incdOnboarding.videoSelfie.processing.quitProcess" = "Quit process";
"incdOnboarding.videoSelfie.processing.retry" = "Retry";
"incdOnboarding.videoSelfie.processing.allGood" = "All good!";
"incdOnboarding.videoSelfie.processing.somethingWentWrong" = "Something went wrong...";
"incdOnboarding.videoSelfie.processing.noInternetConnection" = "No internet connection";
"incdOnboarding.videoSelfie.processing.processingFailed.title" = "Processing failed...";
"incdOnboarding.videoSelfie.processing.processingFailed.body" = "Something went wrong processing your video selfie, please try again";

"incdOnboarding.watchlist.validation.failure" = "Couldn't process information";
"incdOnboarding.watchlist.validation.inprogress" = "Processing information...";
"incdOnboarding.watchlist.validation.success" = "Success";
"incdOnboarding.mlConsent.checkboxLabel" = "I confirm that I have read and accept (optional)";
"incdOnboarding.mlConsent.continueBtn" = "Continue";
"incdOnboarding.snack.bar.no.internet.message" = "No internet connection";
"incdOnboarding.snack.bar.no.internet.button" = "Retry";
"incdOnboarding.intro.check.id" = "Valid ID or Passport";
"incdOnboarding.intro.check.passport" = "Passport";
"incdOnboarding.intro.check.insuranceCard" = "Valid Insurance Card";
"incdOnboarding.intro.check.proofOfAddress" = "Recent Proof of Address";
"incdOnboarding.intro.check.selfie" = "To take a Selfie";
"incdOnboarding.ocr.title" = "Please check your data";
"incdOnboarding.ocr.documentNumber.title" = "Document number";
"incdOnboarding.ocr.documentNumber.placeholder" = "";
"incdOnboarding.ocr.expiryDate.title" = "Expiry date";
"incdOnboarding.ocr.expiryDate.placeholder" = "Expiry date";
"incdOnboarding.ocr.birthDate.title" = "Date of birth";
"incdOnboarding.ocr.birthDate.placeholder" = "Date of birth";
"incdOnboarding.ocr.fullName.title" = "Full name";
"incdOnboarding.ocr.gender.title" = "Gender";
"incdOnboarding.ocr.gender.female" = "Female";
"incdOnboarding.ocr.gender.male" = "Male";
"incdOnboarding.ocr.address.title" = "Address";
"incdOnboarding.ocr.continueButton" = "Continue";
"incdOnboarding.nfc.id.symbolConfirmation.title" = "Is this symbol visible on the front or back of your ID?";
"incdOnboarding.nfc.id.symbolConfirmation.yes" = "YES";
"incdOnboarding.nfc.id.symbolConfirmation.no" = "NO";
"incdOnboarding.nfc.id.tutorial.title" = "Read the chip on the ID";
"incdOnboarding.nfc.id.tutorial.instruction1.title" = "1. Hold the ID against the camera.";
"incdOnboarding.nfc.id.tutorial.instruction1.highlighted" = "against the camera";
"incdOnboarding.nfc.id.tutorial.instruction2.title" = "2. Make sure your ID and phone are touching.";
"incdOnboarding.nfc.id.tutorial.instruction2.highlighted" = "touching";
"incdOnboarding.nfc.id.tutorial.instruction3.title" = "3. Hold still until scanning is complete.";
"incdOnboarding.nfc.id.tutorial.instruction3.highlighted" = "Hold still";
"incdOnboarding.nfc.id.tutorial.scanButtonTitle" = "Start scanning";
"incdOnboarding.nfc.id.tutorial.tryAgainButtonTitle" = "TRY AGAIN";
"incdOnboarding.nfc.id.tutorial.helpButtonTitle" = "HELP";
"incdOnboarding.nfc.id.help.title" = "Common issues";
"incdOnboarding.nfc.id.help1" = "Phone is far away from the document";
"incdOnboarding.nfc.id.help2" = "Moving the phone while scanning has initiated";
"incdOnboarding.nfc.id.help3" = "Phone cover interferes with the scan";
"incdOnboarding.nfc.id.help.tryAgainButton" = "Ok, try again";
"incdOnboarding.nfc.passport.symbolConfirmation.title" = "Is this symbol visible on your passport cover?";
"incdOnboarding.nfc.passport.symbolConfirmation.yes" = "YES";
"incdOnboarding.nfc.passport.symbolConfirmation.no" = "NO";
"incdOnboarding.nfc.passport.tutorial.title" = "Let’s scan the passport chip";
"incdOnboarding.nfc.passport.tutorial.subtitle" = "Hold your phone close to the front cover.";
"incdOnboarding.nfc.passport.tutorial.subtitleHighlighted" = "front cover.";
"incdOnboarding.nfc.passport.tutorial.buttonTitle" = "Start scanning";
"incdOnboarding.nfc.passport.carouselTutorial.helpButtonTitle" = "HELP";
"incdOnboarding.nfc.passport.carouselTutorial.page1.title" = "Let’s scan the passport chip";
"incdOnboarding.nfc.passport.carouselTutorial.page2.title" = "If that didn’t work..";
"incdOnboarding.nfc.passport.carouselTutorial.page3.title" = "If that still didn’t work..";
"incdOnboarding.nfc.passport.carouselTutorial.page4.title" = "If that still didn’t work..";
"incdOnboarding.nfc.passport.carouselTutorial.page1.subtitle" = "Hold your phone close to the front cover of your passport. Remove it from any folder or cover.";
"incdOnboarding.nfc.passport.carouselTutorial.page2.subtitle" = "Try holding your phone close to the first page of your passport. If nothing happens, try slowly moving your phone across the page.";
"incdOnboarding.nfc.passport.carouselTutorial.page3.subtitle" = "Try holding your phone close to the photo page of your passport. If nothing happens, try slowly moving your phone across the page.";
"incdOnboarding.nfc.passport.carouselTutorial.page4.subtitle" = "Try holding your phone close to the inner back page of your passport. If nothing happens, try moving your phone slightly across the page.";
"incdOnboarding.nfc.passport.carouselTutorial.page1.subtitle.highlighted" = "front cover";
"incdOnboarding.nfc.passport.carouselTutorial.page2.subtitle.highlighted" = "first page";
"incdOnboarding.nfc.passport.carouselTutorial.page3.subtitle.highlighted" = "photo page";
"incdOnboarding.nfc.passport.carouselTutorial.page4.subtitle.highlighted" = "inner back";
"incdOnboarding.nfc.passport.carouselTutorial.tryAgainButton" = "TRY AGAIN";
"incdOnboarding.nfc.passport.help.title" = "Common Issues";
"incdOnboarding.nfc.passport.help1" = "Passport is in a cover";
"incdOnboarding.nfc.passport.help2" = "Phone is far away from the passport";
"incdOnboarding.nfc.passport.help3" = "Chip is on another page in the passport";
"incdOnboarding.nfc.passport.help4" = "Moving the phone while scanning has initiated";
"incdOnboarding.nfc.passport.help5" = "Phone cover interferes with the scan";
"incdOnboarding.nfc.passport.help.tryAgainButton" = "Ok, try again";
"incdOnboarding.nfc.scan.waitingForDocument" = "Once you see a change on the screen, keep the phone steady";
"incdOnboarding.nfc.scan.reading" = "Scanning, hold still…";
"incdOnboarding.nfc.scan.error" = "We couldn't scan the chip";
"incdOnboarding.nfc.scan.successfulRead" = "Document read successfully";
"incdOnboarding.nfc.processing.success" = "Document chip scan success";
"incdOnboarding.nfc.processing.fail" = "Unable to authenticate document chip";
"incdOnboarding.nfc.processing.description" = "We’re verifying your identity";
"incdOnboarding.nfc.processing.status" = "Hold on a sec…";
"incdOnboarding.nfc.result.fail.message" = "Unable to authenticate chip";
"incdOnboarding.nfc.result.fail.buttonTitle" = "Continue";
"incdOnboarding.otp.verification.sms.title" = "Verify your phone number";
"incdOnboarding.otp.verification.email.title" = "Verify your email address";
"incdOnboarding.otp.verification.sms.subtitle" = "Please enter the code we’ve sent via SMS";
"incdOnboarding.otp.verification.email.subtitle" = "Please enter the code we’ve sent via Email";
"incdOnboarding.otp.verification.verifying" = "Verifying..";
"incdOnboarding.otp.verification.code.incorrect" = "Incorrect code, please try again.";
"incdOnboarding.otp.verification.try.again1" = "Didn’t receive the code? ";
"incdOnboarding.otp.verification.try.again2" = "Try again in %.0f seconds";
"incdOnboarding.otp.verification.try.again.button" = "Try again";
"incdOnboarding.otp.verification.try.again.or.label" = "or";
"incdOnboarding.otp.verification.change.phone.button" = "Change phone number";
"incdOnboarding.otp.verification.change.email.button" = "Change email";
"incdOnboarding.ekyb.input.title" = "Fill out your business credentials";
"incdOnboarding.ekyb.input.businessName" = "Business name";
"incdOnboarding.ekyb.input.address1" = "Street";
"incdOnboarding.ekyb.input.address2" = "Address 2 (optional)";
"incdOnboarding.ekyb.input.houseNo" = "House No.";
"incdOnboarding.ekyb.input.city" = "City";
"incdOnboarding.ekyb.input.state" = "State";
"incdOnboarding.ekyb.input.postalCode" = "Postal code";
"incdOnboarding.ekyb.input.taxId" = "Tax Id";
"incdOnboarding.ekyb.input.country" = "Country";
"incdOnboarding.ekyb.input.button" = "Continue";
"incdOnboarding.ekyb.status.label.processing" = "Processing..";
"incdOnboarding.ekyb.input.label.success" = "Success!";
"incdOnboarding.ekyb.input.label.fail" = "Business not verified..";
"incdOnboarding.aes.terms1.title" = "I accept the terms and conditions of the Trust Center";
"incdOnboarding.aes.terms2.title" = "I wish to sign the contract electronically. Please generate the required certificate for me";
"incdOnboarding.aes.terms3.title" = "I would like to sign the displayed contract in a legally binding way by means of the ensuing signature procedures";
"incdOnboarding.aes.confirmSignature.title" = "Confirm your signature";
"incdOnboarding.aes.confirmSignature.subtitle" = "The following documents will be signed"; 
"incdOnboarding.aes.confirmSignature.continue" = "Continue";
"incdOnboarding.aes.confirmSignature.continueAndFinish" = "Continue and finish";
"incdOnboarding.aes.confirmedSignature.title" = "Confirmed your signature";
"incdOnboarding.aes.confirmedSignature.subtitle" = "The following documents were signed";
"incdOnboarding.aes.viewDocument" = "View doc";
"incdOnboarding.aes.result.success" = "Success!";
"incdOnboarding.aes.result.failure" = "Something went wrong.";
"incdOnboarding.aes.loading.title" = "Document signing in progress. Please wait, this may take some time.";
"incdOnboarding.aes.pdfView.title" = "Contract";
"incdOnboarding.aes.pdfView.close" = "Close";
"incdOnboarding.ekyc.input.label.fillYourCredentials" = "Fill out your credentials";
"incdOnboarding.ekyc.input.label.firstName" = "First Name";
"incdOnboarding.ekyc.input.label.surname" = "Surname";
"incdOnboarding.ekyc.input.label.email" = "Email";
"incdOnboarding.ekyc.input.label.phone" = "Phone";
"incdOnboarding.ekyc.input.label.street" = "Street";
"incdOnboarding.ekyc.input.label.postalCode" = "Postal code";
"incdOnboarding.ekyc.input.label.city" = "City";
"incdOnboarding.ekyc.input.label.addressCountry" = "Country";
"incdOnboarding.ekyc.input.label.state" = "State";
"incdOnboarding.ekyc.input.label.ssn" = "Social security number";
"incdOnboarding.ekyc.input.label.dateOfBirth" = "Date of birth";
"incdOnboarding.ekyc.input.label.cpf" = "CPF";
"incdOnboarding.ekyc.input.validation.phoneFormatNotValid" = "Invalid phone format";
"incdOnboarding.ekyc.input.validation.phoneRequired" = "Phone is required";
"incdOnboarding.ekyc.input.validation.emailFormatNotValid" = "Invalid email format";
"incdOnboarding.ekyc.input.validation.firstNameRequired" = "Name is required";
"incdOnboarding.ekyc.input.validation.surnameRequired" = "Surname is required";
"incdOnboarding.ekyc.input.validation.emailRequired" = "Email is required";
"incdOnboarding.ekyc.input.validation.streetRequired" = "Street is required";
"incdOnboarding.ekyc.input.validation.cityRequired" = "City is required";
"incdOnboarding.ekyc.input.validation.houseRequired" = "House number is required";
"incdOnboarding.ekyc.input.validation.postalCodeIsRequired" = "Postal code is required";
"incdOnboarding.ekyc.input.validation.postalCodeLimitUS" = "Please enter a 5 or 9 digit Postal Code";
"incdOnboarding.ekyc.input.validation.postalCodeLimitBrasil" = "Please enter a 5 or 8 digit Postal Code";
"incdOnboarding.ekyc.input.validation.stateRequired" = "State is required";
"incdOnboarding.ekyc.input.validation.ssnRequired" = "SSN is required";
"incdOnboarding.ekyc.input.validation.ssnFormatNotValid" = "Please enter a valid number";
"incdOnboarding.ekyc.input.validation.dobRequired" = "Date of birth is required";
"incdOnboarding.ekyc.input.validation.countryRequired" = "Country is required";
"incdOnboarding.ekyc.input.label.nationality" = "Nationality";
"incdOnboarding.ekyc.input.selector.nationality.brazilian" = "Brazilian";
"incdOnboarding.ekyc.input.selector.nationality.naturalizedBrazilian" = "Naturalized Brazilian";
"incdOnboarding.ekyc.input.selector.nationality.foreigner" = "Foreigner";
"incdOnboarding.ekyc.input.selector.nationality.brazilianbornAbroad" = "Brazilian Born Abroad";
"incdOnboarding.ekyc.success" = "Verified!";
"incdOnboarding.processing.loading.title" = "Processing!";
"incdOnboarding.processing.success" = "Verified!";
"incdOnboarding.processing.failure" = "Something went wrong";
"incdOnboarding.processing.loading.subtitle" = "This might take a while, please keep the app opened..";
"incdOnboarding.processing.loading.success" = "Success!";
"incdOnboarding.aes.uploadDocument.title" = "Upload a document to sign";
"incdOnboarding.aes.uploadDocument.subtitle" = "PDF format supported";
"incdOnboarding.aes.uploadDocument.continue" = "Continue";
"incdOnboarding.aes.uploadDocument.empty" = "Empty";
"incdOnboarding.aes.uploadDocument.addButton" = "Add document";
"incdOnboarding.aes.uploadDocument.removeButton" = "Remove";
"incdOnboarding.aes.uploadDocument.uploadingTitle" = "Uploading Document";
"incdOnboarding.biometricConsent.subtitle" = "Your verification is powered by Incode. To comply with state regulations, we need your consent for biometric processing.";
"incdOnboarding.dynamicform.textview.subtitle" = "Your answer";
"incdOnboarding.dynamicform.textview.placeholder" = "Write your answer here..";
"incdOnboarding.dynamicform.countryPicker.title" = "What is your nationality?";
"incdOnboarding.dynamicform.countryPicker.subTitle" = "Country";
"incdOnboarding.dynamicform.countryPicker.placeholder" = "Search for country";

"incdOnboarding.qes.terms1.title" = "I have read and agree to Incode’s [Privacy Policy](https://policies.incodesmile.com/privacy-policy/) and Incode’s [Terms of Use](https://policies.incodesmile.com/terms-of-use/).";
"incdOnboarding.qes.terms2.title" = "I agree to the issuance of the required certificate and to signing this document electronically.";
"incdOnboarding.qes.signed" = "Your document has been signed.";
"incdOnboarding.qes.downloadDocument.title" = "Download your document";
"incdOnboarding.qes.downloadDocument.subtitle" = "Your signed document is ready. Save it securely for your records or to share as needed.";
"incdOnboarding.qes.downloadDocument.button" = "DOWNLOAD DOCUMENT";
"incdOnboarding.qes.finish" = "FINISH";

// Kiosk

"startOver" = "Start over";
"sms" = "You’ll get an SMS when it’s your turn.";
"waiting.info" = "Waiting time: ";
"waiting.minutes" = "mins";

"appStart.noInternetConnection" = "No internet connection";

"welcome.headline" = "How can we help?";

"phoneNumber.instructionFormat" = "Enter %@:";
"phoneNumber.phone" = "phone number";
"phoneNumber.tryAnotherNumber" = "Try another number";

"captureID.frontID.title" = "Place your ID in the tray";
"captureID.frontID.subtitle" = "Photo-side should face up";
"captureID.frontID.footerButton" = "I don't have my ID";
"captureID.backID.title" = "Great! Now flip the ID around";
"captureID.backID.subtitle.down" = "Photo-side should face down";
"captureID.backID.subtitle.up" = "Photo-side should face up";
"captureID.backID.footerButton" = "The back of my ID is damaged";
"captureID.checking.title" = "Checking your ID";

"unableToScan.frontID.title" = "Couldn’t read the front of your ID";
"unableToScan.frontID.footerButton" = "I don’t have my ID";
"unableToScan.backID.title" = "Couldn’t read the back of your ID";
"unableToScan.backID.footerButton" = "The back of my ID is damaged";
"unableToScan.tryAgain" = "Try again";

"ableToScan.frontID.title" = "SCAN OK";
"ableToScan.backID.title" = "SCAN OK";
"ableToScan.backID.subtitle" = "REMOVE YOUR ID";
"abletToScan.flipID.title" = "FLIP THE ID AROUND";

"addPhone.err.phoneAlreadyExists" = "User with this number already exists.";

"feedback.lensesDetected.err" = "Take off your glasses.";
"feedback.livenessFailed.err" = "Liveness check failed.";

"incdWave.addFace.button.takePhoto" = "TAKE PHOTO";
"incdWave.addFace.tryAgain" = "Try again";
"incdWave.addFace.spoofDetected" = "Poor conditions for selfie,\ntry in another place";
"incdWave.addFace.getReady" = "Get ready…";
"incdWave.addFace.tooClose" = "Move away from\nthe camera";
"incdWave.addFace.tooFar" = "Move closer to\nthe camera";
"incdWave.addFace.lookAtTheCamera" = "Look at the camera\nto verify you’re you";
"incdWave.addFace.tooDark" = "Too dark. Face not detected";
"incdWave.addFace.tooBlurry" = "Couldn't capture.\nTry moving somewhere else";
"incdWave.addFace.badAngleXY" = "Look straight";
"incdWave.addFace.badAngleZ" = "Don\'t tilt your head";
"incdWave.addFace.badFaceQuality" = "Too blurry, clean the camera and hold still";
"incdWave.addFace.eyesClosed" = "Keep your eyes open";
"incdWave.addFace.faceOutsideBounds" = "Look at the camera";
"incdWave.addFace.hasLenses" = "Take off your glasses";
"incdWave.addFace.multipleFacesFound" = "Make sure you are the only person in the frame";
"incdWave.addFace.adjustingCamera" = "Please wait, adjusting camera";
"incdWave.addFace.hasFaceMask" = "Take off the mask";
"incdWave.addFace.timedOut" = "Session expired";
"incdWave.addFace.unknown" = "Look at the camera";
"incdWave.addFace.done" = "Done";
"incdWave.addFace.login.success" = "Success";
"incdWave.addFace.login.fail" = "Access denied";
"incdWave.addFace.login.customerTokenInvalid" = "Something went wrong";
"incdWave.addFace.login.customerTokenMissing" = "Something went wrong";
"incdWave.addFace.login.userNotFound" = "Something went wrong";

"incdWave.uploading" = "Uploading…";
"incdWave.error.title" = "Something went wrong";
"incdWave.tryAgain" = "Please try again";
"face.match.result.success" = "Success!";
"face.match.result.fail" = "Sorry, please try again";

"idCamera.title.front" = "Put photo side of ID in frame";
"idCamera.title.back" = "Put back side of ID in frame";
"idCamera.subtitle" = "Make sure the document it's well\U2011lit and clear to read.";

// - New Capture Experience

// Global
"incdOnboarding.verifiedBy" = "verified by";

// IDDocumentSelection
"incdOnboarding.idDocumentSelection.title" = "Choose the document for scanning";
"incdOnboarding.idDocumentSelection.id.title" = "Identity Card";
"incdOnboarding.idDocumentSelection.id.subtitle" = "National Identity Card,\nor Driver's License";
"incdOnboarding.idDocumentSelection.passport.title" = "Passport";
"incdOnboarding.idDocumentSelection.passport.subtitle" = "Your country Passport";

// IDDocumentTutorial
"incdOnboarding.idDocumentTutorial.id.title" = "Scan your ID";
"incdOnboarding.idDocumentTutorial.id.subtitle" = "Ensure your ID is readable";
"incdOnboarding.idDocumentTutorial.passport.title" = "Scan your Passport";
"incdOnboarding.idDocumentTutorial.passport.subtitle" = "Ensure your Passport is readable";
"incdOnboarding.idDocumentTutorial.hint" = "The photo will be taken automatically";
"incdOnboarding.idDocumentTutorial.button" = "Let's scan";

// IDDocumentPermission
"incdOnboarding.IDDocumentPermission.initial.title" = "Allow camera access";
"incdOnboarding.IDDocumentPermission.initial.subtitle" = "This lets you take a photo of your ID and face for verification purposes.";
"incdOnboarding.IDDocumentPermission.initial.button.allow" = "Allow";
"incdOnboarding.IDDocumentPermission.initial.button.deny" = "Don't allow";

"incdOnboarding.IDDocumentPermission.fakeAlert.title" = "\"%@\" Would Like to Access the Camera";
"incdOnboarding.IDDocumentPermission.fakeAlert.subtitle" = "Camera is required for document scanning and photo capture.";
"incdOnboarding.IDDocumentPermission.fakeAlert.deny" = "Don't Allow";
"incdOnboarding.IDDocumentPermission.fakeAlert.allow" = "OK";

"incdOnboarding.IDDocumentPermission.fake.title1" = "We need you to";
"incdOnboarding.IDDocumentPermission.fake.title2" = "allow camera permission";
"incdOnboarding.IDDocumentPermission.fake.subtitle" = "in order to complete the process";
"incdOnboarding.IDDocumentPermission.fake.button.allow" = "Allow permission";
"incdOnboarding.IDDocumentPermission.fake.button.learnMore" = "Learn more";

"incdOnboarding.IDDocumentPermission.learnMore.title" = "Camera permission is required";
"incdOnboarding.IDDocumentPermission.learnMore.tip1" = "We only use the camera to capture your ID for secure verification";
"incdOnboarding.IDDocumentPermission.learnMore.tip2" = "It helps verify document authenticity and prevent identity fraud";
"incdOnboarding.IDDocumentPermission.learnMore.tip3" = "We protect your data, and it is only used for verification";
"incdOnboarding.IDDocumentPermission.learnMore.tip4" = "This is required to verify your identity";

"incdOnboarding.IDDocumentPermission.denied.title" = "Allow %@ to access your camera";
"incdOnboarding.IDDocumentPermission.denied.subtitle" = "This lets you capture your documents in\norder to complete the process";

// IDRealTimeFeedback
"incdOnboarding.IDRealTimeFeedback.blurry.title" = "ID too blurry";
"incdOnboarding.IDRealTimeFeedback.blurry.subtitle" = "Zoom in and out, or tap on the ID";
"incdOnboarding.IDRealTimeFeedback.glare.title" = "ID with glare";
"incdOnboarding.IDRealTimeFeedback.glare.subtitle" = "Find a better lighting to avoid reflections";
"incdOnboarding.IDRealTimeFeedback.frontSide.title" = "Show the back of ID";
"incdOnboarding.IDRealTimeFeedback.frontSide.subtitle" = "Flip your ID to show its reverse side";
"incdOnboarding.IDRealTimeFeedback.backSide.title" = "Show the front of ID";
"incdOnboarding.IDRealTimeFeedback.backSide.subtitle" = "Flip your ID to show its front side";
"incdOnboarding.IDRealTimeFeedback.align.title" = "ID is not aligned";
"incdOnboarding.IDRealTimeFeedback.align.subtitle" = "Center your ID inside the frame";
"incdOnboarding.IDRealTimeFeedback.tooDark.title" = "Image too dark";
"incdOnboarding.IDRealTimeFeedback.tooDark.subtitle" = "Find a place with better lighting";

// IDCaptureHelp
"incdOnboarding.IDCaptureHelp.switchToManualCapture" = "Take the photo manually";

// IDCaptureHeader
"incdOnboarding.IDCaptureHeader.running.title.id.front" = "Fill the frame with your ID";
"incdOnboarding.IDCaptureHeader.running.title.id.back" = "Fill the frame with your back ID";
"incdOnboarding.IDCaptureHeader.running.title.passport" = "Fill the frame with your Passport";
"incdOnboarding.IDCaptureHeader.running.subtitle" = "The photo will be taken automatically";
"incdOnboarding.IDCaptureHeader.capturing.title" = "Taking photo...";
"incdOnboarding.IDCaptureHeader.capturing.subtitle" = "Don't move your ID for a few seconds";

// IDUploadScreen
"incdOnboarding.idCapture.analyzing.title" = "Analyzing...";
"incdOnboarding.idCapture.analyzing.success.title" = "Successfully processed!";
"incdOnboarding.idCapture.analyzing.success.frontId.subtitle" = "Now let's capture the back";
"incdOnboarding.idCapture.analyzing.success.subtitle" = "Now let's continue";
"incdOnboarding.idCapture.analyzing.success.button.title" = "Scan the back";
"incdOnboarding.idCapture.analyzing.networkError.title" = "ID scan failed";
"incdOnboarding.idCapture.analyzing.wrongSide.title" = "Wrong ID side captured";
"incdOnboarding.idCapture.analyzing.wrongSide.front.subtitle" = "Capture front side of the ID";
"incdOnboarding.idCapture.analyzing.wrongSide.back.subtitle" = "Capture back side of the ID";
"incdOnboarding.idCapture.analyzing.glareDetected.title" = "Glare present";
"incdOnboarding.idCapture.analyzing.glareDetected.subtitle" = "Tilt the ID slightly up or down to minimize the reflection";
"incdOnboarding.idCapture.analyzing.blurDetected.title" = "Blur present";
"incdOnboarding.idCapture.analyzing.blurDetected.subtitle" = "Move ID further away or closer to your phone until the image is focused";
"incdOnboarding.idCapture.analyzing.unreadable.title" = "Info is not readable";
"incdOnboarding.idCapture.analyzing.unreadable.subtitle" = "Minimize camera shake by holding your phone steady";
"incdOnboarding.idCapture.analyzing.unacceptableType.title" = "ID document not accepted";
"incdOnboarding.idCapture.analyzing.unacceptableType.subtitle" = "Scan another one from the accepted list";
"incdOnboarding.idCapture.analyzing.unknownError.title" = "ID scan failed";
"incdOnboarding.idCapture.analyzing.acceptedDocuments.title" = "Accepted documents for:";
"incdOnboarding.idCapture.analyzing.acceptedDocuments.empty" = "No documents accepted\n for this country";

List of strings to localize VoiceOver functionality

"incdOnboarding.id.intro.voiceover" = "Back camera has started and ready to scan";
"incdOnboarding.id.capturingIn.voiceover" = "Capturing in";
"incdOnboarding.id.holdStill.voiceover" = "Hold still";
"incdOnboarding.id.tooClose.voiceOver" = "Move ID further away, please";
"incdOnboarding.id.tooFar.voiceOver" = "Move ID closer to you, please";
"incdOnboarding.id.switchingToManualCapture" = "Switching to manual capture. Press the button when you are ready to take a photo";
"incdOnboarding.selfie.cameraActivated" = "Front camera activated";
"incdOnboarding.selfie.switchingToManualCapture" = "Switching to manual capture. Press the button when you are ready to take a selfie";
"incdOnboarding.selfie.badAngleZ.voiceOver" = "Don\'t tilt your head";
"incdOnboarding.selfie.eyesClosed.voiceOver" = "Keep your eyes open";
"incdOnboarding.selfie.hasFaceMask.voiceOver" = "Take off your face mask";
"incdOnboarding.selfie.hasLenses.voiceOver" = "Take off your glasses";
"incdOnboarding.selfie.tooBlurry.voiceOver" = "Image not focused, adjust";
"incdOnboarding.selfie.tooClose.voiceOver" = "Move phone further, please.";
"incdOnboarding.selfie.tooFar.voiceOver" = "Move phone closer to you, please.";