From 7b28120ff9659fbb28303616e6d625060f8a5b66 Mon Sep 17 00:00:00 2001 From: "J. Doe (https://devcenter.bitrise.io/builds/setting-your-git-credentials-on-build-machines/)" Date: Wed, 13 Nov 2024 08:14:25 +0000 Subject: [PATCH] changes for 32.1.0 release --- CHANGELOG.md | 18 ++++++++++++++++ Package.swift | 4 ++-- README.md | 26 +++++++++++++++++++++++- SampleApp/Podfile | 2 +- SampleAppObjC/Podfile | 2 +- localization/Localizable_DE.strings | 3 ++- localization/Localizable_EN.strings | 3 ++- localization/Localizable_ES.strings | 3 ++- localization/Localizable_FR.strings | 3 ++- localization/Localizable_IT.strings | 3 ++- localization/Localizable_NL.strings | 3 ++- localization/Localizable_PT.strings | 3 ++- localization/Localizable_ar.strings | 3 ++- localization/Localizable_bg.strings | 3 ++- localization/Localizable_cs.strings | 3 ++- localization/Localizable_da.strings | 3 ++- localization/Localizable_el.strings | 3 ++- localization/Localizable_en-GB.strings | 3 ++- localization/Localizable_es-419.strings | 3 ++- localization/Localizable_et.strings | 3 ++- localization/Localizable_fa.strings | 3 ++- localization/Localizable_fi.strings | 3 ++- localization/Localizable_fr-CA.strings | 3 ++- localization/Localizable_he.strings | 3 ++- localization/Localizable_hi.strings | 3 ++- localization/Localizable_hr.strings | 3 ++- localization/Localizable_hu.strings | 3 ++- localization/Localizable_hy.strings | 3 ++- localization/Localizable_id.strings | 3 ++- localization/Localizable_ja.strings | 3 ++- localization/Localizable_ko.strings | 3 ++- localization/Localizable_lt.strings | 3 ++- localization/Localizable_lv.strings | 3 ++- localization/Localizable_ms.strings | 3 ++- localization/Localizable_no.strings | 3 ++- localization/Localizable_pl.strings | 3 ++- localization/Localizable_pt-BR.strings | 3 ++- localization/Localizable_ro.strings | 3 ++- localization/Localizable_ru.strings | 3 ++- localization/Localizable_sk.strings | 3 ++- localization/Localizable_sl.strings | 3 ++- localization/Localizable_sr-Latn.strings | 3 ++- localization/Localizable_sv.strings | 3 ++- localization/Localizable_th.strings | 3 ++- localization/Localizable_tr.strings | 3 ++- localization/Localizable_uk.strings | 3 ++- localization/Localizable_vi.strings | 3 ++- localization/Localizable_zh-Hans.strings | 3 ++- localization/Localizable_zh-Hant.strings | 3 ++- 49 files changed, 135 insertions(+), 49 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee53fe0..f9ad6e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. **Note**: If the strings translations change it will result in a MINOR version change, therefore you are responsible for testing your translated layout in case you are using custom translations. [More on language localisation](README.md#language-customisation) +## [32.1.0] - 2024-11-04 + +### Added + +- Changed key used for Motion network error screen's button text from `onfido_avc_connection_error_button_primary_reload` to `onfido_avc_connection_error_button_secondary_restart_recording` +- Added option to hide Motion intro screen using `MotionStepConfiguration(showIntro: false)`, or via the Studio dashboard + +### Changed + +- Motion capture restarts instead of returning to the intro screen when the app returns to the foreground +- The listed countries in the country list selector are now localized in the device's current locale and their endonym +- Improved NFC document coverage and overall reliability +- Improved loading transition between flow steps + +### Fixed + +- Fixed a bug where consent screen action buttons remain disabled when consent content doesn't overflow + ## [32.0.0] - 2024-10-28 ### Fixed diff --git a/Package.swift b/Package.swift index 64ac2d3..63d7295 100644 --- a/Package.swift +++ b/Package.swift @@ -17,8 +17,8 @@ let package = Package( .binaryTarget( name: "Onfido", - url: "https://s3-eu-west-1.amazonaws.com/onfido-sdks/ios/Onfido-v32.0.0.zip", - checksum: "0355c85bcb0f6c8a3fc3ed37cdb93bb9f3cdc42d874972ff7e56ad885c95ca66" + url: "https://s3-eu-west-1.amazonaws.com/onfido-sdks/ios/Onfido-v32.1.0.zip", + checksum: "29a39f94f011a9de57e0f299eccc904f26865329b082c2edb754ab7288d23517" ), diff --git a/README.md b/README.md index 62363d4..6110173 100644 --- a/README.md +++ b/README.md @@ -1157,6 +1157,17 @@ Builder * variantBuilder = [ONFaceStepVariantConfig builder]; [configBuilder withFaceStepOfVariant: [variantBuilder buildAndReturnError: &error]]; ``` +To configure for **Motion without intro screen**: + +The intro screens are designed to give end-users clear context on what actions they need to take and why these actions are necessary. Removing this screen could lead to confusion and higher drop-off rates, as users might not understand what is required of them and choose to abandon the process. It is crucial, especially during onboarding, to provide a similar level of guidance if the intro screen is removed, ensuring users are still well-informed. However, when re-verifying returning users who are already familiar with the flow, skipping the intro screen may enhance the user experience by streamlining the process and eliminating unnecessary steps. + +``` +NSError * error; +Builder * variantBuilder = [ONFaceStepVariantConfig builder]; +[variantBuilder withMotionWithConfig: [[MotionStepConfiguration alloc] initWithShowIntro: NO]]; +[configBuilder withFaceStepOfVariant: [variantBuilder buildAndReturnError: &error]]; +``` + ##### Swift The Face step has 3 variants for the **Swift interface**: @@ -1209,6 +1220,19 @@ let config = try OnfidoConfig.builder() .build() ``` +To configure for **Motion without intro screen**: + +The intro screens are designed to give end-users clear context on what actions they need to take and why these actions are necessary. Removing this screen could lead to confusion and higher drop-off rates, as users might not understand what is required of them and choose to abandon the process. It is crucial, especially during onboarding, to provide a similar level of guidance if the intro screen is removed, ensuring users are still well-informed. However, when re-verifying returning users who are already familiar with the flow, skipping the intro screen may enhance the user experience by streamlining the process and eliminating unnecessary steps. + +```swift +let config = try OnfidoConfig.builder() + .withSDKToken("") + .withWelcomeStep() + .withDocumentStep() + .withFaceStep(ofVariant: .motion(withConfiguration: MotionStepConfiguration(showIntro: false))) + .build() +``` + #### Proof of Address step In the Proof of Address step, a user picks the issuing country and type of document that proves their address before @@ -1706,7 +1730,7 @@ MOTION_FACIAL_CONNECTION_ERROR - User was presented the "Motion connection error ## Custom biometric token storage -When using the decentralized authentication solution, by default the SDK manages biometric token storage. The SDK also allows you to have control over the token lifecycle by exposing an API to override the default implementation to read and write the token, so it can be stored on-device, in the cloud, in a keychain or on your servers. +When using the authentication with local storage solution, by default the SDK manages biometric token storage. The SDK also allows you to have control over the token lifecycle by exposing an API to override the default implementation to read and write the token, so it can be stored on-device, in the cloud, in a keychain or on your servers. ### Implementation diff --git a/SampleApp/Podfile b/SampleApp/Podfile index c76a146..aca9b1c 100644 --- a/SampleApp/Podfile +++ b/SampleApp/Podfile @@ -4,7 +4,7 @@ def setup_shared_pods use_frameworks! inhibit_all_warnings! - pod 'Onfido', '32.0.0' + pod 'Onfido', '32.1.0' end target 'SampleApp' do diff --git a/SampleAppObjC/Podfile b/SampleAppObjC/Podfile index 1afb70a..9597afe 100644 --- a/SampleAppObjC/Podfile +++ b/SampleAppObjC/Podfile @@ -4,7 +4,7 @@ def setup_shared_pods use_frameworks! inhibit_all_warnings! - pod 'Onfido', '32.0.0' + pod 'Onfido', '32.1.0' end target 'SampleAppObjC' do diff --git a/localization/Localizable_DE.strings b/localization/Localizable_DE.strings index b0e36c5..79b66d9 100644 --- a/localization/Localizable_DE.strings +++ b/localization/Localizable_DE.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Vollständige Adresse"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Datum der Ausgabe"; "onfido_poa_guidance_instructions_expiry_date" = "Verfallsdatum, falls zutreffend"; -"onfido_qes_consent_introduction_validation" = "Zustimmung erforderlich"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Zustimmung erforderlich"; +"onfido_otp_send_code_error_invalid_country_code" = "Entschuldigung, wir unterstützen diesen Ländercode nicht"; \ No newline at end of file diff --git a/localization/Localizable_EN.strings b/localization/Localizable_EN.strings index c2a14aa..b00bd05 100644 --- a/localization/Localizable_EN.strings +++ b/localization/Localizable_EN.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Full address"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Issue date"; "onfido_poa_guidance_instructions_expiry_date" = "Expiry date if applicable"; -"onfido_qes_consent_introduction_validation" = "Consent required"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Consent required"; +"onfido_otp_send_code_error_invalid_country_code" = "Sorry, we do not support this country code"; \ No newline at end of file diff --git a/localization/Localizable_ES.strings b/localization/Localizable_ES.strings index ebc73d3..e2a29e8 100644 --- a/localization/Localizable_ES.strings +++ b/localization/Localizable_ES.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Dirección completa"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Fecha de publicación"; "onfido_poa_guidance_instructions_expiry_date" = "Fecha de caducidad, si procede"; -"onfido_qes_consent_introduction_validation" = "Se requiere consentimiento"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Se requiere consentimiento"; +"onfido_otp_send_code_error_invalid_country_code" = "Lo sentimos, no admitimos este código de país"; \ No newline at end of file diff --git a/localization/Localizable_FR.strings b/localization/Localizable_FR.strings index 9692af1..0565f36 100644 --- a/localization/Localizable_FR.strings +++ b/localization/Localizable_FR.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Adresse complète"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Date d'émission"; "onfido_poa_guidance_instructions_expiry_date" = "Date d'expiration, le cas échéant"; -"onfido_qes_consent_introduction_validation" = "Consentement requis"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Consentement requis"; +"onfido_otp_send_code_error_invalid_country_code" = "Désolé, nous ne prenons pas en charge ce code pays"; \ No newline at end of file diff --git a/localization/Localizable_IT.strings b/localization/Localizable_IT.strings index 330bee1..a9c9ea7 100644 --- a/localization/Localizable_IT.strings +++ b/localization/Localizable_IT.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Indirizzo completo"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Data di emissione"; "onfido_poa_guidance_instructions_expiry_date" = "Data di scadenza, se applicabile"; -"onfido_qes_consent_introduction_validation" = "Consenso richiesto"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Consenso richiesto"; +"onfido_otp_send_code_error_invalid_country_code" = "Spiacenti, non supportiamo questo codice paese"; \ No newline at end of file diff --git a/localization/Localizable_NL.strings b/localization/Localizable_NL.strings index 3a22a5e..4cdbf35 100644 --- a/localization/Localizable_NL.strings +++ b/localization/Localizable_NL.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Volledig adres"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Uitgiftedatum"; "onfido_poa_guidance_instructions_expiry_date" = "Vervaldatum indien van toepassing"; -"onfido_qes_consent_introduction_validation" = "Toestemming vereist"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Toestemming vereist"; +"onfido_otp_send_code_error_invalid_country_code" = "Sorry, we ondersteunen deze landcode niet"; \ No newline at end of file diff --git a/localization/Localizable_PT.strings b/localization/Localizable_PT.strings index 4e1159d..fc64057 100644 --- a/localization/Localizable_PT.strings +++ b/localization/Localizable_PT.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Endereço completo"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Data de emissão"; "onfido_poa_guidance_instructions_expiry_date" = "Data de expiração se aplicável"; -"onfido_qes_consent_introduction_validation" = "Consentimento necessário"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Consentimento necessário"; +"onfido_otp_send_code_error_invalid_country_code" = "Desculpe, não oferecemos suporte para este código de país"; \ No newline at end of file diff --git a/localization/Localizable_ar.strings b/localization/Localizable_ar.strings index 6ad1edc..8287c79 100644 --- a/localization/Localizable_ar.strings +++ b/localization/Localizable_ar.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "العنوان بالكامل"; "onfido_poa_guidance_instructions_address_card_issue_date" = "تاريخ الإصدار"; "onfido_poa_guidance_instructions_expiry_date" = "تاريخ انتهاء الصلاحية إن وجد"; -"onfido_qes_consent_introduction_validation" = "الموافقة مطلوبة"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "الموافقة مطلوبة"; +"onfido_otp_send_code_error_invalid_country_code" = "عذرًا، لا ندعم رمز البلد هذا"; \ No newline at end of file diff --git a/localization/Localizable_bg.strings b/localization/Localizable_bg.strings index a5715bb..712ad44 100644 --- a/localization/Localizable_bg.strings +++ b/localization/Localizable_bg.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Пълен адрес"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Дата на издаване"; "onfido_poa_guidance_instructions_expiry_date" = "Дата на валидност (ако е приложимо)"; -"onfido_qes_consent_introduction_validation" = "Необходимо съгласие"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Необходимо съгласие"; +"onfido_otp_send_code_error_invalid_country_code" = "Съжаляваме, но не поддържаме този код на държава"; \ No newline at end of file diff --git a/localization/Localizable_cs.strings b/localization/Localizable_cs.strings index b345c87..0934568 100644 --- a/localization/Localizable_cs.strings +++ b/localization/Localizable_cs.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Úplná adresa"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Datum vydání"; "onfido_poa_guidance_instructions_expiry_date" = "Případné datum ukončení platnosti"; -"onfido_qes_consent_introduction_validation" = "Vyžadován souhlas"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Vyžadován souhlas"; +"onfido_otp_send_code_error_invalid_country_code" = "Omlouváme se, tento kód země nepodporujeme"; \ No newline at end of file diff --git a/localization/Localizable_da.strings b/localization/Localizable_da.strings index 24ce4ac..4315c2e 100644 --- a/localization/Localizable_da.strings +++ b/localization/Localizable_da.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Fuldstændig adresse"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Udstedelsesdato"; "onfido_poa_guidance_instructions_expiry_date" = "Udløbsdato, hvis relevant"; -"onfido_qes_consent_introduction_validation" = "Samtykke påkrævet"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Samtykke påkrævet"; +"onfido_otp_send_code_error_invalid_country_code" = "Beklager, vi understøtter ikke denne landekode"; \ No newline at end of file diff --git a/localization/Localizable_el.strings b/localization/Localizable_el.strings index b5bdf4e..073a858 100644 --- a/localization/Localizable_el.strings +++ b/localization/Localizable_el.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Πλήρης διεύθυνση"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Ημερομηνία έκδοσης"; "onfido_poa_guidance_instructions_expiry_date" = "Ημερομηνία λήξης, κατά περίπτωση"; -"onfido_qes_consent_introduction_validation" = "Απαιτείται συγκατάθεση"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Απαιτείται συγκατάθεση"; +"onfido_otp_send_code_error_invalid_country_code" = "Λυπούμαστε, δεν υποστηρίζουμε αυτόν τον κωδικό χώρας"; \ No newline at end of file diff --git a/localization/Localizable_en-GB.strings b/localization/Localizable_en-GB.strings index a4593f5..d26699c 100644 --- a/localization/Localizable_en-GB.strings +++ b/localization/Localizable_en-GB.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Full address"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Issue date"; "onfido_poa_guidance_instructions_expiry_date" = "Expiry date if applicable"; -"onfido_qes_consent_introduction_validation" = "Consent required"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Consent required"; +"onfido_otp_send_code_error_invalid_country_code" = "Sorry, we do not support this country code"; \ No newline at end of file diff --git a/localization/Localizable_es-419.strings b/localization/Localizable_es-419.strings index 7ddf82d..22335e9 100644 --- a/localization/Localizable_es-419.strings +++ b/localization/Localizable_es-419.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Dirección completa"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Fecha de emisión"; "onfido_poa_guidance_instructions_expiry_date" = "Fecha de vencimiento, si corresponde"; -"onfido_qes_consent_introduction_validation" = "Se requiere consentimiento"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Se requiere consentimiento"; +"onfido_otp_send_code_error_invalid_country_code" = "Lo sentimos, no admitimos este código de país"; \ No newline at end of file diff --git a/localization/Localizable_et.strings b/localization/Localizable_et.strings index 6e322ca..a781d06 100644 --- a/localization/Localizable_et.strings +++ b/localization/Localizable_et.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Täielik aadress"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Väljaandmise kuupäev"; "onfido_poa_guidance_instructions_expiry_date" = "Kehtivusaeg (vajaduse korral)"; -"onfido_qes_consent_introduction_validation" = "Nõusolek vajalik"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Nõusolek vajalik"; +"onfido_otp_send_code_error_invalid_country_code" = "Kahjuks me ei toeta seda riigikoodi"; \ No newline at end of file diff --git a/localization/Localizable_fa.strings b/localization/Localizable_fa.strings index ce0b910..57d93f0 100644 --- a/localization/Localizable_fa.strings +++ b/localization/Localizable_fa.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "آدرس کامل"; "onfido_poa_guidance_instructions_address_card_issue_date" = "تاریخ صدور"; "onfido_poa_guidance_instructions_expiry_date" = "تاریخ انقضا در صورت وجود"; -"onfido_qes_consent_introduction_validation" = "نیاز به رضایت"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "نیاز به رضایت"; +"onfido_otp_send_code_error_invalid_country_code" = "متأسفیم، ما از این کد کشور پشتیبانی نمی‌کنیم"; \ No newline at end of file diff --git a/localization/Localizable_fi.strings b/localization/Localizable_fi.strings index a781a57..f0ab040 100644 --- a/localization/Localizable_fi.strings +++ b/localization/Localizable_fi.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Koko osoite"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Myöntämispäivä"; "onfido_poa_guidance_instructions_expiry_date" = "Viim. voimassaolopäivä (tarvittaessa)"; -"onfido_qes_consent_introduction_validation" = "Suostumus vaaditaan"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Suostumus vaaditaan"; +"onfido_otp_send_code_error_invalid_country_code" = "Valitettavasti emme tue tätä maatunnusta"; \ No newline at end of file diff --git a/localization/Localizable_fr-CA.strings b/localization/Localizable_fr-CA.strings index 2a20ff2..20dd733 100644 --- a/localization/Localizable_fr-CA.strings +++ b/localization/Localizable_fr-CA.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Adresse complète"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Date d'émission"; "onfido_poa_guidance_instructions_expiry_date" = "Date d'expiration, si applicable"; -"onfido_qes_consent_introduction_validation" = "Consentement requis"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Consentement requis"; +"onfido_otp_send_code_error_invalid_country_code" = "Désolé, nous ne prenons pas en charge ce code de pays"; \ No newline at end of file diff --git a/localization/Localizable_he.strings b/localization/Localizable_he.strings index d636acd..079a5f1 100644 --- a/localization/Localizable_he.strings +++ b/localization/Localizable_he.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "כתובת מלאה"; "onfido_poa_guidance_instructions_address_card_issue_date" = "תאריך הנפקה"; "onfido_poa_guidance_instructions_expiry_date" = "תאריך תפוגה אם רלוונטי"; -"onfido_qes_consent_introduction_validation" = "נדרשת הסכמה"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "נדרשת הסכמה"; +"onfido_otp_send_code_error_invalid_country_code" = "מצטערים, איננו תומכים בקוד המדינה הזה"; \ No newline at end of file diff --git a/localization/Localizable_hi.strings b/localization/Localizable_hi.strings index 82c785e..20f3e56 100644 --- a/localization/Localizable_hi.strings +++ b/localization/Localizable_hi.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "पूरा पता"; "onfido_poa_guidance_instructions_address_card_issue_date" = "जारी होने की तारीख"; "onfido_poa_guidance_instructions_expiry_date" = "लागू होने की स्थिति में अवधि खत्म होने की तारीख"; -"onfido_qes_consent_introduction_validation" = "अनुमति आवश्यक"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "अनुमति आवश्यक"; +"onfido_otp_send_code_error_invalid_country_code" = "क्षमा करें, हम इस देश कोड का समर्थन नहीं करते हैं"; \ No newline at end of file diff --git a/localization/Localizable_hr.strings b/localization/Localizable_hr.strings index 8bbc7b5..3b7ff77 100644 --- a/localization/Localizable_hr.strings +++ b/localization/Localizable_hr.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Puna adresa"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Datum izdavanja"; "onfido_poa_guidance_instructions_expiry_date" = "Rok valjanosti ako je primjenjivo"; -"onfido_qes_consent_introduction_validation" = "Potrebna suglasnost"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Potrebna suglasnost"; +"onfido_otp_send_code_error_invalid_country_code" = "Žao nam je, ne podržavamo ovaj kôd zemlje"; \ No newline at end of file diff --git a/localization/Localizable_hu.strings b/localization/Localizable_hu.strings index 510b291..85f0a5c 100644 --- a/localization/Localizable_hu.strings +++ b/localization/Localizable_hu.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Teljes lakcím"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Kibocsátás dátuma"; "onfido_poa_guidance_instructions_expiry_date" = "Lejárat időpontja, ha van"; -"onfido_qes_consent_introduction_validation" = "Hozzájárulás szükséges"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Hozzájárulás szükséges"; +"onfido_otp_send_code_error_invalid_country_code" = "Sajnáljuk, nem támogatjuk ezt az országkódot"; \ No newline at end of file diff --git a/localization/Localizable_hy.strings b/localization/Localizable_hy.strings index c761cd8..9315370 100644 --- a/localization/Localizable_hy.strings +++ b/localization/Localizable_hy.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Ամբողջական հասցե"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Տրված է"; "onfido_poa_guidance_instructions_expiry_date" = "Գործողության ժամկետը (եթե առկա է)"; -"onfido_qes_consent_introduction_validation" = "Համաձայնությունը պահանջվում է"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Համաձայնությունը պահանջվում է"; +"onfido_otp_send_code_error_invalid_country_code" = "Ներեցեք, մենք չենք աջակցում այս երկրի կոդը"; \ No newline at end of file diff --git a/localization/Localizable_id.strings b/localization/Localizable_id.strings index 1eed160..bbbf507 100644 --- a/localization/Localizable_id.strings +++ b/localization/Localizable_id.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Alamat lengkap"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Tanggal terbit"; "onfido_poa_guidance_instructions_expiry_date" = "Tanggal kedaluwarsa jika berlaku"; -"onfido_qes_consent_introduction_validation" = "Persetujuan diperlukan"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Persetujuan diperlukan"; +"onfido_otp_send_code_error_invalid_country_code" = "Maaf, kami tidak mendukung kode negara ini"; \ No newline at end of file diff --git a/localization/Localizable_ja.strings b/localization/Localizable_ja.strings index e2eade3..44d85b9 100644 --- a/localization/Localizable_ja.strings +++ b/localization/Localizable_ja.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "住所詳細"; "onfido_poa_guidance_instructions_address_card_issue_date" = "発行日"; "onfido_poa_guidance_instructions_expiry_date" = "有効期限(該当する場合)"; -"onfido_qes_consent_introduction_validation" = "同意が必要です"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "同意が必要です"; +"onfido_otp_send_code_error_invalid_country_code" = "申し訳ありませんが、この国コードには対応していません。"; \ No newline at end of file diff --git a/localization/Localizable_ko.strings b/localization/Localizable_ko.strings index 6987ff7..c5792ae 100644 --- a/localization/Localizable_ko.strings +++ b/localization/Localizable_ko.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "전체 주소"; "onfido_poa_guidance_instructions_address_card_issue_date" = "발행일"; "onfido_poa_guidance_instructions_expiry_date" = "(해당하는 경우) 만료일"; -"onfido_qes_consent_introduction_validation" = "동의 필요"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "동의 필요"; +"onfido_otp_send_code_error_invalid_country_code" = "죄송합니다, 이 국가 코드는 지원되지 않습니다"; \ No newline at end of file diff --git a/localization/Localizable_lt.strings b/localization/Localizable_lt.strings index 28081fc..aacabbd 100644 --- a/localization/Localizable_lt.strings +++ b/localization/Localizable_lt.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Pilnas adresas"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Išdavimo data"; "onfido_poa_guidance_instructions_expiry_date" = "Galiojimo terminas (jei taikoma)"; -"onfido_qes_consent_introduction_validation" = "Reikalingas sutikimas"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Reikalingas sutikimas"; +"onfido_otp_send_code_error_invalid_country_code" = "Atsiprašome, šio šalies kodo nepalaikome"; \ No newline at end of file diff --git a/localization/Localizable_lv.strings b/localization/Localizable_lv.strings index ce461d9..324e9eb 100644 --- a/localization/Localizable_lv.strings +++ b/localization/Localizable_lv.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Pilna adrese"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Izdošanas datums"; "onfido_poa_guidance_instructions_expiry_date" = "Derīguma termiņš (ja attiecināms)"; -"onfido_qes_consent_introduction_validation" = "Nepieciešama piekrišana"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Nepieciešama piekrišana"; +"onfido_otp_send_code_error_invalid_country_code" = "Atvainojiet, mēs neatbalstām šo valsts kodu"; \ No newline at end of file diff --git a/localization/Localizable_ms.strings b/localization/Localizable_ms.strings index 90756c1..3a01557 100644 --- a/localization/Localizable_ms.strings +++ b/localization/Localizable_ms.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Alamat penuh"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Tarikh dikeluarkan"; "onfido_poa_guidance_instructions_expiry_date" = "Tarikh luput, jika berkenaan"; -"onfido_qes_consent_introduction_validation" = "Persetujuan diperlukan"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Persetujuan diperlukan"; +"onfido_otp_send_code_error_invalid_country_code" = "Maaf, kami tidak menyokong kod negara ini"; \ No newline at end of file diff --git a/localization/Localizable_no.strings b/localization/Localizable_no.strings index 015ae20..9bdf32a 100644 --- a/localization/Localizable_no.strings +++ b/localization/Localizable_no.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Fullstendig adresse"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Utstedelsesdato"; "onfido_poa_guidance_instructions_expiry_date" = "Utløpsdato hvis aktuelt"; -"onfido_qes_consent_introduction_validation" = "Samtykke kreves"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Samtykke kreves"; +"onfido_otp_send_code_error_invalid_country_code" = "Beklager, vi støtter ikke denne landskoden"; \ No newline at end of file diff --git a/localization/Localizable_pl.strings b/localization/Localizable_pl.strings index b4e9fed..e8e9f31 100644 --- a/localization/Localizable_pl.strings +++ b/localization/Localizable_pl.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Pełny adres"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Data wydania"; "onfido_poa_guidance_instructions_expiry_date" = "Data ważności, jeśli dotyczy"; -"onfido_qes_consent_introduction_validation" = "Wymagana zgoda"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Wymagana zgoda"; +"onfido_otp_send_code_error_invalid_country_code" = "Przepraszamy, nie obsługujemy tego kodu kraju"; \ No newline at end of file diff --git a/localization/Localizable_pt-BR.strings b/localization/Localizable_pt-BR.strings index 257badc..11a6b33 100644 --- a/localization/Localizable_pt-BR.strings +++ b/localization/Localizable_pt-BR.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Endereço completo"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Data de emissão"; "onfido_poa_guidance_instructions_expiry_date" = "Data de validade, se aplicável"; -"onfido_qes_consent_introduction_validation" = "Consentimento necessário"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Consentimento necessário"; +"onfido_otp_send_code_error_invalid_country_code" = "Desculpe, não oferecemos suporte para este código de país"; \ No newline at end of file diff --git a/localization/Localizable_ro.strings b/localization/Localizable_ro.strings index 1e4a692..002e233 100644 --- a/localization/Localizable_ro.strings +++ b/localization/Localizable_ro.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Adresa completă"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Data emiterii"; "onfido_poa_guidance_instructions_expiry_date" = "Data expirării, dacă este cazul"; -"onfido_qes_consent_introduction_validation" = "Consimțământ necesar"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Consimțământ necesar"; +"onfido_otp_send_code_error_invalid_country_code" = "Ne pare rău, nu acceptăm acest cod de țară"; \ No newline at end of file diff --git a/localization/Localizable_ru.strings b/localization/Localizable_ru.strings index 32729a9..e74f3c4 100644 --- a/localization/Localizable_ru.strings +++ b/localization/Localizable_ru.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Полный адрес"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Дата выдачи"; "onfido_poa_guidance_instructions_expiry_date" = "Срок действия (если применимо)"; -"onfido_qes_consent_introduction_validation" = "Требуется согласие"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Требуется согласие"; +"onfido_otp_send_code_error_invalid_country_code" = "Извините, мы не поддерживаем этот код страны"; \ No newline at end of file diff --git a/localization/Localizable_sk.strings b/localization/Localizable_sk.strings index 074bfb1..2506e9b 100644 --- a/localization/Localizable_sk.strings +++ b/localization/Localizable_sk.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Úplná adresa"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Dátum vydania"; "onfido_poa_guidance_instructions_expiry_date" = "Dátum vypršania platnosti (ak sa uplatňuje)"; -"onfido_qes_consent_introduction_validation" = "Vyžadovaný súhlas"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Vyžadovaný súhlas"; +"onfido_otp_send_code_error_invalid_country_code" = "Je nám ľúto, tento kód krajiny nie je podporovaný"; \ No newline at end of file diff --git a/localization/Localizable_sl.strings b/localization/Localizable_sl.strings index 2f271d4..cdd82ee 100644 --- a/localization/Localizable_sl.strings +++ b/localization/Localizable_sl.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Polni naslov"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Datum izdaje"; "onfido_poa_guidance_instructions_expiry_date" = "Datum izteka veljavnosti, če je primerno"; -"onfido_qes_consent_introduction_validation" = "Potrebno soglasje"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Potrebno soglasje"; +"onfido_otp_send_code_error_invalid_country_code" = "Oprostite, te kode države ne podpiramo"; \ No newline at end of file diff --git a/localization/Localizable_sr-Latn.strings b/localization/Localizable_sr-Latn.strings index 098f831..1d5f875 100644 --- a/localization/Localizable_sr-Latn.strings +++ b/localization/Localizable_sr-Latn.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Puna adresa"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Datum izdavanja"; "onfido_poa_guidance_instructions_expiry_date" = "Datum isteka, ako postoji"; -"onfido_qes_consent_introduction_validation" = "Potrebna saglasnost"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Potrebna saglasnost"; +"onfido_otp_send_code_error_invalid_country_code" = "Žao nam je, ne podržavamo ovaj kod zemlje"; \ No newline at end of file diff --git a/localization/Localizable_sv.strings b/localization/Localizable_sv.strings index 526e92c..a131928 100644 --- a/localization/Localizable_sv.strings +++ b/localization/Localizable_sv.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Fullständig adress"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Utfärdandedatum"; "onfido_poa_guidance_instructions_expiry_date" = "Utgångsdatum om tillämpligt"; -"onfido_qes_consent_introduction_validation" = "Samtycke krävs"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Samtycke krävs"; +"onfido_otp_send_code_error_invalid_country_code" = "Tyvärr, vi stöder inte denna landskod"; \ No newline at end of file diff --git a/localization/Localizable_th.strings b/localization/Localizable_th.strings index 1b8cf7a..e9d096e 100644 --- a/localization/Localizable_th.strings +++ b/localization/Localizable_th.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "ที่อยู่เต็ม"; "onfido_poa_guidance_instructions_address_card_issue_date" = "วันที่ออก"; "onfido_poa_guidance_instructions_expiry_date" = "วันหมดอายุ (ถ้ามี)"; -"onfido_qes_consent_introduction_validation" = "ต้องได้รับความยินยอม"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "ต้องได้รับความยินยอม"; +"onfido_otp_send_code_error_invalid_country_code" = "ขออภัย เราไม่รองรับรหัสประเทศนี้"; \ No newline at end of file diff --git a/localization/Localizable_tr.strings b/localization/Localizable_tr.strings index f620614..be3977e 100644 --- a/localization/Localizable_tr.strings +++ b/localization/Localizable_tr.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Açık adres"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Düzenleme tarihi"; "onfido_poa_guidance_instructions_expiry_date" = "Son kullanma tarihi (varsa)"; -"onfido_qes_consent_introduction_validation" = "Onay gerekli"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Onay gerekli"; +"onfido_otp_send_code_error_invalid_country_code" = "Üzgünüz, bu ülke kodunu desteklemiyoruz"; \ No newline at end of file diff --git a/localization/Localizable_uk.strings b/localization/Localizable_uk.strings index dd60e80..a2d3d2c 100644 --- a/localization/Localizable_uk.strings +++ b/localization/Localizable_uk.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Повна адреса"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Дата видачі"; "onfido_poa_guidance_instructions_expiry_date" = "Строк дії (якщо передбачено):"; -"onfido_qes_consent_introduction_validation" = "Потрібна згода"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Потрібна згода"; +"onfido_otp_send_code_error_invalid_country_code" = "На жаль, ми не підтримуємо цей код країни"; \ No newline at end of file diff --git a/localization/Localizable_vi.strings b/localization/Localizable_vi.strings index d43250a..49bcb8a 100644 --- a/localization/Localizable_vi.strings +++ b/localization/Localizable_vi.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "Địa chỉ đầy đủ"; "onfido_poa_guidance_instructions_address_card_issue_date" = "Ngày cấp"; "onfido_poa_guidance_instructions_expiry_date" = "Ngày hết hạn nếu có"; -"onfido_qes_consent_introduction_validation" = "Yêu cầu sự đồng ý"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "Yêu cầu sự đồng ý"; +"onfido_otp_send_code_error_invalid_country_code" = "Xin lỗi, chúng tôi không hỗ trợ mã quốc gia này"; \ No newline at end of file diff --git a/localization/Localizable_zh-Hans.strings b/localization/Localizable_zh-Hans.strings index d366c5b..6c15fba 100644 --- a/localization/Localizable_zh-Hans.strings +++ b/localization/Localizable_zh-Hans.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "完整地址"; "onfido_poa_guidance_instructions_address_card_issue_date" = "签发日期"; "onfido_poa_guidance_instructions_expiry_date" = "有效期(如适用)"; -"onfido_qes_consent_introduction_validation" = "需要同意"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "需要同意"; +"onfido_otp_send_code_error_invalid_country_code" = "抱歉,我们不支持此国家代码"; \ No newline at end of file diff --git a/localization/Localizable_zh-Hant.strings b/localization/Localizable_zh-Hant.strings index ba23751..cd65ba1 100644 --- a/localization/Localizable_zh-Hant.strings +++ b/localization/Localizable_zh-Hant.strings @@ -773,4 +773,5 @@ "onfido_poa_guidance_instructions_full_address" = "完整地址"; "onfido_poa_guidance_instructions_address_card_issue_date" = "核發日期"; "onfido_poa_guidance_instructions_expiry_date" = "有效期限(如適用)"; -"onfido_qes_consent_introduction_validation" = "需要同意"; \ No newline at end of file +"onfido_qes_consent_introduction_validation" = "需要同意"; +"onfido_otp_send_code_error_invalid_country_code" = "抱歉,我們不支援此國家代碼"; \ No newline at end of file