From 5b58b8bd6e7271a6cba9e853f6f954a6a637f578 Mon Sep 17 00:00:00 2001 From: "J. Doe (https://devcenter.bitrise.io/builds/setting-your-git-credentials-on-build-machines/)" Date: Thu, 20 Jul 2023 17:32:26 +0000 Subject: [PATCH] changes for 29.2.0 release --- CHANGELOG.md | 23 +++++++++++++++ MIGRATION.md | 35 ++++++++++++++++++++++ Package.swift | 8 ++--- README.md | 19 +++++++----- SampleApp/Podfile | 2 +- SampleAppObjC/Podfile | 2 +- localization/Localizable_DE.strings | 37 ++++++++++++++---------- localization/Localizable_EN.strings | 9 ++++-- localization/Localizable_ES.strings | 9 ++++-- localization/Localizable_FR.strings | 27 ++++++++++------- localization/Localizable_IT.strings | 33 ++++++++++++--------- localization/Localizable_NL.strings | 21 +++++++++----- localization/Localizable_PT.strings | 37 ++++++++++++++---------- localization/Localizable_ar.strings | 9 ++++-- localization/Localizable_bg.strings | 9 ++++-- localization/Localizable_cs.strings | 9 ++++-- localization/Localizable_da.strings | 9 ++++-- localization/Localizable_el.strings | 9 ++++-- localization/Localizable_en-GB.strings | 9 ++++-- localization/Localizable_es-419.strings | 9 ++++-- localization/Localizable_et.strings | 9 ++++-- localization/Localizable_fa.strings | 7 ++++- localization/Localizable_fi.strings | 9 ++++-- localization/Localizable_fr-CA.strings | 9 ++++-- localization/Localizable_he.strings | 7 ++++- localization/Localizable_hi.strings | 9 ++++-- localization/Localizable_hr.strings | 9 ++++-- localization/Localizable_hu.strings | 11 +++++-- localization/Localizable_hy.strings | 9 ++++-- localization/Localizable_id.strings | 9 ++++-- localization/Localizable_ja.strings | 9 ++++-- localization/Localizable_ko.strings | 9 ++++-- localization/Localizable_lt.strings | 9 ++++-- localization/Localizable_lv.strings | 9 ++++-- localization/Localizable_ms.strings | 9 ++++-- localization/Localizable_no.strings | 16 ++++++++-- localization/Localizable_pl.strings | 9 ++++-- localization/Localizable_pt-BR.strings | 9 ++++-- localization/Localizable_ro.strings | 11 +++++-- localization/Localizable_ru.strings | 9 ++++-- localization/Localizable_sk.strings | 9 ++++-- localization/Localizable_sl.strings | 9 ++++-- localization/Localizable_sr-Latn.strings | 9 ++++-- localization/Localizable_sv.strings | 9 ++++-- localization/Localizable_th.strings | 9 ++++-- localization/Localizable_tr.strings | 9 ++++-- localization/Localizable_uk.strings | 9 ++++-- localization/Localizable_vi.strings | 9 ++++-- localization/Localizable_zh-Hans.strings | 9 ++++-- localization/Localizable_zh-Hant.strings | 9 ++++-- 50 files changed, 445 insertions(+), 157 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b288cf..04b6a24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,29 @@ 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) +## [29.2.0] - 2023-07-14 + +### Added + +- Ability to customise logo and branding available on all Motion screens. This is an enterprise feature, please reach out to your CSM if you want to know more +- Adding translations for live feedback on wrong passport page or tilted document. +- Enable screen background colour customisation +- Enable explicitly setting the user interface style +- When using Studio, Selfie and Video are configured based on the configuration set in Studio + +### Changed + +- Increase document overlay width to 90% for all devices that do not have a 16:9 screen. + +### Fixed + +- Fixed umbrella header importing private header files +- Added missing Norwegian localisations for document capture. Improved Hungarian message for wrong document side detected. +- Fixed missing country setting issue on document capture Studio flow which affects capture UX and validations +- Fixed incorrect image quality messages being reported on document confirmation screen after 3 attempts +- Disabled swipe to dismiss gesture on loading screen in model presentation contexts +- Fixed reporting the incorrect NFC Media ID in flow response + ## [29.1.0] - 2023-06-16 ### Added diff --git a/MIGRATION.md b/MIGRATION.md index 1ce7b58..68ab10e 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -2,6 +2,7 @@ These guides below are provided to ease the transition of existing applications using the Onfido SDK from one version to another that introduces breaking API changes. +* [Onfido iOS SDK 29.2.0 Migration Guide](#onfido-ios-sdk-2920-migration-guide) * [Onfido iOS SDK 29.1.0 Migration Guide](#onfido-ios-sdk-2910-migration-guide) * [Onfido iOS SDK 29.0.0 Migration Guide](#onfido-ios-sdk-2900-migration-guide) * [Onfido iOS SDK 28.1.0 Migration Guide](#onfido-ios-sdk-2810-migration-guide) @@ -61,6 +62,40 @@ These guides below are provided to ease the transition of existing applications * [Onfido iOS SDK 4.0.0 Migration Guide](#onfido-sdk-400-migration-guide) * [Onfido iOS SDK 3.0.0 Migration Guide](#onfido-sdk-300-migration-guide) +## Onfido iOS SDK 29.2.0 Migration Guide + +### String Changes + +#### Added + +The following string keys have been **added**: + +- `onfido_doc_capture_alert_too_close_title` (no) + +- `onfido_doc_capture_alert_rotated_title` (no) + +- `onfido_doc_capture_alert_too_far_title` (no) + +- `onfido_doc_capture_alert_wrong_side_front_title` (no) + +- `onfido_doc_capture_alert_wrong_side_back_title` (no) + +- `onfido_doc_capture_alert_hold_still_title` (no) + + +- `onfido_doc_capture_alert_photo_page_title` (en, fr, de, es, it, pt, nl) + +- `onfido_doc_capture_alert_tilted_title` (en, fr, de, es, it, pt, nl) + + +#### Changed + +The following string keys have been **changed**: + +- `onfido_doc_capture_alert_wrong_side_back_title` (hu) + + + ## Onfido iOS SDK 29.1.0 Migration Guide ### Deprecated API Changes diff --git a/Package.swift b/Package.swift index be04cf5..63d06cb 100644 --- a/Package.swift +++ b/Package.swift @@ -21,14 +21,14 @@ let package = Package( .binaryTarget( name: "Onfido", - url: "https://s3-eu-west-1.amazonaws.com/onfido-sdks/ios/Onfido-v29.1.0.zip", - checksum: "cf1b1b6a542db624d88bdcaa3f1763082f8c273e4d4b5bdcc1fac64cba48181d" + url: "https://s3-eu-west-1.amazonaws.com/onfido-sdks/ios/Onfido-v29.2.0.zip", + checksum: "968cb59540cd468201a7e8447f9f888cc6970d63789c274cdc8e2a3934f6d805" ), .binaryTarget( name: "OnfidoExtended", - url: "https://s3-eu-west-1.amazonaws.com/onfido-sdks/ios/OnfidoExtended-v29.1.0.zip", - checksum: "39ba0127c4f40df6dd91fa238b690d57f7867a7d6e5bf411d719eb2d0b139555" + url: "https://s3-eu-west-1.amazonaws.com/onfido-sdks/ios/OnfidoExtended-v29.2.0.zip", + checksum: "d3e8ad17d1799b2a1126e016ce5ab813d3ede4185114245451b3a3e80b27ab8f" ), diff --git a/README.md b/README.md index 8aafaca..0fad70a 100644 --- a/README.md +++ b/README.md @@ -1154,10 +1154,11 @@ appearance.primaryTitleColor = appearance.secondaryTitleColor = appearance.primaryBackgroundPressedColor = appearance.secondaryBackgroundPressedColor = +appearance.backgroundColor = appearance.borderCornerRadius = appearance.fontRegular = appearance.fontBold = -appearance.supportDarkMode = +appearance.setUserInterfaceStyle(<.unspecified | .light | .dark>) appearance.captureSuccessColors = ``` @@ -1169,10 +1170,11 @@ appearance.primaryTitleColor = ; appearance.secondaryTitleColor = ; appearance.primaryBackgroundPressedColor = ; appearance.secondaryBackgroundPressedColor = ; +appearance.backgroundColor = ; appearance.buttonCornerRadius = ; appearance.fontRegular = ; appearance.fontBold = ; -appearance.supportDarkMode = ; +[appearance setUserInterfaceStyle: <.unspecified | .light | .dark>]; appearance.captureSuccessColors = ; ``` @@ -1181,10 +1183,11 @@ appearance.captureSuccessColors = ; - `secondaryTitleColor`: Defines the secondary button text and border color - `primaryBackgroundPressedColor`: Defines the primary button pressed state color - `secondaryBackgroundPressedColor`: Defines the secondary button pressed state color +- `backgroundColor`: Defines the screen's background color - `borderCornerRadius`: Defined border corner radius for all the buttons (default 5.0) - `fontRegular`: Defines the custom font name for the regular style labels - `fontBold`: Defines the custom font name for the bold style labels -- `supportDarkMode`: Defines if iOS Dark Mode will be enabled on SDK screens. The value is true by default. +- `interfaceStyle`: Defines the interface style. The value is unspecified by default. **Note:** This property is applicable only for Xcode 11 and above built apps and devices running on iOS 13 and above - `captureSuccessColors`: Defines the color values for the capture screen success auto capture state - `borderColor`: Defines the border color of the area of interest in capture screen @@ -1193,12 +1196,12 @@ appearance.captureSuccessColors = ; **Dark Mode only UI customisation** -To just change `supportDarkMode`, you can use initialiser below: +To just change the user interface style to `.dark`, you can use initialiser below: ##### Swift ```Swift -let appearance = Appearance(supportDarkMode: ) +let appearance = Appearance(interfaceStyle: .dark) let configBuilder = OnfidoConfig.builder() configBuilder.withAppearance(appearance) ``` @@ -1206,7 +1209,7 @@ configBuilder.withAppearance(appearance) ##### Objective-C ```Objective-C -ONAppearance *appearance = [[ONAppearance alloc] initWithSupportDarkMode:]; +ONAppearance *appearance = [[ONAppearance alloc] initWithInterfaceStyle:<.light|.dark|.unspecified>]; ``` @@ -1427,8 +1430,8 @@ Check the following before you go live: | User iOS Version | SDK Size Impact (MB) | |------------------|-----------------------------------| -| 12.2 and above | 9.979| -| Below 12.2 | up to 9.979* or up to 19.236**| +| 12.2 and above | 10.025| +| Below 12.2 | up to 10.025* or up to 19.282**| **\*** If the application is in Swift but doesn't include any Swift libraries that Onfido iOS SDK requires diff --git a/SampleApp/Podfile b/SampleApp/Podfile index ea24346..e572182 100644 --- a/SampleApp/Podfile +++ b/SampleApp/Podfile @@ -4,7 +4,7 @@ def setup_shared_pods use_frameworks! inhibit_all_warnings! - pod 'Onfido', '29.1.0' + pod 'Onfido', '29.2.0' end target 'SampleApp' do diff --git a/SampleAppObjC/Podfile b/SampleAppObjC/Podfile index 9cd4603..ce50849 100644 --- a/SampleAppObjC/Podfile +++ b/SampleAppObjC/Podfile @@ -4,7 +4,7 @@ def setup_shared_pods use_frameworks! inhibit_all_warnings! - pod 'Onfido', '29.1.0' + pod 'Onfido', '29.2.0' end target 'SampleAppObjC' do diff --git a/localization/Localizable_DE.strings b/localization/Localizable_DE.strings index b5da2ec..69f7297 100644 --- a/localization/Localizable_DE.strings +++ b/localization/Localizable_DE.strings @@ -113,11 +113,11 @@ "onfido_video_capture_body" = "Halten Sie Ihr Gesicht innerhalb des Ovals, um mit der Aufnahme zu beginnen"; "onfido_doc_confirmation_body_license" = "Die Informationen müssen deutlich lesbar sein, ohne Unschärfe oder Spiegelung"; "onfido_doc_confirmation_body_generic" = "Die Informationen müssen deutlich lesbar sein, ohne Unschärfe oder Spiegelung"; -"onfido_doc_confirmation_body_id" = "Die Reisepass-Details müssen deutlich lesbar sein, ohne Unschärfe oder Spiegelung"; +"onfido_doc_confirmation_body_id" = "Einzelheiten müssen klar lesbar sein, ohne Unschärfe oder Spiegelung"; /* Document capture confirmation */ -"onfido_doc_confirmation_body_passport" = "Die Reisepass-Details müssen deutlich lesbar sein, ohne Unschärfe oder Spiegelung"; +"onfido_doc_confirmation_body_passport" = "Einzelheiten müssen klar lesbar sein, ohne Unschärfe oder Spiegelung"; "onfido_doc_confirmation_body_permit" = "Die Informationen müssen deutlich lesbar sein, ohne Unschärfe oder Spiegelung"; "onfido_doc_confirmation_body_visa" = "Die Informationen müssen deutlich lesbar sein, ohne Unschärfe oder Spiegelung"; @@ -257,20 +257,20 @@ /* User consent */ -"onfido_app_title_user_consent" = "Verify your identity"; -"onfido_user_consent_prompt_no_consent_title" = "Are you sure?"; -"onfido_user_consent_prompt_no_consent_detail" = "If you do not accept Onfido’s privacy statements and terms of service, we will not be able to verify your identity and you will exit this step."; -"onfido_user_consent_prompt_button_secondary" = "Review again"; -"onfido_user_consent_prompt_button_primary" = "Yes, don’t verify me"; -"onfido_user_consent_button_primary" = "Accept"; -"onfido_user_consent_button_secondary" = "Do not accept"; +"onfido_app_title_user_consent" = "Identität überprüfen"; +"onfido_user_consent_prompt_no_consent_title" = "Bist du sicher?"; +"onfido_user_consent_prompt_no_consent_detail" = "Wenn Sie die Datenschutzerklärungen und Nutzungsbedingungen von Onfido nicht akzeptieren, können wir Ihre Identität nicht überprüfen und Sie werden diesen Schritt beenden."; +"onfido_user_consent_prompt_button_secondary" = "Nochmal überprüfen"; +"onfido_user_consent_prompt_button_primary" = "Ja, verifizieren Sie mich nicht"; +"onfido_user_consent_button_primary" = "Akzeptieren"; +"onfido_user_consent_button_secondary" = "Nicht akzeptieren"; /* User consent load error */ -"onfido_app_title_user_consent_load_fail" = "Verify your identity"; -"onfido_user_consent_load_fail_title" = "Content failed to load"; -"onfido_user_consent_load_fail_detail" = "Check that your connection is stable, then try again"; -"onfido_user_consent_load_fail_button_primary" = "Reload screen"; +"onfido_app_title_user_consent_load_fail" = "Identität überprüfen"; +"onfido_user_consent_load_fail_title" = "Inhalt konnte nicht geladen werden"; +"onfido_user_consent_load_fail_detail" = "Prüfen Sie, ob Ihre Internetverbindung stabil ist, und versuchen Sie es dann erneut"; +"onfido_user_consent_load_fail_button_primary" = "Bildschirm neu laden"; "onfido_country_select_search_results_none_accessibility" = "Keine Treffer"; "onfido_country_select_search_results_one_accessibility" = "Ein Ergebnis gefunden"; "onfido_country_select_search_results_multiple_accessibility" = "%d Ergebnisse gefunden"; @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Kopfdrehung erkannt"; "onfido_welcome_list_header" = "Benutzen Sie Ihr Gerät:"; "onfido_welcome_list_item_doc_photo" = "Machen Sie ein Foto von Ihrem Ausweisdokument"; -"onfido_welcome_list_item_doc_generic" = "Scannen Sie Ihr Ausweisdokument"; +"onfido_welcome_list_item_doc_generic" = "Nehmen Sie ein Video von Ihrem Identitätsdokument auf"; "onfido_welcome_list_item_face_photo" = "Machen Sie ein Foto von Ihrem Gesicht"; "onfido_welcome_list_item_face_video" = "Nehmen Sie ein Video von Ihrem Gesicht auf"; "onfido_doc_capture_header_live_guidance_no_doc" = "Bitte halten Sie Ihr Handy über das Dokument."; @@ -558,7 +558,7 @@ "onfido_nfc_scan_error_list_item" = "Entfernen Sie die Hülle Ihres Telefons"; "onfido_nfc_scan_error_list_item_2" = "Sobald der Scan beginnt, halten Sie still"; "onfido_nfc_scan_error_button_primary" = "Scannen wiederholen"; -"onfido_welcome_nfc_title" = ""; +"onfido_welcome_nfc_title" = "Identität überprüfen"; "onfido_welcome_nfc_subtitle" = ""; "onfido_welcome_nfc_list_header_nfc" = ""; "onfido_welcome_nfc_list_item" = ""; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Kontakt mit NFC-Karte verloren\nBewegen Sie Ihr Gerät leicht nach oben oder unten."; "onfido_nfc_scan_lost-connection_sheet_4" = "Verbindung verloren\nWir konnten Ihr Dokument nicht scannen"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Falsches CAN"; -"onfido_enter_can_error_label" = "Sie haben noch %d %@ übrig."; +"onfido_enter_can_error_label" = "Sie haben noch %1$d %2$s übrig."; "onfido_enter_can_substring_attempt_singular" = "Versuch"; "onfido_enter_can_substring_attempt_plural" = "Versuche"; "onfido_nfc_scan_error_button_secondary" = "Lassen Sie sich ohne NFC verifizieren"; @@ -659,3 +659,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Auf die Vorderseite drehen"; "onfido_doc_capture_alert_wrong_side_back_title" = "Auf die Rückseite drehen"; "onfido_doc_capture_alert_hold_still_title" = "Stillhalten"; + +"onfido_doc_capture_alert_photo_page_title" = "Nur Fotoseite anzeigen"; +"onfido_doc_capture_alert_tilted_title" = "Halten Sie das Dokument gerade"; +"ai-test" = "Zahlen Sie €0,01 ein"; +"onfido_doc_capture_header_recording_video" = "Videoaufnahme"; \ No newline at end of file diff --git a/localization/Localizable_EN.strings b/localization/Localizable_EN.strings index 213f50a..3d7eacc 100644 --- a/localization/Localizable_EN.strings +++ b/localization/Localizable_EN.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Head turn detected"; "onfido_welcome_list_header" = "Use your device to:"; "onfido_welcome_list_item_doc_photo" = "Take a photo of your identity document"; -"onfido_welcome_list_item_doc_generic" = "Scan your identity document"; +"onfido_welcome_list_item_doc_generic" = "Record a video of your identity document"; "onfido_welcome_list_item_face_photo" = "Take a photo of your face"; "onfido_welcome_list_item_face_video" = "Record a video of your face"; "onfido_doc_capture_header_live_guidance_no_doc" = "Hold your phone over the document"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Lost contact with NFC card\nMove your device slightly up or down."; "onfido_nfc_scan_lost-connection_sheet_4" = "Lost connection\nWe couldn’t scan your document"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Incorrect CAN"; -"onfido_enter_can_error_label" = "You have %d %@ left."; +"onfido_enter_can_error_label" = "You have %1$d %2$s left."; "onfido_enter_can_substring_attempt_singular" = "attempt"; "onfido_enter_can_substring_attempt_plural" = "attempts"; "onfido_nfc_scan_error_button_secondary" = "Get verified without NFC"; @@ -659,3 +659,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Flip to front side"; "onfido_doc_capture_alert_wrong_side_back_title" = "Flip to back side"; "onfido_doc_capture_alert_hold_still_title" = "Hold still"; + +"onfido_doc_capture_alert_photo_page_title" = "Show photo page only"; +"onfido_doc_capture_alert_tilted_title" = "Hold document straight"; +"ai-test" = "Deposit €0.01"; +"onfido_doc_capture_header_recording_video" = "Recording video"; \ No newline at end of file diff --git a/localization/Localizable_ES.strings b/localization/Localizable_ES.strings index d2dee04..b43316f 100644 --- a/localization/Localizable_ES.strings +++ b/localization/Localizable_ES.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Se detectó un giro de cabeza"; "onfido_welcome_list_header" = "Utilice su dispositivo para:"; "onfido_welcome_list_item_doc_photo" = "Tome una foto de su documento de identidad"; -"onfido_welcome_list_item_doc_generic" = "Escanee su documento de identidad"; +"onfido_welcome_list_item_doc_generic" = "Grabe un video de su documento de identidad"; "onfido_welcome_list_item_face_photo" = "Tome una foto de su cara"; "onfido_welcome_list_item_face_video" = "Grabe un vídeo de su cara"; "onfido_doc_capture_header_live_guidance_no_doc" = "Mantenga el documento encima del documento"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Pérdida de contacto con la tarjeta NFC\nMueva su dispositivo ligeramente hacia arriba o hacia abajo."; "onfido_nfc_scan_lost-connection_sheet_4" = "Conexión perdida\nNo hemos podido escanear su documento"; "onfido_nfc_scan_incorrect-can_sheet_5" = "CAN incorrecto"; -"onfido_enter_can_error_label" = "Te quedan %d %@."; +"onfido_enter_can_error_label" = "Te quedan %1$d %2$s."; "onfido_enter_can_substring_attempt_singular" = "intente"; "onfido_enter_can_substring_attempt_plural" = "intentos"; "onfido_nfc_scan_error_button_secondary" = "Verifícate sin NFC"; @@ -659,3 +659,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Voltear hacia el frente"; "onfido_doc_capture_alert_wrong_side_back_title" = "Voltear hacia atrás"; "onfido_doc_capture_alert_hold_still_title" = "No se mueva"; + +"onfido_doc_capture_alert_photo_page_title" = "Mostrar solo la página de la foto"; +"onfido_doc_capture_alert_tilted_title" = "Sostenga el documento recto"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Grabando vídeo"; \ No newline at end of file diff --git a/localization/Localizable_FR.strings b/localization/Localizable_FR.strings index e0214e3..3fc347a 100644 --- a/localization/Localizable_FR.strings +++ b/localization/Localizable_FR.strings @@ -258,19 +258,19 @@ /* User consent */ "onfido_app_title_user_consent" = "Vérification d’identité"; -"onfido_user_consent_prompt_no_consent_title" = "Are you sure?"; -"onfido_user_consent_prompt_no_consent_detail" = "If you do not accept Onfido’s privacy statements and terms of service, we will not be able to verify your identity and you will exit this step."; -"onfido_user_consent_prompt_button_secondary" = "Review again"; -"onfido_user_consent_prompt_button_primary" = "Yes, don’t verify me"; -"onfido_user_consent_button_primary" = "Accept"; -"onfido_user_consent_button_secondary" = "Do not accept"; +"onfido_user_consent_prompt_no_consent_title" = "Êtes-vous sûr ?"; +"onfido_user_consent_prompt_no_consent_detail" = "Si vous n'acceptez pas les déclarations de confidentialité et les conditions d'utilisation d'Onfido, nous ne pourrons pas vérifier votre identité et vous quitterez cette étape."; +"onfido_user_consent_prompt_button_secondary" = "Revoir encore"; +"onfido_user_consent_prompt_button_primary" = "Oui, ne me vérifiez pas"; +"onfido_user_consent_button_primary" = "Accepter"; +"onfido_user_consent_button_secondary" = "Ne pas accepter"; /* User consent load error */ "onfido_app_title_user_consent_load_fail" = "Vérification d’identité"; -"onfido_user_consent_load_fail_title" = "Content failed to load"; -"onfido_user_consent_load_fail_detail" = "Check that your connection is stable, then try again"; -"onfido_user_consent_load_fail_button_primary" = "Reload screen"; +"onfido_user_consent_load_fail_title" = "Le contenu n'a pas pu être chargé"; +"onfido_user_consent_load_fail_detail" = "Vérifiez que votre connexion est stable, puis réessayez"; +"onfido_user_consent_load_fail_button_primary" = "Recharger l'écran"; "onfido_country_select_search_results_none_accessibility" = "Aucun résultat correspondant"; "onfido_country_select_search_results_one_accessibility" = "Un résultat trouvé"; "onfido_country_select_search_results_multiple_accessibility" = "%d résultats trouvés"; @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Tour de tête détecté"; "onfido_welcome_list_header" = "Utilisez votre appareil pour:"; "onfido_welcome_list_item_doc_photo" = "Prendre une photo de votre pièce d’identité"; -"onfido_welcome_list_item_doc_generic" = "Scannez votre pièce d’identité"; +"onfido_welcome_list_item_doc_generic" = "Enregistrez une vidéo de votre document d'identité"; "onfido_welcome_list_item_face_photo" = "Prendre une photo de votre document"; "onfido_welcome_list_item_face_video" = "Enregistrer une vidéo de votre visage"; "onfido_doc_capture_header_live_guidance_no_doc" = "Tenez votre téléphone au-dessus du document"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Perte de contact avec la carte NFC\nDéplacez légèrement votre appareil vers le haut ou le bas."; "onfido_nfc_scan_lost-connection_sheet_4" = "Connexion perdue\nNous n'avons pas pu scanner votre document"; "onfido_nfc_scan_incorrect-can_sheet_5" = "CAN incorrect"; -"onfido_enter_can_error_label" = "Il vous reste %d %@."; +"onfido_enter_can_error_label" = "Il vous reste %1$d %2$s."; "onfido_enter_can_substring_attempt_singular" = "tentative"; "onfido_enter_can_substring_attempt_plural" = "tentatives"; "onfido_nfc_scan_error_button_secondary" = "Vérifier sans NFC"; @@ -659,3 +659,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Retournez côté recto"; "onfido_doc_capture_alert_wrong_side_back_title" = "Retournez côté verso"; "onfido_doc_capture_alert_hold_still_title" = "Restez immobile"; + +"onfido_doc_capture_alert_photo_page_title" = "Afficher uniquement la page photo"; +"onfido_doc_capture_alert_tilted_title" = "Tenez le document droit"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Enregistrement vidéo"; \ No newline at end of file diff --git a/localization/Localizable_IT.strings b/localization/Localizable_IT.strings index c12049c..011d4e5 100644 --- a/localization/Localizable_IT.strings +++ b/localization/Localizable_IT.strings @@ -257,20 +257,20 @@ /* User consent */ -"onfido_app_title_user_consent" = "Verify your identity"; -"onfido_user_consent_prompt_no_consent_title" = "Are you sure?"; -"onfido_user_consent_prompt_no_consent_detail" = "If you do not accept Onfido’s privacy statements and terms of service, we will not be able to verify your identity and you will exit this step."; -"onfido_user_consent_prompt_button_secondary" = "Review again"; -"onfido_user_consent_prompt_button_primary" = "Yes, don’t verify me"; -"onfido_user_consent_button_primary" = "Accept"; -"onfido_user_consent_button_secondary" = "Do not accept"; +"onfido_app_title_user_consent" = "Verifica la tua identità"; +"onfido_user_consent_prompt_no_consent_title" = "Sei sicuro?"; +"onfido_user_consent_prompt_no_consent_detail" = "Se non accetti le dichiarazioni sulla privacy e i termini di servizio di Onfido, non saremo in grado di verificare la tua identità e interromperai questo passaggio."; +"onfido_user_consent_prompt_button_secondary" = "Rivedi di nuovo"; +"onfido_user_consent_prompt_button_primary" = "Sì, non mi verificare"; +"onfido_user_consent_button_primary" = "Accetta"; +"onfido_user_consent_button_secondary" = "Non accettare"; /* User consent load error */ -"onfido_app_title_user_consent_load_fail" = "Verify your identity"; -"onfido_user_consent_load_fail_title" = "Content failed to load"; -"onfido_user_consent_load_fail_detail" = "Check that your connection is stable, then try again"; -"onfido_user_consent_load_fail_button_primary" = "Reload screen"; +"onfido_app_title_user_consent_load_fail" = "Verifica la tua identità"; +"onfido_user_consent_load_fail_title" = "Il contenuto non è riuscito a caricare"; +"onfido_user_consent_load_fail_detail" = "Verifica che la tua connessione sia stabile e riprova"; +"onfido_user_consent_load_fail_button_primary" = "Ricarica schermo"; "onfido_country_select_search_results_none_accessibility" = "Nessun risultato trovato"; "onfido_country_select_search_results_one_accessibility" = "Un risultato trovato"; "onfido_country_select_search_results_multiple_accessibility" = "%d risultati trovati"; @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Rilevata svolta della testa"; "onfido_welcome_list_header" = "Usa il dispositivo per:"; "onfido_welcome_list_item_doc_photo" = "Scattare una foto del tuo documento d’identità"; -"onfido_welcome_list_item_doc_generic" = "Scansionare il tuo documento d’identità"; +"onfido_welcome_list_item_doc_generic" = "Registra un video del tuo documento d'identità"; "onfido_welcome_list_item_face_photo" = "Scattare una foto del tuo viso"; "onfido_welcome_list_item_face_video" = "Registrare un video del tuo viso"; "onfido_doc_capture_header_live_guidance_no_doc" = "Tenere il telefono sopra il documento"; @@ -558,7 +558,7 @@ "onfido_nfc_scan_error_list_item" = "Rimuovi la cover del telefono"; "onfido_nfc_scan_error_list_item_2" = "Una volta avviata la scansione, rimanere fermi"; "onfido_nfc_scan_error_button_primary" = "Ripeti la scansione"; -"onfido_welcome_nfc_title" = ""; +"onfido_welcome_nfc_title" = "Verifica la tua identità"; "onfido_welcome_nfc_subtitle" = ""; "onfido_welcome_nfc_list_header_nfc" = ""; "onfido_welcome_nfc_list_item" = ""; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Perdita di contatto con la scheda NFC\nMuovere leggermente il dispositivo verso l'alto o verso il basso."; "onfido_nfc_scan_lost-connection_sheet_4" = "Connessione persa\nNon è stato possibile scansionare il documento"; "onfido_nfc_scan_incorrect-can_sheet_5" = "CAN non corretto"; -"onfido_enter_can_error_label" = "Ti sono rimaste %d %@."; +"onfido_enter_can_error_label" = "Ti sono rimaste %1$d %2$s."; "onfido_enter_can_substring_attempt_singular" = "tentativo"; "onfido_enter_can_substring_attempt_plural" = "tentativi"; "onfido_nfc_scan_error_button_secondary" = "Ottenere la verifica senza NFC"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Capovolgere sul lato anteriore"; "onfido_doc_capture_alert_wrong_side_back_title" = "Capovolgi sul retro"; "onfido_doc_capture_alert_hold_still_title" = "Resta immobile"; + +"onfido_doc_capture_alert_photo_page_title" = "Mostra solo la pagina della foto"; +"onfido_doc_capture_alert_tilted_title" = "Tieni il documento dritto"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Registrazione video"; \ No newline at end of file diff --git a/localization/Localizable_NL.strings b/localization/Localizable_NL.strings index a2d7ec0..c775854 100644 --- a/localization/Localizable_NL.strings +++ b/localization/Localizable_NL.strings @@ -259,18 +259,18 @@ "onfido_app_title_user_consent" = "Verifieer uw identiteit"; "onfido_user_consent_prompt_no_consent_title" = "Weet u het zeker?"; -"onfido_user_consent_prompt_no_consent_detail" = "If you do not accept Onfido’s privacy statements and terms of service, we will not be able to verify your identity and you will exit this step."; +"onfido_user_consent_prompt_no_consent_detail" = "Als u de privacyverklaringen en de servicevoorwaarden van Onfido niet accepteert, kunnen we uw identiteit niet verifiëren en zult u deze stap verlaten."; "onfido_user_consent_prompt_button_secondary" = "Controleer opniew"; -"onfido_user_consent_prompt_button_primary" = "Yes, don’t verify me"; +"onfido_user_consent_prompt_button_primary" = "Ja, verifieer mij niet"; "onfido_user_consent_button_primary" = "Accepteren"; -"onfido_user_consent_button_secondary" = "Niet accepteren"; +"onfido_user_consent_button_secondary" = "Niet aanvaarden"; /* User consent load error */ "onfido_app_title_user_consent_load_fail" = "Verifieer uw identiteit"; -"onfido_user_consent_load_fail_title" = "Content failed to load"; -"onfido_user_consent_load_fail_detail" = "Check that your connection is stable, then try again"; -"onfido_user_consent_load_fail_button_primary" = "Reload screen"; +"onfido_user_consent_load_fail_title" = "Inhoud laden mislukt"; +"onfido_user_consent_load_fail_detail" = "Controleer of u een stabiele verbinding heeft en probeer het daarna opnieuw"; +"onfido_user_consent_load_fail_button_primary" = "Scherm opnieuw laden"; "onfido_country_select_search_results_none_accessibility" = "Geen passende resultaten"; "onfido_country_select_search_results_one_accessibility" = "Eén resultaat gevonden"; "onfido_country_select_search_results_multiple_accessibility" = "%d resultaten gevonden"; @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Draaien van het hoofd gedetecteerd"; "onfido_welcome_list_header" = "Gebruik uw apparaat om:"; "onfido_welcome_list_item_doc_photo" = "Maak een foto van uw identiteitsbewijs"; -"onfido_welcome_list_item_doc_generic" = "Scan uw identiteitsbewijs"; +"onfido_welcome_list_item_doc_generic" = "Maak een video van uw identiteitsdocument"; "onfido_welcome_list_item_face_photo" = "Maak een foto van uw gezicht"; "onfido_welcome_list_item_face_video" = "Maak een fimpje van uw gezicht"; "onfido_doc_capture_header_live_guidance_no_doc" = "Houd uw telefoon boven het document"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Contact met NFC-kaart verloren\nBeweeg uw apparaat iets omhoog of omlaag."; "onfido_nfc_scan_lost-connection_sheet_4" = "Verbinding verbroken\nWe konden uw document niet scannen"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Onjuiste CAN"; -"onfido_enter_can_error_label" = "Je hebt %d %@ over."; +"onfido_enter_can_error_label" = "Je hebt %1$d %2$s over."; "onfido_enter_can_substring_attempt_singular" = "poging"; "onfido_enter_can_substring_attempt_plural" = "pogingen"; "onfido_nfc_scan_error_button_secondary" = "Word geverifieerd zonder NFC"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Draai naar de voorkant"; "onfido_doc_capture_alert_wrong_side_back_title" = "Draai naar de achterkant"; "onfido_doc_capture_alert_hold_still_title" = "Niet bewegen"; + +"onfido_doc_capture_alert_photo_page_title" = "Toon alleen fotopagina"; +"onfido_doc_capture_alert_tilted_title" = "Houd het document recht"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Video opnemen"; \ No newline at end of file diff --git a/localization/Localizable_PT.strings b/localization/Localizable_PT.strings index 7b21162..1bf459a 100644 --- a/localization/Localizable_PT.strings +++ b/localization/Localizable_PT.strings @@ -257,20 +257,20 @@ /* User consent */ -"onfido_app_title_user_consent" = "Verify your identity"; -"onfido_user_consent_prompt_no_consent_title" = "Are you sure?"; -"onfido_user_consent_prompt_no_consent_detail" = "If you do not accept Onfido’s privacy statements and terms of service, we will not be able to verify your identity and you will exit this step."; -"onfido_user_consent_prompt_button_secondary" = "Review again"; -"onfido_user_consent_prompt_button_primary" = "Yes, don’t verify me"; -"onfido_user_consent_button_primary" = "Acepipe"; -"onfido_user_consent_button_secondary" = "Do not accept"; +"onfido_app_title_user_consent" = "Verifique a sua identidade"; +"onfido_user_consent_prompt_no_consent_title" = "Tem a certeza?"; +"onfido_user_consent_prompt_no_consent_detail" = "Se não aceitar as declarações de privacidade e os termos de serviço da Onfido, não poderemos verificar a sua identidade e você sairá deste passo."; +"onfido_user_consent_prompt_button_secondary" = "Reveja novamente"; +"onfido_user_consent_prompt_button_primary" = "Sim, não me verifique"; +"onfido_user_consent_button_primary" = "Aceitar"; +"onfido_user_consent_button_secondary" = "Não aceite"; /* User consent load error */ -"onfido_app_title_user_consent_load_fail" = "Verify your identity"; -"onfido_user_consent_load_fail_title" = "Content failed to load"; -"onfido_user_consent_load_fail_detail" = "Check that your connection is stable, then try again"; -"onfido_user_consent_load_fail_button_primary" = "Reload screen"; +"onfido_app_title_user_consent_load_fail" = "Verifique a sua identidade"; +"onfido_user_consent_load_fail_title" = "O conteúdo falhou ao carregar"; +"onfido_user_consent_load_fail_detail" = "Verifique se a sua ligação é estável e tente novamente"; +"onfido_user_consent_load_fail_button_primary" = "Recarregar ecrã"; "onfido_country_select_search_results_none_accessibility" = "Sem resultados"; "onfido_country_select_search_results_one_accessibility" = "Um resultado encontrados"; "onfido_country_select_search_results_multiple_accessibility" = "%d resultados encontrados"; @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Cabeça virada detectada"; "onfido_welcome_list_header" = "Utilize o seu dispositivo para:"; "onfido_welcome_list_item_doc_photo" = "Tire uma fotografia de um documento de identidade"; -"onfido_welcome_list_item_doc_generic" = "Digitalizar o seu documento de identidade"; +"onfido_welcome_list_item_doc_generic" = "Faça uma gravação do seu documento de identidade"; "onfido_welcome_list_item_face_photo" = "Tirar uma foto da sua cara"; "onfido_welcome_list_item_face_video" = "Grave um vídeo da sua cara"; "onfido_doc_capture_header_live_guidance_no_doc" = "Mantenha o seu telemóvel sobre o documento"; @@ -392,9 +392,9 @@ "onfido_avc_face_capture_alert_too_fast_body" = "Tente novamente e rode a sua cabeça mais lentamente"; "onfido_avc_face_capture_alert_too_fast_button_primary" = "Tentar novamente"; "onfido_avc_no_face_detected_title" = "Não conseguimos detetar o seu rosto"; -"onfido_avc_no_face_detected_list_item_lighting" = "Certifique-se de está num local com boa iluminação"; +"onfido_avc_no_face_detected_list_item_lighting" = "Certifique-se de que está num local com boa iluminação"; "onfido_avc_no_face_detected_list_item_eyes" = "Assegure-se de que os seus olhos estão claramente visíveis"; -"onfido_avc_no_face_detected_list_item_mask" = "Certifique-se de que remove as máscaras ou outros artigos que cobrem o seu rosto. Os óculos não precisa de retirar"; +"onfido_avc_no_face_detected_list_item_mask" = "Certifique-se de que remove as máscaras ou outros objetos que cobrem o seu rosto. Os óculos não precisa de retirar"; "onfido_avc_no_face_detected_list_item_face" = "Certifique-se de que apenas mostra a sua cara. Não precisamos de ver a sua identificação"; "onfido_avc_no_face_detected_button_primary_restart" = "Reiniciar a gravação"; "onfido_avc_confirmation_title" = "Gravação concluída"; @@ -558,7 +558,7 @@ "onfido_nfc_scan_error_list_item" = "Remova a capa do celular"; "onfido_nfc_scan_error_list_item_2" = "Assim que a digitalização começar, não se mova"; "onfido_nfc_scan_error_button_primary" = "Repetir digitalização"; -"onfido_welcome_nfc_title" = ""; +"onfido_welcome_nfc_title" = "Verifique a sua identidade"; "onfido_welcome_nfc_subtitle" = ""; "onfido_welcome_nfc_list_header_nfc" = ""; "onfido_welcome_nfc_list_item" = ""; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Perda de contacto com cartão NFC\nMova o seu dispositivo ligeiramente para cima ou para baixo."; "onfido_nfc_scan_lost-connection_sheet_4" = "Ligação perdida\nNão podíamos digitalizar o seu documento"; "onfido_nfc_scan_incorrect-can_sheet_5" = "CAN incorrecto"; -"onfido_enter_can_error_label" = "Ainda tem %d %@."; +"onfido_enter_can_error_label" = "Ainda tem %1$d %2$s."; "onfido_enter_can_substring_attempt_singular" = "tentativa"; "onfido_enter_can_substring_attempt_plural" = "tentativas"; "onfido_nfc_scan_error_button_secondary" = "Seja verificado sem NFC"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Virar para a frente"; "onfido_doc_capture_alert_wrong_side_back_title" = "Vire para trás"; "onfido_doc_capture_alert_hold_still_title" = "Mantenha-se imóvel"; + +"onfido_doc_capture_alert_photo_page_title" = "Mostre apenas a página da foto"; +"onfido_doc_capture_alert_tilted_title" = "Mantenha o documento direito"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "A gravar vídeo"; \ No newline at end of file diff --git a/localization/Localizable_ar.strings b/localization/Localizable_ar.strings index f505ca7..6f929a6 100644 --- a/localization/Localizable_ar.strings +++ b/localization/Localizable_ar.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "تم اكتشاف التفات الرأس"; "onfido_welcome_list_header" = "استخدم جهازك من أجل:"; "onfido_welcome_list_item_doc_photo" = "التقط صورة لمستند هويتك"; -"onfido_welcome_list_item_doc_generic" = "امسح مستند هويتك ضوئيًا"; +"onfido_welcome_list_item_doc_generic" = "قم بتسجيل فيديو لمستند هويتك"; "onfido_welcome_list_item_face_photo" = "التقط صورة لوجهك"; "onfido_welcome_list_item_face_video" = "سجِّل فيديو لوجهك"; "onfido_doc_capture_header_live_guidance_no_doc" = "امسك هاتفك فوق المستند"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "فقد الاتصال ببطاقة NFC\nحرك جهازك للأعلى أو للأسفل قليلاً."; "onfido_nfc_scan_lost-connection_sheet_4" = "الاتصال مفقود\nلم نتمكن من مسح المستند ضوئيًا"; "onfido_nfc_scan_incorrect-can_sheet_5" = "CAN غير صحيحة"; -"onfido_enter_can_error_label" = "لدي %d %@ متبقية."; +"onfido_enter_can_error_label" = "لدي %1$d %2$s متبقية."; "onfido_enter_can_substring_attempt_singular" = "محاولة"; "onfido_enter_can_substring_attempt_plural" = "محاولات"; "onfido_nfc_scan_error_button_secondary" = "الحصول على التحقق دون NFC"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "اقلبه إلى الجانب الأمامي"; "onfido_doc_capture_alert_wrong_side_back_title" = "قلب للجانب الخلفي"; "onfido_doc_capture_alert_hold_still_title" = "ابقَ ساكنًا"; + +"onfido_doc_capture_alert_photo_page_title" = "أظهر صفحة الصور فقط"; +"onfido_doc_capture_alert_tilted_title" = "أمسك الوثيقة بشكل مستقيم"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "تسجيل الفيديو"; \ No newline at end of file diff --git a/localization/Localizable_bg.strings b/localization/Localizable_bg.strings index f8d33ab..751b433 100644 --- a/localization/Localizable_bg.strings +++ b/localization/Localizable_bg.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Засечено е движение на главата"; "onfido_welcome_list_header" = "Използвайте устройството си, за да:"; "onfido_welcome_list_item_doc_photo" = "Направите снимка на документа си за самоличност"; -"onfido_welcome_list_item_doc_generic" = "Сканирате документа си за самоличност"; +"onfido_welcome_list_item_doc_generic" = "Запишете видео на вашия документ за самоличност"; "onfido_welcome_list_item_face_photo" = "Направите снимка на лицето си"; "onfido_welcome_list_item_face_video" = "Запишете видео на лицето си"; "onfido_doc_capture_header_live_guidance_no_doc" = "Задръжте телефона си над документа"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Прекъснат контакт с NFC картата\nПреместете устройството си леко нагоре или надолу."; "onfido_nfc_scan_lost-connection_sheet_4" = "Връзката прекъсна\nНе можахме да сканираме документа ви"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Неправилен CAN"; -"onfido_enter_can_error_label" = "Остава ви %d %@."; +"onfido_enter_can_error_label" = "Остава ви %1$d %2$s."; "onfido_enter_can_substring_attempt_singular" = "опит"; "onfido_enter_can_substring_attempt_plural" = "опити"; "onfido_nfc_scan_error_button_secondary" = "Получаване на потвърждение без NFC"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Обърнете на предната страна"; "onfido_doc_capture_alert_wrong_side_back_title" = "Обърнете на задната страна"; "onfido_doc_capture_alert_hold_still_title" = "Стойте неподвижно"; + +"onfido_doc_capture_alert_photo_page_title" = "Показване само на страницата със снимки"; +"onfido_doc_capture_alert_tilted_title" = "Дръжте документа право"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Запис на видео"; \ No newline at end of file diff --git a/localization/Localizable_cs.strings b/localization/Localizable_cs.strings index 25cd32a..092ba7d 100644 --- a/localization/Localizable_cs.strings +++ b/localization/Localizable_cs.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Detekce otočení hlavy"; "onfido_welcome_list_header" = "Pomocí svého zařízení můžete:"; "onfido_welcome_list_item_doc_photo" = "Vyfoťte si svůj doklad totožnosti"; -"onfido_welcome_list_item_doc_generic" = "Naskenujte svůj doklad totožnosti"; +"onfido_welcome_list_item_doc_generic" = "Vytvořte video svého dokladu totožnosti"; "onfido_welcome_list_item_face_photo" = "Vyfotit svůj obličej"; "onfido_welcome_list_item_face_video" = "Nahrát video svého obličeje"; "onfido_doc_capture_header_live_guidance_no_doc" = "Podržte telefon nad dokumentem"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Ztráta kontaktu s kartou NFC\nPosuňte zařízení mírně nahoru nebo dolů."; "onfido_nfc_scan_lost-connection_sheet_4" = "Ztráta spojení\nVáš dokument se nám nepodařilo naskenovat"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Nesprávný CAN"; -"onfido_enter_can_error_label" = "Zbývá vám %d %@."; +"onfido_enter_can_error_label" = "Zbývá vám %1$d %2$s."; "onfido_enter_can_substring_attempt_singular" = "pokus"; "onfido_enter_can_substring_attempt_plural" = "pokusy"; "onfido_nfc_scan_error_button_secondary" = "Získej ověření bez NFC"; @@ -665,3 +665,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Překlopte na přední stranu"; "onfido_doc_capture_alert_wrong_side_back_title" = "Překlopte na zadní stranu"; "onfido_doc_capture_alert_hold_still_title" = "Nehýbej se"; + +"onfido_doc_capture_alert_photo_page_title" = "Zobrazit pouze stránku s fotografiemi"; +"onfido_doc_capture_alert_tilted_title" = "Držte dokument rovně"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Nahrávání videa"; \ No newline at end of file diff --git a/localization/Localizable_da.strings b/localization/Localizable_da.strings index f650e08..e997bc5 100644 --- a/localization/Localizable_da.strings +++ b/localization/Localizable_da.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Drejning af hovedet detekteret"; "onfido_welcome_list_header" = "Brug din enhed til at:"; "onfido_welcome_list_item_doc_photo" = "Tag et billede af dit ID-dokument"; -"onfido_welcome_list_item_doc_generic" = "Scan dit ID-dokument"; +"onfido_welcome_list_item_doc_generic" = "Optag en video af dit identitetsdokument"; "onfido_welcome_list_item_face_photo" = "Tag et billede af dit ansigt"; "onfido_welcome_list_item_face_video" = "Optag en video af dit ansigt"; "onfido_doc_capture_header_live_guidance_no_doc" = "Hold din telefon oven over dokumentet"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Ingen berøring af NFC-kortet\nFlyt enheden lidt op- eller nedad."; "onfido_nfc_scan_lost-connection_sheet_4" = "Ingen forbindelse\nVi kan ikke scanne dit dokument"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Forkert CAN"; -"onfido_enter_can_error_label" = "Du har %d %@ tilbage."; +"onfido_enter_can_error_label" = "Du har %1$d %2$s tilbage."; "onfido_enter_can_substring_attempt_singular" = "forsøg"; "onfido_enter_can_substring_attempt_plural" = "forsøg"; "onfido_nfc_scan_error_button_secondary" = "Bliv bekræftet uden NFC"; @@ -665,3 +665,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Vend til forsiden"; "onfido_doc_capture_alert_wrong_side_back_title" = "Vend til bagsiden"; "onfido_doc_capture_alert_hold_still_title" = "Hold det stille"; + +"onfido_doc_capture_alert_photo_page_title" = "Vis kun fotoside"; +"onfido_doc_capture_alert_tilted_title" = "Hold dokumentet lige"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Optager video"; \ No newline at end of file diff --git a/localization/Localizable_el.strings b/localization/Localizable_el.strings index 6e95c08..ab17433 100644 --- a/localization/Localizable_el.strings +++ b/localization/Localizable_el.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Ανιχνεύτηκε στροφή κεφαλής"; "onfido_welcome_list_header" = "Χρησιμοποιήστε τη συσκευή σας για να:"; "onfido_welcome_list_item_doc_photo" = "Τραβήξετε μια φωτογραφία του εγγράφου ταυτότητάς σας"; -"onfido_welcome_list_item_doc_generic" = "Σαρώσετε το έγγραφο ταυτότητάς σας"; +"onfido_welcome_list_item_doc_generic" = "Καταγράψτε ένα βίντεο του εγγράφου ταυτότητάς σας"; "onfido_welcome_list_item_face_photo" = "Τραβήξετε μια φωτογραφία του προσώπου σας"; "onfido_welcome_list_item_face_video" = "Εγγράψτε ένα βίντεο του προσώπου σας"; "onfido_doc_capture_header_live_guidance_no_doc" = "Κρατήστε το τηλέφωνό σας επάνω από το έγγραφο"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Χάθηκε η επαφή με την κάρτα NFC\nΜετακινήστε τη συσκευή σας ελαφρώς προς τα πάνω ή προς τα κάτω."; "onfido_nfc_scan_lost-connection_sheet_4" = "Χάθηκε η σύνδεση\nΔεν ήταν δυνατή η σάρωση του εγγράφου σας"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Εσφαλμένο CAN"; -"onfido_enter_can_error_label" = "Έχετε %d %@ ακόμη."; +"onfido_enter_can_error_label" = "Έχετε %1$d %2$s ακόμη."; "onfido_enter_can_substring_attempt_singular" = "προσπάθεια"; "onfido_enter_can_substring_attempt_plural" = "προσπάθειες"; "onfido_nfc_scan_error_button_secondary" = "Επαληθεύστε χωρίς NFC"; @@ -665,3 +665,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Γυρίστε στην μπροστινή πλευρά"; "onfido_doc_capture_alert_wrong_side_back_title" = "Αναποδογυρίστε στην πίσω πλευρά"; "onfido_doc_capture_alert_hold_still_title" = "Μείνετε ακίνητος/η"; + +"onfido_doc_capture_alert_photo_page_title" = "Εμφάνιση μόνο της σελίδας φωτογραφίας"; +"onfido_doc_capture_alert_tilted_title" = "Κρατήστε το έγγραφο ευθεία"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Καταγραφή βίντεο"; \ No newline at end of file diff --git a/localization/Localizable_en-GB.strings b/localization/Localizable_en-GB.strings index b5419f9..a1ac8d4 100644 --- a/localization/Localizable_en-GB.strings +++ b/localization/Localizable_en-GB.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Head turn detected"; "onfido_welcome_list_header" = "Use your device to:"; "onfido_welcome_list_item_doc_photo" = "Take a photo of your identity document"; -"onfido_welcome_list_item_doc_generic" = "Scan your identity document"; +"onfido_welcome_list_item_doc_generic" = "Make a video recording of your identity document"; "onfido_welcome_list_item_face_photo" = "Take a photo of your face"; "onfido_welcome_list_item_face_video" = "Record a video of your face"; "onfido_doc_capture_header_live_guidance_no_doc" = "Hold your phone over the document"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Lost contact with NFC card\nMove your device slightly up or down."; "onfido_nfc_scan_lost-connection_sheet_4" = "Lost connection\nWe couldn’t scan your document"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Incorrect CAN"; -"onfido_enter_can_error_label" = "You have %d %@ left."; +"onfido_enter_can_error_label" = "You have %1$d %2$s left."; "onfido_enter_can_substring_attempt_singular" = "attempt"; "onfido_enter_can_substring_attempt_plural" = "attempts"; "onfido_nfc_scan_error_button_secondary" = "Get verified without NFC"; @@ -665,3 +665,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Flip to front side"; "onfido_doc_capture_alert_wrong_side_back_title" = "Flip to back side"; "onfido_doc_capture_alert_hold_still_title" = "Hold still"; + +"onfido_doc_capture_alert_photo_page_title" = "Show photo page only"; +"onfido_doc_capture_alert_tilted_title" = "Hold document straight"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Recording video"; \ No newline at end of file diff --git a/localization/Localizable_es-419.strings b/localization/Localizable_es-419.strings index 8e0f4ee..058c74f 100644 --- a/localization/Localizable_es-419.strings +++ b/localization/Localizable_es-419.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Giro de cabeza detectado"; "onfido_welcome_list_header" = "Usa tu dispositivo para:"; "onfido_welcome_list_item_doc_photo" = "Tomar una foto de tu documento de identidad"; -"onfido_welcome_list_item_doc_generic" = "Escanear tu documento de identidad"; +"onfido_welcome_list_item_doc_generic" = "Graba un video de tu documento de identidad"; "onfido_welcome_list_item_face_photo" = "Tomar una foto de tu rostro"; "onfido_welcome_list_item_face_video" = "Grabar un video de tu rostro"; "onfido_doc_capture_header_live_guidance_no_doc" = "Sostén tu teléfono sobre el documento"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Pérdida de contacto con el documento NFC\nMueve el dispositivo ligeramente hacia arriba o hacia abajo."; "onfido_nfc_scan_lost-connection_sheet_4" = "Conexión perdida\nNo se pudo escanear tu documento"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Número CAN incorrecto"; -"onfido_enter_can_error_label" = "Te quedan %d %@."; +"onfido_enter_can_error_label" = "Te quedan %1$d %2$s."; "onfido_enter_can_substring_attempt_singular" = "intento"; "onfido_enter_can_substring_attempt_plural" = "intentos"; "onfido_nfc_scan_error_button_secondary" = "Obtener verificación sin NFC"; @@ -665,3 +665,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Voltear hacia el frente"; "onfido_doc_capture_alert_wrong_side_back_title" = "Voltear hacia atrás"; "onfido_doc_capture_alert_hold_still_title" = "No te muevas"; + +"onfido_doc_capture_alert_photo_page_title" = "Mostrar solo la página de la foto"; +"onfido_doc_capture_alert_tilted_title" = "Sostenga el documento recto"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Grabando video"; \ No newline at end of file diff --git a/localization/Localizable_et.strings b/localization/Localizable_et.strings index ae69762..8d4a7b1 100644 --- a/localization/Localizable_et.strings +++ b/localization/Localizable_et.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Tuvastati pööratud pea"; "onfido_welcome_list_header" = "Seadme abil saate teha järgmist."; "onfido_welcome_list_item_doc_photo" = "Isikut tõendava dokumendi pildistamine"; -"onfido_welcome_list_item_doc_generic" = "Isikut tõendava dokumendi skannimine"; +"onfido_welcome_list_item_doc_generic" = "Salvesta video oma isikut tõendavast dokumendist"; "onfido_welcome_list_item_face_photo" = "Näo pildistamine"; "onfido_welcome_list_item_face_video" = "Näost video salvestamine"; "onfido_doc_capture_header_live_guidance_no_doc" = "Hoidke telefoni dokumendi kohal"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Kontakt NFC-kiibiga kaardiga kadus\nLiigutage seadet veidi üles või alla."; "onfido_nfc_scan_lost-connection_sheet_4" = "Ühendus katkes\nMeil ei õnnestunud teie dokumenti skannida"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Vale CAN"; -"onfido_enter_can_error_label" = "Jäänud on %d %@."; +"onfido_enter_can_error_label" = "Jäänud on %1$d %2$s."; "onfido_enter_can_substring_attempt_singular" = "katse"; "onfido_enter_can_substring_attempt_plural" = "katset"; "onfido_nfc_scan_error_button_secondary" = "Kinnitamine ilma NFC-ta"; @@ -659,3 +659,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Pöörake esiküljele"; "onfido_doc_capture_alert_wrong_side_back_title" = "Pöörake tagaküljele"; "onfido_doc_capture_alert_hold_still_title" = "Olge paigal"; + +"onfido_doc_capture_alert_photo_page_title" = "Näita ainult fotolehte"; +"onfido_doc_capture_alert_tilted_title" = "Hoia dokumenti sirgelt"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Video salvestamine"; \ No newline at end of file diff --git a/localization/Localizable_fa.strings b/localization/Localizable_fa.strings index 4ab1701..ee6c338 100644 --- a/localization/Localizable_fa.strings +++ b/localization/Localizable_fa.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "چرخش سر تشخیص داده شد"; "onfido_welcome_list_header" = "از دستگاه خود برای موارد زیر استفاده کنید:"; "onfido_welcome_list_item_doc_photo" = "از مدرک هویتی خود عکس بگیرید"; -"onfido_welcome_list_item_doc_generic" = "مدارک هویتی خود را اسکن کنید"; +"onfido_welcome_list_item_doc_generic" = "یک ویدیو از سند هویتی خود ضبط کنید"; "onfido_welcome_list_item_face_photo" = "از چهره خود عکس بگیرید"; "onfido_welcome_list_item_face_video" = "از چهره خود فیلم بگیرید"; "onfido_doc_capture_header_live_guidance_no_doc" = "گوشی خود را روی مدرک نگه دارید"; @@ -665,3 +665,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "به سمت جلو برگردانید"; "onfido_doc_capture_alert_wrong_side_back_title" = "به سمت عقب برگردانید"; "onfido_doc_capture_alert_hold_still_title" = "ثابت بمانید"; + +"onfido_doc_capture_alert_photo_page_title" = "فقط صفحه عکس را نشان دهید"; +"onfido_doc_capture_alert_tilted_title" = "سند را راست نگه دارید"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "ضبط ویدیو"; \ No newline at end of file diff --git a/localization/Localizable_fi.strings b/localization/Localizable_fi.strings index 676d534..d1eb3a5 100644 --- a/localization/Localizable_fi.strings +++ b/localization/Localizable_fi.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Pään kääntyminen havaittu"; "onfido_welcome_list_header" = "Käytä laitettasi:"; "onfido_welcome_list_item_doc_photo" = "ottaaksesi kuvan henkilötodistuksestasi"; -"onfido_welcome_list_item_doc_generic" = "skannataksesi henkilötodistuksesi"; +"onfido_welcome_list_item_doc_generic" = "Tee video henkilöllisyysasiakirjastasi"; "onfido_welcome_list_item_face_photo" = "ottaaksesi kuvan kasvoistasi"; "onfido_welcome_list_item_face_video" = "tallentaaksesi videon kasvoistasi"; "onfido_doc_capture_header_live_guidance_no_doc" = "Pidä puhelintasi asiakirjan yllä"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Yhteys NFC-korttiin katkesi\nSiirrä laitettasi hieman ylös tai alas."; "onfido_nfc_scan_lost-connection_sheet_4" = "Yhteys katkesi\nAsiakirjaasi ei voitu skannata"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Virheellinen CAN"; -"onfido_enter_can_error_label" = "Sinulla on %d %@ jäljellä."; +"onfido_enter_can_error_label" = "Sinulla on %1$d %2$s jäljellä."; "onfido_enter_can_substring_attempt_singular" = "yritys"; "onfido_enter_can_substring_attempt_plural" = "yritystä"; "onfido_nfc_scan_error_button_secondary" = "Vahvista ilman NFC: tä"; @@ -665,3 +665,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Käännä etupuolelle"; "onfido_doc_capture_alert_wrong_side_back_title" = "Käännä takapuolelle"; "onfido_doc_capture_alert_hold_still_title" = "Pidä paikallaan"; + +"onfido_doc_capture_alert_photo_page_title" = "Näytä vain valokuvasivu"; +"onfido_doc_capture_alert_tilted_title" = "Pidä asiakirja suorassa"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Video tallennus"; \ No newline at end of file diff --git a/localization/Localizable_fr-CA.strings b/localization/Localizable_fr-CA.strings index fd73e0e..1623655 100644 --- a/localization/Localizable_fr-CA.strings +++ b/localization/Localizable_fr-CA.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Détection d'un mouvement de tête"; "onfido_welcome_list_header" = "Utilisez votre appareil pour:"; "onfido_welcome_list_item_doc_photo" = "Prendre une photo de votre pièce d'identité"; -"onfido_welcome_list_item_doc_generic" = "Numériser votre pièce d’identité"; +"onfido_welcome_list_item_doc_generic" = "Enregistrez une vidéo de votre document d'identité"; "onfido_welcome_list_item_face_photo" = "Prendre une photo de votre visage"; "onfido_welcome_list_item_face_video" = "Enregistrer une vidéo de votre visage"; "onfido_doc_capture_header_live_guidance_no_doc" = "Maintenez votre téléphone au-dessus du document"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Contact perdu avec la carte NFC\nDéplacez votre appareil légèrement vers le haut ou le bas."; "onfido_nfc_scan_lost-connection_sheet_4" = "Connexion perdue\nImpossible de numériser votre document"; "onfido_nfc_scan_incorrect-can_sheet_5" = "CAN incorrect"; -"onfido_enter_can_error_label" = "Il vous reste %d %@."; +"onfido_enter_can_error_label" = "Il vous reste %1$d %2$s."; "onfido_enter_can_substring_attempt_singular" = "tentative"; "onfido_enter_can_substring_attempt_plural" = "tentatives"; "onfido_nfc_scan_error_button_secondary" = "Vérifier sans NFC"; @@ -665,3 +665,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Retournez côté recto"; "onfido_doc_capture_alert_wrong_side_back_title" = "Retournez côté verso"; "onfido_doc_capture_alert_hold_still_title" = "Restez immobile"; + +"onfido_doc_capture_alert_photo_page_title" = "Afficher uniquement la page de photo"; +"onfido_doc_capture_alert_tilted_title" = "Tenez le document droit"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Enregistrement vidéo"; \ No newline at end of file diff --git a/localization/Localizable_he.strings b/localization/Localizable_he.strings index 5ef241e..7af36ee 100644 --- a/localization/Localizable_he.strings +++ b/localization/Localizable_he.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "זוהתה תנועת ראש"; "onfido_welcome_list_header" = "השתמש במכשיר שלך כדי:"; "onfido_welcome_list_item_doc_photo" = "לצלם את תעודת הזהות שלך"; -"onfido_welcome_list_item_doc_generic" = "לסרוק את תעודת הזהות שלך"; +"onfido_welcome_list_item_doc_generic" = "הקלט סרטון של תעודת הזהות שלך"; "onfido_welcome_list_item_face_photo" = "לצלם תמונה של הפנים שלך"; "onfido_welcome_list_item_face_video" = "לצלם סרטון של הפנים שלך"; "onfido_doc_capture_header_live_guidance_no_doc" = "החזק את הטלפון מעל המסמך"; @@ -665,3 +665,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "הפוך לצד הקדמי"; "onfido_doc_capture_alert_wrong_side_back_title" = "הפוך לצד האחורי"; "onfido_doc_capture_alert_hold_still_title" = "אל תזוז"; + +"onfido_doc_capture_alert_photo_page_title" = "הצג רק דף התמונה"; +"onfido_doc_capture_alert_tilted_title" = "החזק את המסמך באופן ישר"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "מקליט וידאו"; \ No newline at end of file diff --git a/localization/Localizable_hi.strings b/localization/Localizable_hi.strings index d479da1..e2e7609 100644 --- a/localization/Localizable_hi.strings +++ b/localization/Localizable_hi.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "सिर घूमने का पता चला"; "onfido_welcome_list_header" = "अपने डिवाइस का इस्तेमाल करके:"; "onfido_welcome_list_item_doc_photo" = "अपनी पहचान से जुड़े डॉक्यूमेंट की फ़ोटो खींचें"; -"onfido_welcome_list_item_doc_generic" = "अपनी पहचान से जुड़े डॉक्यूमेंट को स्कैन करें"; +"onfido_welcome_list_item_doc_generic" = "अपने पहचान पत्र का वीडियो रिकॉर्ड करें"; "onfido_welcome_list_item_face_photo" = "अपने चेहरे की फ़ोटो खींचें"; "onfido_welcome_list_item_face_video" = "अपने चेहरे का वीडियो रिकॉर्ड करें"; "onfido_doc_capture_header_live_guidance_no_doc" = "अपने फ़ोन को डॉक्यूमेंट के ऊपर होल्ड करें"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "NFC कार्ड से संपर्क टूट गया\nअपने डिवाइस को थोड़ा ऊपर या नीचे की ओर ले जाएँ।"; "onfido_nfc_scan_lost-connection_sheet_4" = "कनेक्शन टूट गया\nहम आपका डॉक्यूमेंट स्कैन नहीं कर सके"; "onfido_nfc_scan_incorrect-can_sheet_5" = "गलत CAN"; -"onfido_enter_can_error_label" = "आपके पास %d %@ बचे हैं।"; +"onfido_enter_can_error_label" = "आपके पास %1$d %2$s बचे हैं।"; "onfido_enter_can_substring_attempt_singular" = "प्रयास"; "onfido_enter_can_substring_attempt_plural" = "प्रयास"; "onfido_nfc_scan_error_button_secondary" = "एनएफसी के बिना सत्यापित हो जाओ"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "सामने की तरफ पलटें"; "onfido_doc_capture_alert_wrong_side_back_title" = "पीछे की तरफ पलटें"; "onfido_doc_capture_alert_hold_still_title" = "बिना हिलाए होल्ड करें"; + +"onfido_doc_capture_alert_photo_page_title" = "केवल फ़ोटो पेज दिखाएं"; +"onfido_doc_capture_alert_tilted_title" = "दस्तावेज़ को सीधा रखें"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "वीडियो रिकॉर्ड करना"; \ No newline at end of file diff --git a/localization/Localizable_hr.strings b/localization/Localizable_hr.strings index ba30860..9682b28 100644 --- a/localization/Localizable_hr.strings +++ b/localization/Localizable_hr.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Okrenuli ste glavu"; "onfido_welcome_list_header" = "Upotrijebite uređaj i učinite sljedeće:"; "onfido_welcome_list_item_doc_photo" = "Fotografirajte svoj identifikacijski dokument"; -"onfido_welcome_list_item_doc_generic" = "Skenirajte svoj identifikacijski dokument"; +"onfido_welcome_list_item_doc_generic" = "Snimite video svog identifikacijskog dokumenta"; "onfido_welcome_list_item_face_photo" = "Fotografirajte svoje lice"; "onfido_welcome_list_item_face_video" = "Snimite videozapis svog lica"; "onfido_doc_capture_header_live_guidance_no_doc" = "Držite mobitel iznad dokumenta"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Izgubljen je kontakt s iskaznicom s NFC čipom\nPolako pomičite uređaj gore ili dolje."; "onfido_nfc_scan_lost-connection_sheet_4" = "Veza je prekinuta\nNismo uspjeli skenirati vaš dokument"; "onfido_nfc_scan_incorrect-can_sheet_5" = "CAN nije točan"; -"onfido_enter_can_error_label" = "Preostaje vam još nekoliko pokušaja (%d %@)."; +"onfido_enter_can_error_label" = "Preostaje vam još nekoliko pokušaja (%1$d %2$s)."; "onfido_enter_can_substring_attempt_singular" = "pokušaj"; "onfido_enter_can_substring_attempt_plural" = "pokušaja"; "onfido_nfc_scan_error_button_secondary" = "Provjeri bez NFC-a"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Okrenite na prednju stranu"; "onfido_doc_capture_alert_wrong_side_back_title" = "Okrenite na stražnju stranu"; "onfido_doc_capture_alert_hold_still_title" = "Držite mirno"; + +"onfido_doc_capture_alert_photo_page_title" = "Prikaži samo stranicu s fotografijama"; +"onfido_doc_capture_alert_tilted_title" = "Držite dokument ravno"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Snimanje videa"; \ No newline at end of file diff --git a/localization/Localizable_hu.strings b/localization/Localizable_hu.strings index 2905b1e..8341450 100644 --- a/localization/Localizable_hu.strings +++ b/localization/Localizable_hu.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Fejforgás észlelve"; "onfido_welcome_list_header" = "Használja eszközét a következőkhöz:"; "onfido_welcome_list_item_doc_photo" = "Készítsen fényképet személyazonosító okmányáról"; -"onfido_welcome_list_item_doc_generic" = "Szkennelje be személyazonosító okmányát"; +"onfido_welcome_list_item_doc_generic" = "Készítsen videót személyazonosító okmányáról"; "onfido_welcome_list_item_face_photo" = "Fényképezze le az arcát"; "onfido_welcome_list_item_face_video" = "Készítsen videófelvételt az arcáról"; "onfido_doc_capture_header_live_guidance_no_doc" = "Tartsa a telefont a dokumentum fölé"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Megszakadt a kapcsolat az NFC-kártyával\nMozgassa az eszközt kissé felfele vagy lefele."; "onfido_nfc_scan_lost-connection_sheet_4" = "Megszakadt a kapcsolat\nNem tudtuk beolvasni a dokumentumát"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Helytelen CAN"; -"onfido_enter_can_error_label" = "Összesen %d %@ maradt."; +"onfido_enter_can_error_label" = "Összesen %1$d %2$s maradt."; "onfido_enter_can_substring_attempt_singular" = "próbálkozás"; "onfido_enter_can_substring_attempt_plural" = "próbálkozások"; "onfido_nfc_scan_error_button_secondary" = "Ellenőrzés NFC nélkül"; @@ -658,5 +658,10 @@ "onfido_doc_capture_alert_rotated_title" = "Forgassa el a dokumentumot"; "onfido_doc_capture_alert_too_far_title" = "Közelítsen"; "onfido_doc_capture_alert_wrong_side_front_title" = "Fordítsa az elülső oldalra"; -"onfido_doc_capture_alert_wrong_side_back_title" = "Fordítsa a hátsó oldalra"; +"onfido_doc_capture_alert_wrong_side_back_title" = "Fordítsa meg a dokumentumot"; "onfido_doc_capture_alert_hold_still_title" = "Ne mozduljon"; + +"onfido_doc_capture_alert_photo_page_title" = "Mutassa csak a fényképes oldalt"; +"onfido_doc_capture_alert_tilted_title" = "Tartsa egyenesen az okmányt"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Videó rögzítése"; \ No newline at end of file diff --git a/localization/Localizable_hy.strings b/localization/Localizable_hy.strings index 80b5afb..1676164 100644 --- a/localization/Localizable_hy.strings +++ b/localization/Localizable_hy.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Գլխի շարժում է նկատվել"; "onfido_welcome_list_header" = "Օգտագործեք ձեր սարքը հետևյալ նպատակներով․"; "onfido_welcome_list_item_doc_photo" = "Լուսանկարեք ձեր անձը հաստատող փաստաթուղթը"; -"onfido_welcome_list_item_doc_generic" = "Սկանավորեք ձեր անձը հաստատող փաստաթուղթը"; +"onfido_welcome_list_item_doc_generic" = "Ձեր անձը հաստատող փաստաթուղթի վիդեոն գրանցեք"; "onfido_welcome_list_item_face_photo" = "Լուսանկարեք ձեր դեմքը"; "onfido_welcome_list_item_face_video" = "Տեսագրեք ձեր դեմքը"; "onfido_doc_capture_header_live_guidance_no_doc" = "Հեռախոսը պահեք փաստաթղթի վրա։"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "NFC քարտի հետ կապը կորել է\nՍարքը մի փոքր վերև կամ ներքև շարժեք։"; "onfido_nfc_scan_lost-connection_sheet_4" = "Կապի խափանում\nՁեր փաստաթուղթը սկանավորել չհաջողվեց"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Սխալ CAN"; -"onfido_enter_can_error_label" = "Ձեզ մնացել է %d %@։"; +"onfido_enter_can_error_label" = "Ձեզ մնացել է %1$d %2$s։"; "onfido_enter_can_substring_attempt_singular" = "փորձ"; "onfido_enter_can_substring_attempt_plural" = "փորձեր"; "onfido_nfc_scan_error_button_secondary" = "Ստացեք հաստատում առանց NFC - ի"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Շրջեք առջևի կողմը"; "onfido_doc_capture_alert_wrong_side_back_title" = "Շրջեք հետևի կողմը"; "onfido_doc_capture_alert_hold_still_title" = "Մի շարժվեք"; + +"onfido_doc_capture_alert_photo_page_title" = "Ցուցադրել միայն լուսանկարի էջը"; +"onfido_doc_capture_alert_tilted_title" = "Պահեք փաստաթուղթը ուղիղ"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Տեսանյութի գրանցում"; \ No newline at end of file diff --git a/localization/Localizable_id.strings b/localization/Localizable_id.strings index ff65d0a..a03a6ab 100644 --- a/localization/Localizable_id.strings +++ b/localization/Localizable_id.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Kepala memutar terdeteksi"; "onfido_welcome_list_header" = "Gunakan perangkat Anda untuk:"; "onfido_welcome_list_item_doc_photo" = "Mengambil foto dokumen identitas Anda"; -"onfido_welcome_list_item_doc_generic" = "Memindai dokumen identitas Anda"; +"onfido_welcome_list_item_doc_generic" = "Rekam video dari dokumen identitas Anda"; "onfido_welcome_list_item_face_photo" = "Mengambil foto wajah Anda"; "onfido_welcome_list_item_face_video" = "Merekam video wajah Anda"; "onfido_doc_capture_header_live_guidance_no_doc" = "Tahan ponsel Anda di hadapan dokumen"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Kehilangan kontak dengan kartu NFC\nGerakkan perangkat Anda ke atas atau ke bawah sedikit."; "onfido_nfc_scan_lost-connection_sheet_4" = "Koneksi terputus\nKami tidak dapat memindai dokumen Anda"; "onfido_nfc_scan_incorrect-can_sheet_5" = "CAN salah"; -"onfido_enter_can_error_label" = "Anda memiliki %d %@ tersisa."; +"onfido_enter_can_error_label" = "Anda memiliki %1$d %2$s tersisa."; "onfido_enter_can_substring_attempt_singular" = "upaya"; "onfido_enter_can_substring_attempt_plural" = "upaya"; "onfido_nfc_scan_error_button_secondary" = "Dapatkan verifikasi tanpa NFC"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Balik ke sisi depan"; "onfido_doc_capture_alert_wrong_side_back_title" = "Balik ke sisi belakang"; "onfido_doc_capture_alert_hold_still_title" = "Jangan sampai goyang"; + +"onfido_doc_capture_alert_photo_page_title" = "Tampilkan halaman foto saja"; +"onfido_doc_capture_alert_tilted_title" = "Tahan dokumen dengan lurus"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Merekam video"; \ No newline at end of file diff --git a/localization/Localizable_ja.strings b/localization/Localizable_ja.strings index 7d45df7..f06549b 100644 --- a/localization/Localizable_ja.strings +++ b/localization/Localizable_ja.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "顔の回転が検出されました"; "onfido_welcome_list_header" = "デバイスを使用して次のことを行います。"; "onfido_welcome_list_item_doc_photo" = "身分証明書の写真を撮影する"; -"onfido_welcome_list_item_doc_generic" = "本人確認書類をスキャンする"; +"onfido_welcome_list_item_doc_generic" = "あなたの身分証明書のビデオを記録してください"; "onfido_welcome_list_item_face_photo" = "顔写真を撮る"; "onfido_welcome_list_item_face_video" = "顔の動画を録画する"; "onfido_doc_capture_header_live_guidance_no_doc" = "ドキュメントの上でスマートフォンを固定してください"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "NFCカードとの接続を失いました\nデバイスをわずかに上下に動かしてください。"; "onfido_nfc_scan_lost-connection_sheet_4" = "接続が失われました\nドキュメントをスキャンできませんでした"; "onfido_nfc_scan_incorrect-can_sheet_5" = "CANが正しくありません"; -"onfido_enter_can_error_label" = "%d%@が残っています。"; +"onfido_enter_can_error_label" = "%1$d%2$sが残っています。"; "onfido_enter_can_substring_attempt_singular" = "試行"; "onfido_enter_can_substring_attempt_plural" = "試行"; "onfido_nfc_scan_error_button_secondary" = "NFCなしで認証を受ける"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "表側に反転"; "onfido_doc_capture_alert_wrong_side_back_title" = "裏側に裏返す"; "onfido_doc_capture_alert_hold_still_title" = "そのまま動かさないでください"; + +"onfido_doc_capture_alert_photo_page_title" = "写真ページのみを表示"; +"onfido_doc_capture_alert_tilted_title" = "書類をまっすぐに保持してください"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "ビデオを録画する"; \ No newline at end of file diff --git a/localization/Localizable_ko.strings b/localization/Localizable_ko.strings index b9ae5dc..01be483 100644 --- a/localization/Localizable_ko.strings +++ b/localization/Localizable_ko.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "고개 돌림이 감지되었습니다"; "onfido_welcome_list_header" = "기기로 진행할 작업:"; "onfido_welcome_list_item_doc_photo" = "신분증 서류 사진을 촬영합니다"; -"onfido_welcome_list_item_doc_generic" = "신분증 서류를 스캔합니다"; +"onfido_welcome_list_item_doc_generic" = "당신의 신분증 문서를 비디오로 기록하세요"; "onfido_welcome_list_item_face_photo" = "얼굴 사진을 촬영합니다"; "onfido_welcome_list_item_face_video" = "얼굴 동영상을 녹화합니다"; "onfido_doc_capture_header_live_guidance_no_doc" = "서류 위에 휴대폰 배치하기"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "NFC 카드와의 연결이 끊겼습니다.\n기기를 위아래로 천천히 옮기세요."; "onfido_nfc_scan_lost-connection_sheet_4" = "연결이 끊겼습니다\n서류를 스캔할 수 없습니다"; "onfido_nfc_scan_incorrect-can_sheet_5" = "CAN이 올바르지 않습니다"; -"onfido_enter_can_error_label" = "%d%@이(가) 남았습니다."; +"onfido_enter_can_error_label" = "%1$d%2$s이(가) 남았습니다."; "onfido_enter_can_substring_attempt_singular" = "회 시도"; "onfido_enter_can_substring_attempt_plural" = "회 시도"; "onfido_nfc_scan_error_button_secondary" = "NFC 없이 인증 받기"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "앞면으로 뒤집기"; "onfido_doc_capture_alert_wrong_side_back_title" = "뒷면으로 뒤집기"; "onfido_doc_capture_alert_hold_still_title" = "움직이지 마세요"; + +"onfido_doc_capture_alert_photo_page_title" = "사진 페이지만 표시"; +"onfido_doc_capture_alert_tilted_title" = "문서를 곧게 들어주세요"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "비디오 녹화"; \ No newline at end of file diff --git a/localization/Localizable_lt.strings b/localization/Localizable_lt.strings index 73797ea..71e1b68 100644 --- a/localization/Localizable_lt.strings +++ b/localization/Localizable_lt.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Aptiktas galvos pasukimas"; "onfido_welcome_list_header" = "Naudodami savo įrenginį, galite:"; "onfido_welcome_list_item_doc_photo" = "Nufotografuokite savo asmens tapatybės dokumentą"; -"onfido_welcome_list_item_doc_generic" = "Nuskaitykite savo asmens tapatybės dokumentą"; +"onfido_welcome_list_item_doc_generic" = "Įrašykite vaizdo įrašą su savo asmens tapatybės dokumentu"; "onfido_welcome_list_item_face_photo" = "Nufotografuokite savo veidą"; "onfido_welcome_list_item_face_video" = "Padarykite savo veido vaizdo įrašą"; "onfido_doc_capture_header_live_guidance_no_doc" = "Laikykite telefoną virš dokumento"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Nebėra sąlyčio su NFC kortele\nŠiek tiek pakelkite arba nuleiskite įrenginį."; "onfido_nfc_scan_lost-connection_sheet_4" = "Nebėra sąlyčio\nNepavyko nuskaityti jūsų dokumento"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Neteisingas CAN"; -"onfido_enter_can_error_label" = "Jums liko %d %@."; +"onfido_enter_can_error_label" = "Jums liko %1$d %2$s."; "onfido_enter_can_substring_attempt_singular" = "mėginimas"; "onfido_enter_can_substring_attempt_plural" = "bandymai"; "onfido_nfc_scan_error_button_secondary" = "Gauti patvirtinimą be NFC"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Pasukite į priekinę pusę"; "onfido_doc_capture_alert_wrong_side_back_title" = "Apverskite į galinę pusę"; "onfido_doc_capture_alert_hold_still_title" = "Laikykite nejudindami"; + +"onfido_doc_capture_alert_photo_page_title" = "Rodyti tik nuotraukos puslapį"; +"onfido_doc_capture_alert_tilted_title" = "Laikykite dokumentą tiesiai"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Įrašomas vaizdo įrašas"; \ No newline at end of file diff --git a/localization/Localizable_lv.strings b/localization/Localizable_lv.strings index 883554d..cf146c6 100644 --- a/localization/Localizable_lv.strings +++ b/localization/Localizable_lv.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Konstatēta pagriezta galva"; "onfido_welcome_list_header" = "Izmantojiet ierīci, lai:"; "onfido_welcome_list_item_doc_photo" = "Nofotografētu savu personu apliecinošo dokumentu."; -"onfido_welcome_list_item_doc_generic" = "Noskenētu savu personu apliecinošo dokumentu."; +"onfido_welcome_list_item_doc_generic" = "Ierakstiet video, kurā redzams jūsu identitātes dokuments"; "onfido_welcome_list_item_face_photo" = "Nofotografētu savu seju."; "onfido_welcome_list_item_face_video" = "Ierakstītu savas sejas videoklipu."; "onfido_doc_capture_header_live_guidance_no_doc" = "Turiet tālruni virs dokumenta"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Pārtrūka saskare ar NFC karti\nPavirziet ierīci nedaudz augšup vai lejup."; "onfido_nfc_scan_lost-connection_sheet_4" = "Pārtrūka savienojums\nMēs nevarējām noskenēt jūsu dokumentu"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Nepareizs CAN"; -"onfido_enter_can_error_label" = "Jums ir atlicis %d %@."; +"onfido_enter_can_error_label" = "Jums ir atlicis %1$d %2$s."; "onfido_enter_can_substring_attempt_singular" = "mēģinājums"; "onfido_enter_can_substring_attempt_plural" = "mēģinājumu"; "onfido_nfc_scan_error_button_secondary" = "Iegūt verifikāciju bez NFC"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Pagrieziet uz priekšējo pusi"; "onfido_doc_capture_alert_wrong_side_back_title" = "Pagrieziet uz aizmuguri"; "onfido_doc_capture_alert_hold_still_title" = "Turiet nekustīgi"; + +"onfido_doc_capture_alert_photo_page_title" = "Rādīt tikai foto lapu"; +"onfido_doc_capture_alert_tilted_title" = "Turiet dokumentu taisni"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Ieraksta video"; \ No newline at end of file diff --git a/localization/Localizable_ms.strings b/localization/Localizable_ms.strings index f9d557e..23d6090 100644 --- a/localization/Localizable_ms.strings +++ b/localization/Localizable_ms.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Tolehan kepala dikesan"; "onfido_welcome_list_header" = "Gunakan peranti anda untuk:"; "onfido_welcome_list_item_doc_photo" = "Ambil gambar dokumen pengenalan anda"; -"onfido_welcome_list_item_doc_generic" = "Imbas dokumen pengenalan anda"; +"onfido_welcome_list_item_doc_generic" = "Rakam video dokumen pengenalan anda"; "onfido_welcome_list_item_face_photo" = "Ambil gambar wajah anda"; "onfido_welcome_list_item_face_video" = "Rakam video wajah anda"; "onfido_doc_capture_header_live_guidance_no_doc" = "Pegang telefon anda di atas dokumen"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Terputus sambungan dengan kad NFC\nGerakkan peranti anda ke atas atau ke bawah sedikit."; "onfido_nfc_scan_lost-connection_sheet_4" = "Sambungan terputus\nKami tidak dapat mengimbas dokumen anda"; "onfido_nfc_scan_incorrect-can_sheet_5" = "CAN tidak betul"; -"onfido_enter_can_error_label" = "Anda mempunyai %d %@ lagi."; +"onfido_enter_can_error_label" = "Anda mempunyai %1$d %2$s lagi."; "onfido_enter_can_substring_attempt_singular" = "percubaan"; "onfido_enter_can_substring_attempt_plural" = "percubaan"; "onfido_nfc_scan_error_button_secondary" = "Dapatkan pengesahan tanpa NFC"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Balikkan ke bahagian hadapan"; "onfido_doc_capture_alert_wrong_side_back_title" = "Balikkan ke bahagian belakang"; "onfido_doc_capture_alert_hold_still_title" = "Jangan bergerak"; + +"onfido_doc_capture_alert_photo_page_title" = "Paparkan halaman foto sahaja"; +"onfido_doc_capture_alert_tilted_title" = "Pegang dokumen dengan lurus"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Merekod video"; \ No newline at end of file diff --git a/localization/Localizable_no.strings b/localization/Localizable_no.strings index 68194b4..9f1c4f9 100644 --- a/localization/Localizable_no.strings +++ b/localization/Localizable_no.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Hodesving oppdaget"; "onfido_welcome_list_header" = "Bruk enheten til å:"; "onfido_welcome_list_item_doc_photo" = "Ta et bilde av legitimasjonen din"; -"onfido_welcome_list_item_doc_generic" = "Skanne legitimasjonen din"; +"onfido_welcome_list_item_doc_generic" = "Lag en video av identitetsdokumentet ditt"; "onfido_welcome_list_item_face_photo" = "Ta et bilde av ansiktet ditt"; "onfido_welcome_list_item_face_video" = "Ta opp en video av ansiktet ditt"; "onfido_doc_capture_header_live_guidance_no_doc" = "Hold telefonen over dokumentet"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Mistet kontakten med NFC-kortet\nFlytt enheten litt opp eller ned."; "onfido_nfc_scan_lost-connection_sheet_4" = "Mistet tilkobling\nVi kunne ikke skanne dokumentet ditt"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Feil CAN"; -"onfido_enter_can_error_label" = "Du har %d %@ igjen."; +"onfido_enter_can_error_label" = "Du har %1$d %2$s igjen."; "onfido_enter_can_substring_attempt_singular" = "forsøk"; "onfido_enter_can_substring_attempt_plural" = "forsøk"; "onfido_nfc_scan_error_button_secondary" = "Bli verifisert uten NFC"; @@ -659,3 +659,15 @@ "onfido_nfc_scan_error_final_list_item"="Do you have a different document to proceed with?"; "onfido_nfc_scan_error_final_primary_button"="Use different document"; "onfido_nfc_scan_error_final_secondary_button"="Get verified without NFC"; + +"onfido_doc_capture_alert_photo_page_title" = "Vis kun fotoside"; +"onfido_doc_capture_alert_tilted_title" = "Hold dokumentet rett"; +"onfido_doc_capture_alert_too_close_title" = "Flytt deg lenger unna"; +"onfido_doc_capture_alert_rotated_title" = "Roter dokumentet"; +"onfido_doc_capture_alert_too_far_title" = "Flytt deg nærmere"; +"onfido_doc_capture_alert_wrong_side_front_title" = "Vend til forsiden"; +"onfido_doc_capture_alert_wrong_side_back_title" = "Vend til baksiden"; +"onfido_doc_capture_alert_hold_still_title" = "Hold det stille"; + +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Opptak av video"; \ No newline at end of file diff --git a/localization/Localizable_pl.strings b/localization/Localizable_pl.strings index a2b3447..62a40a0 100644 --- a/localization/Localizable_pl.strings +++ b/localization/Localizable_pl.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Wykryto obrót głowy"; "onfido_welcome_list_header" = "Użyj urządzenia, aby:"; "onfido_welcome_list_item_doc_photo" = "Zrobić zdjęcie swojego dokumentu tożsamości"; -"onfido_welcome_list_item_doc_generic" = "Zeskanować swój dokument tożsamości"; +"onfido_welcome_list_item_doc_generic" = "Nagraj wideo swojego dokumentu tożsamości"; "onfido_welcome_list_item_face_photo" = "Zrobić zdjęcie swojej twarzy"; "onfido_welcome_list_item_face_video" = "Nagrać wideo swojej twarzy"; "onfido_doc_capture_header_live_guidance_no_doc" = "Przytrzymaj telefon nad dokumentem"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Utracono kontakt z kartą NFC\nPrzesuń swoje urządzenie lekko w górę lub w dół."; "onfido_nfc_scan_lost-connection_sheet_4" = "Utracono połączenie\nNie mogliśmy zeskanować Twojego dokumentu"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Nieprawidłowy CAN"; -"onfido_enter_can_error_label" = "Zostało Ci %d %@."; +"onfido_enter_can_error_label" = "Zostało Ci %1$d %2$s."; "onfido_enter_can_substring_attempt_singular" = "prób"; "onfido_enter_can_substring_attempt_plural" = "prób"; "onfido_nfc_scan_error_button_secondary" = "Uzyskaj weryfikację bez NFC"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Odwróć na przednią stronę"; "onfido_doc_capture_alert_wrong_side_back_title" = "Odwróć na bok"; "onfido_doc_capture_alert_hold_still_title" = "Nie ruszaj się"; + +"onfido_doc_capture_alert_photo_page_title" = "Pokaż tylko stronę ze zdjęciem"; +"onfido_doc_capture_alert_tilted_title" = "Trzymaj dokument prosto"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Nagrywanie wideo"; \ No newline at end of file diff --git a/localization/Localizable_pt-BR.strings b/localization/Localizable_pt-BR.strings index 1e01444..aebadef 100644 --- a/localization/Localizable_pt-BR.strings +++ b/localization/Localizable_pt-BR.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Giro de cabeça detectado"; "onfido_welcome_list_header" = "Use seu dispositivo para:"; "onfido_welcome_list_item_doc_photo" = "Tirar uma foto do seu documento de identidade"; -"onfido_welcome_list_item_doc_generic" = "Digitalizar seu documento de identidade"; +"onfido_welcome_list_item_doc_generic" = "Faça uma gravação do seu documento de identidade"; "onfido_welcome_list_item_face_photo" = "Tirar uma foto do seu rosto"; "onfido_welcome_list_item_face_video" = "Gravar um vídeo do seu rosto"; "onfido_doc_capture_header_live_guidance_no_doc" = "Segure seu celular em cima do documento"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Perda de contato com o cartão NFC\nMova o dispositivo ligeiramente para cima ou para baixo."; "onfido_nfc_scan_lost-connection_sheet_4" = "Perda de conexão\nNão foi possível digitalizar seu documento"; "onfido_nfc_scan_incorrect-can_sheet_5" = "CAN incorreto"; -"onfido_enter_can_error_label" = "Restam %d %@."; +"onfido_enter_can_error_label" = "Restam %1$d %2$s."; "onfido_enter_can_substring_attempt_singular" = "tentativa"; "onfido_enter_can_substring_attempt_plural" = "tentativas"; "onfido_nfc_scan_error_button_secondary" = "Seja verificado sem NFC"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Virar para a frente"; "onfido_doc_capture_alert_wrong_side_back_title" = "Vire para trás"; "onfido_doc_capture_alert_hold_still_title" = "Não se mova"; + +"onfido_doc_capture_alert_photo_page_title" = "Mostre apenas a página da foto"; +"onfido_doc_capture_alert_tilted_title" = "Mantenha o documento reto"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Gravando vídeo"; \ No newline at end of file diff --git a/localization/Localizable_ro.strings b/localization/Localizable_ro.strings index 8641519..0a1d5e1 100644 --- a/localization/Localizable_ro.strings +++ b/localization/Localizable_ro.strings @@ -285,8 +285,8 @@ "onfido_video_capture_turn_success_accessibility" = "Mișcare a capului detectată"; "onfido_welcome_list_header" = "Utilizați dispozitivul dvs. pentru:"; "onfido_welcome_list_item_doc_photo" = "Faceți o poză cu documentul dvs. de identitate"; -"onfido_welcome_list_item_doc_generic" = "Scanați documentul dvs. de identitate"; -"onfido_welcome_list_item_face_photo" = "Faceți o poză cu fața dvs."; +"onfido_welcome_list_item_doc_generic" = "Înregistrați un videoclip cu documentul dvs. de identitate"; +"onfido_welcome_list_item_face_photo" = "A face o poză a feței dvs."; "onfido_welcome_list_item_face_video" = "Înregistrați un clip video cu fața dvs."; "onfido_doc_capture_header_live_guidance_no_doc" = "Mențineți telefonul dvs. deasupra documentului"; "onfido_doc_capture_header_live_guidance_no_doc_accessibility" = "Niciun document găsit. Mențineți telefonul dvs. deasupra documentului."; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Ați pierdut contactul cu cardul NFC\nMutați ușor dispozitivul în sus sau în jos."; "onfido_nfc_scan_lost-connection_sheet_4" = "Conexiune pierdută\nNu am putut scana documentul dvs."; "onfido_nfc_scan_incorrect-can_sheet_5" = "CAN incorect"; -"onfido_enter_can_error_label" = "Mai aveți %d %@."; +"onfido_enter_can_error_label" = "Mai aveți %1$d %2$s."; "onfido_enter_can_substring_attempt_singular" = "încercare"; "onfido_enter_can_substring_attempt_plural" = "încercări"; "onfido_nfc_scan_error_button_secondary" = "Obțineți verificarea fără NFC"; @@ -659,3 +659,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Întoarceți spre partea din față"; "onfido_doc_capture_alert_wrong_side_back_title" = "Întoarceți în spate"; "onfido_doc_capture_alert_hold_still_title" = "Țineți nemișcat"; + +"onfido_doc_capture_alert_photo_page_title" = "Afișează doar pagina cu fotografie"; +"onfido_doc_capture_alert_tilted_title" = "Ține documentul drept"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Înregistrare video"; \ No newline at end of file diff --git a/localization/Localizable_ru.strings b/localization/Localizable_ru.strings index 84bcf52..c81deeb 100644 --- a/localization/Localizable_ru.strings +++ b/localization/Localizable_ru.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Обнаружен поворот головы"; "onfido_welcome_list_header" = "Используйте свое устройство, чтобы:"; "onfido_welcome_list_item_doc_photo" = "Сфотографировать удостоверение личности"; -"onfido_welcome_list_item_doc_generic" = "Отсканировать документ, удостоверяющий личность"; +"onfido_welcome_list_item_doc_generic" = "Сделайте видеозапись вашего документа, подтверждающего личность"; "onfido_welcome_list_item_face_photo" = "Сфотографировать лицо"; "onfido_welcome_list_item_face_video" = "Записать видео лица"; "onfido_doc_capture_header_live_guidance_no_doc" = "Держите телефон над документом"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Контакт с картой NFC утерян\nПереместите устройство немного вверх и вниз."; "onfido_nfc_scan_lost-connection_sheet_4" = "Соединение потеряно\nНе удалось отсканировать документ"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Неправильный CAN"; -"onfido_enter_can_error_label" = "У Вас осталось %d%@"; +"onfido_enter_can_error_label" = "У Вас осталось %1$d%2$s"; "onfido_enter_can_substring_attempt_singular" = "попытка"; "onfido_enter_can_substring_attempt_plural" = "попытки/попыток"; "onfido_nfc_scan_error_button_secondary" = "Получить верификацию без NFC"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Перевернуть на лицевую сторону"; "onfido_doc_capture_alert_wrong_side_back_title" = "Перевернуть на обратную сторону"; "onfido_doc_capture_alert_hold_still_title" = "Не двигайтесь"; + +"onfido_doc_capture_alert_photo_page_title" = "Показать только страницу с фотографией"; +"onfido_doc_capture_alert_tilted_title" = "Держите документ прямо"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Запись видео"; \ No newline at end of file diff --git a/localization/Localizable_sk.strings b/localization/Localizable_sk.strings index cca58bc..54d6a2e 100644 --- a/localization/Localizable_sk.strings +++ b/localization/Localizable_sk.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Bolo zistené otáčanie hlavy"; "onfido_welcome_list_header" = "Pomocou zariadenia vykonajte tieto kroky:"; "onfido_welcome_list_item_doc_photo" = "Odfoťte doklad totožnosti"; -"onfido_welcome_list_item_doc_generic" = "Naskenujte doklad totožnosti"; +"onfido_welcome_list_item_doc_generic" = "Vytvorte videozáznam vášho dokladu totožnosti"; "onfido_welcome_list_item_face_photo" = "Odfoťte svoju tvár"; "onfido_welcome_list_item_face_video" = "Zaznamenajte video svojej tváre"; "onfido_doc_capture_header_live_guidance_no_doc" = "Podržte telefón nad dokladom"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Stratil sa kontakt s preukazom s NFC\nPohybujte zariadením mierne nahor alebo nadol."; "onfido_nfc_scan_lost-connection_sheet_4" = "Stratilo sa spojenie\nNepodarilo sa naskenovať váš doklad"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Nesprávne CAN"; -"onfido_enter_can_error_label" = "Počet zostávajúcich pokusov: %d %@."; +"onfido_enter_can_error_label" = "Počet zostávajúcich pokusov: %1$d %2$s."; "onfido_enter_can_substring_attempt_singular" = "pokus"; "onfido_enter_can_substring_attempt_plural" = "pokusov"; "onfido_nfc_scan_error_button_secondary" = "Overenie bez NFC"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Otočte na prednú stranu"; "onfido_doc_capture_alert_wrong_side_back_title" = "Otočte na zadnú stranu"; "onfido_doc_capture_alert_hold_still_title" = "Držte bez pohybu"; + +"onfido_doc_capture_alert_photo_page_title" = "Zobraziť iba stránku s fotografiou"; +"onfido_doc_capture_alert_tilted_title" = "Držte dokument rovno"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Nahrávanie videa"; \ No newline at end of file diff --git a/localization/Localizable_sl.strings b/localization/Localizable_sl.strings index c902201..bce487b 100644 --- a/localization/Localizable_sl.strings +++ b/localization/Localizable_sl.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Zaznano obračanje glave"; "onfido_welcome_list_header" = "Uporabite napravo za:"; "onfido_welcome_list_item_doc_photo" = "Fotografirajte osebni dokument"; -"onfido_welcome_list_item_doc_generic" = "Skenirajte osebni dokument"; +"onfido_welcome_list_item_doc_generic" = "Posnemite video vašega osebnega dokumenta"; "onfido_welcome_list_item_face_photo" = "Fotografirajte obraz"; "onfido_welcome_list_item_face_video" = "Posnemite videoposnetek svojega obraza"; "onfido_doc_capture_header_live_guidance_no_doc" = "Držite telefon nad dokumentom"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Izgubljen stik s kartico NFC\nNapravo rahlo premaknite navzgor ali navzdol."; "onfido_nfc_scan_lost-connection_sheet_4" = "Izgubljena povezava\nNi bilo mogoče skenirati vašega dokumenta"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Nepravilen CAN"; -"onfido_enter_can_error_label" = "Na voljo imate še %d %@."; +"onfido_enter_can_error_label" = "Na voljo imate še %1$d %2$s."; "onfido_enter_can_substring_attempt_singular" = "poskus"; "onfido_enter_can_substring_attempt_plural" = "poskusov"; "onfido_nfc_scan_error_button_secondary" = "Preveri brez NFC"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Obrnite na sprednjo stran"; "onfido_doc_capture_alert_wrong_side_back_title" = "Obrnite na zadnjo stran"; "onfido_doc_capture_alert_hold_still_title" = "Bodite pri miru"; + +"onfido_doc_capture_alert_photo_page_title" = "Prikaži samo stran s fotografijo"; +"onfido_doc_capture_alert_tilted_title" = "Držite dokument naravnost"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Snemanje videa"; \ No newline at end of file diff --git a/localization/Localizable_sr-Latn.strings b/localization/Localizable_sr-Latn.strings index efa3c0a..84a944c 100644 --- a/localization/Localizable_sr-Latn.strings +++ b/localization/Localizable_sr-Latn.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Uočeno je okretanje glave"; "onfido_welcome_list_header" = "Upotrebite uređaj da:"; "onfido_welcome_list_item_doc_photo" = "Snimite fotografiju identifikacionog dokumenta"; -"onfido_welcome_list_item_doc_generic" = "skenirate identifikacioni dokument"; +"onfido_welcome_list_item_doc_generic" = "Napravite video snimak svog identifikacionog dokumenta"; "onfido_welcome_list_item_face_photo" = "snimite fotografiju lica"; "onfido_welcome_list_item_face_video" = "snimite video lica"; "onfido_doc_capture_header_live_guidance_no_doc" = "Držite telefon iznad dokumenta"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Izgubljen je kontakt sa NFC karticom\nPomerajte polako uređaj gore-dole."; "onfido_nfc_scan_lost-connection_sheet_4" = "Veza je prekinuta\nNismo uspeli da skeniramo vaš dokument"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Netačan CAN"; -"onfido_enter_can_error_label" = "Imate još %d %@."; +"onfido_enter_can_error_label" = "Imate još %1$d %2$s."; "onfido_enter_can_substring_attempt_singular" = "pokušaj"; "onfido_enter_can_substring_attempt_plural" = "pokušaj(a)"; "onfido_nfc_scan_error_button_secondary" = "Verifikujte bez NFC-a"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Окрените на предњу страну"; "onfido_doc_capture_alert_wrong_side_back_title" = "Окрените на задњу страну"; "onfido_doc_capture_alert_hold_still_title" = "Ne pomerajte se"; + +"onfido_doc_capture_alert_photo_page_title" = "Prikaži samo stranicu sa fotografijom"; +"onfido_doc_capture_alert_tilted_title" = "Držite dokument pravo"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Snimanje videa"; \ No newline at end of file diff --git a/localization/Localizable_sv.strings b/localization/Localizable_sv.strings index 0717375..8ac0184 100644 --- a/localization/Localizable_sv.strings +++ b/localization/Localizable_sv.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Huvudvridning upptäckt"; "onfido_welcome_list_header" = "Använd din enhet för att:"; "onfido_welcome_list_item_doc_photo" = "Ta ett foto av ditt identitetsdokument"; -"onfido_welcome_list_item_doc_generic" = "Skanna ditt identitetsdokument"; +"onfido_welcome_list_item_doc_generic" = "Spela in en video av ditt identitetsdokument"; "onfido_welcome_list_item_face_photo" = "Ta ett foto av ditt ansikte"; "onfido_welcome_list_item_face_video" = "Spela in en video av ditt ansikte"; "onfido_doc_capture_header_live_guidance_no_doc" = "Håll telefonen över dokumentet"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Förlorade anslutningen med NFC-kort\nFlytta enheten något uppåt eller nedåt."; "onfido_nfc_scan_lost-connection_sheet_4" = "Förlorade anslutningen\nVi kunde inte skanna ditt dokument"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Felaktigt CAN"; -"onfido_enter_can_error_label" = "Du har %d %@ kvar."; +"onfido_enter_can_error_label" = "Du har %1$d %2$s kvar."; "onfido_enter_can_substring_attempt_singular" = "försök"; "onfido_enter_can_substring_attempt_plural" = "försök"; "onfido_nfc_scan_error_button_secondary" = "Bli verifierad utan NFC"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Vänd till framsidan"; "onfido_doc_capture_alert_wrong_side_back_title" = "Vänd till baksidan"; "onfido_doc_capture_alert_hold_still_title" = "Håll stilla"; + +"onfido_doc_capture_alert_photo_page_title" = "Visa endast fotosida"; +"onfido_doc_capture_alert_tilted_title" = "Håll dokumentet rakt"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Spelar in video"; \ No newline at end of file diff --git a/localization/Localizable_th.strings b/localization/Localizable_th.strings index 8e87bb8..4f9e86a 100644 --- a/localization/Localizable_th.strings +++ b/localization/Localizable_th.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "ตรวจพบการหันศีรษะ"; "onfido_welcome_list_header" = "ใช้อุปกรณ์ของคุณ:"; "onfido_welcome_list_item_doc_photo" = "ถ่ายรูปเอกสารยืนยันตัวตนของคุณ"; -"onfido_welcome_list_item_doc_generic" = "สแกนเอกสารยืนยันตัวตนของคุณ"; +"onfido_welcome_list_item_doc_generic" = "ทำการบันทึกวิดีโอเอกสารที่ใช้ในการยืนยันตัวตนของคุณ"; "onfido_welcome_list_item_face_photo" = "ถ่ายรูปใบหน้าของคุณ"; "onfido_welcome_list_item_face_video" = "บันทึกวิดีโอใบหน้าของคุณ"; "onfido_doc_capture_header_live_guidance_no_doc" = "ถือโทรศัพท์ไว้เหนือเอกสาร"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "ขาดการติดต่อกับบัตร NFC\nเลื่อนอุปกรณ์ของคุณขึ้นหรือลงเล็กน้อย"; "onfido_nfc_scan_lost-connection_sheet_4" = "การเชื่อมต่อสูญหาย\nเราสแกนเอกสารของคุณไม่ได้"; "onfido_nfc_scan_incorrect-can_sheet_5" = "CAN ไม่ถูกต้อง"; -"onfido_enter_can_error_label" = "คุณลองได้อีก %d %@"; +"onfido_enter_can_error_label" = "คุณลองได้อีก %1$d %2$s"; "onfido_enter_can_substring_attempt_singular" = "ครั้ง"; "onfido_enter_can_substring_attempt_plural" = "ครั้ง"; "onfido_nfc_scan_error_button_secondary" = "รับการตรวจสอบโดยไม่มี NFC"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "พลิกไปด้านหน้า"; "onfido_doc_capture_alert_wrong_side_back_title" = "พลิกไปด้านหลัง"; "onfido_doc_capture_alert_hold_still_title" = "ถือนิ่ง"; + +"onfido_doc_capture_alert_photo_page_title" = "แสดงหน้ารูปเท่านั้น"; +"onfido_doc_capture_alert_tilted_title" = "ถือเอกสารให้ตรง"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "กำลังบันทึกวิดีโอ"; \ No newline at end of file diff --git a/localization/Localizable_tr.strings b/localization/Localizable_tr.strings index 5f8546d..bc15df1 100644 --- a/localization/Localizable_tr.strings +++ b/localization/Localizable_tr.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Başın döndüğü tespit edildi"; "onfido_welcome_list_header" = "Cihazınızı şu amaçlarla kullanın:"; "onfido_welcome_list_item_doc_photo" = "Kimlik belgenizin fotoğrafını çekin"; -"onfido_welcome_list_item_doc_generic" = "Kimlik belgenizi tarayın"; +"onfido_welcome_list_item_doc_generic" = "Kimlik belgenizin bir video kaydını yapın"; "onfido_welcome_list_item_face_photo" = "Yüzünüzün fotoğrafını çekin"; "onfido_welcome_list_item_face_video" = "Yüzünüzün bir videosunu kaydedin"; "onfido_doc_capture_header_live_guidance_no_doc" = "Telefonunuzu belgenin üzerinde tutun"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "NFC kartı ile teması kayboldu\nCihazınızı hafifçe yukarı veya aşağı hareket ettirin."; "onfido_nfc_scan_lost-connection_sheet_4" = "Bağlantı kesildi\nBelgenizi tarayamadık"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Yanlış CAN"; -"onfido_enter_can_error_label" = "%d %@ kaldı."; +"onfido_enter_can_error_label" = "%1$d %2$s kaldı."; "onfido_enter_can_substring_attempt_singular" = "deneme"; "onfido_enter_can_substring_attempt_plural" = "deneme"; "onfido_nfc_scan_error_button_secondary" = "NFC olmadan doğrulanın"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Ön tarafa çevir"; "onfido_doc_capture_alert_wrong_side_back_title" = "Arka tarafa çevir"; "onfido_doc_capture_alert_hold_still_title" = "Sabit kalın"; + +"onfido_doc_capture_alert_photo_page_title" = "Sadece fotoğraf sayfasını göster"; +"onfido_doc_capture_alert_tilted_title" = "Belgeyi düz tutun"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Video kaydediliyor"; \ No newline at end of file diff --git a/localization/Localizable_uk.strings b/localization/Localizable_uk.strings index 8a0b15c..312c55e 100644 --- a/localization/Localizable_uk.strings +++ b/localization/Localizable_uk.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Поворот голови виявлено"; "onfido_welcome_list_header" = "Використовуйте свій пристрій, щоб:"; "onfido_welcome_list_item_doc_photo" = "сфотографувати документ, що посвідчує особу;"; -"onfido_welcome_list_item_doc_generic" = "відсканувати документ, що посвідчує особу;"; +"onfido_welcome_list_item_doc_generic" = "Зробіть відеозапис вашого документа, що посвідчує особу"; "onfido_welcome_list_item_face_photo" = "сфотографувати своє обличчя;"; "onfido_welcome_list_item_face_video" = "зняти відео свого обличчя;"; "onfido_doc_capture_header_live_guidance_no_doc" = "Тримайте телефон над документом"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Утрачено контакт із карткою NFC\nЗлегка перемістіть пристрій угору або вниз."; "onfido_nfc_scan_lost-connection_sheet_4" = "З’єднання втрачено\nНе вдалося відсканувати документ"; "onfido_nfc_scan_incorrect-can_sheet_5" = "Неправильний номер CAN"; -"onfido_enter_can_error_label" = "Залишилося: %d %@."; +"onfido_enter_can_error_label" = "Залишилося: %1$d %2$s."; "onfido_enter_can_substring_attempt_singular" = "спроба"; "onfido_enter_can_substring_attempt_plural" = "спроби/спроб"; "onfido_nfc_scan_error_button_secondary" = "Отримати підтвердження без NFC"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "Переверніть на лицьову сторону"; "onfido_doc_capture_alert_wrong_side_back_title" = "Переверніть на зворотний бік"; "onfido_doc_capture_alert_hold_still_title" = "Тримайте телефон непорушно"; + +"onfido_doc_capture_alert_photo_page_title" = "Показувати лише сторінку з фото"; +"onfido_doc_capture_alert_tilted_title" = "Тримайте документ прямо"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Запис відео"; \ No newline at end of file diff --git a/localization/Localizable_vi.strings b/localization/Localizable_vi.strings index e537575..f3ee309 100644 --- a/localization/Localizable_vi.strings +++ b/localization/Localizable_vi.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "Đã phát hiện xoay đầu"; "onfido_welcome_list_header" = "Sử dụng thiết bị của bạn để:"; "onfido_welcome_list_item_doc_photo" = "Chụp ảnh giấy tờ tùy thân của bạn"; -"onfido_welcome_list_item_doc_generic" = "Quét giấy tờ tùy thân của bạn"; +"onfido_welcome_list_item_doc_generic" = "Ghi lại video của giấy tờ tùy thân của bạn"; "onfido_welcome_list_item_face_photo" = "Chụp ảnh khuôn mặt của bạn"; "onfido_welcome_list_item_face_video" = "Quay video khuôn mặt của bạn"; "onfido_doc_capture_header_live_guidance_no_doc" = "Giữ điện thoại của bạn ở phía trên giấy tờ"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "Mất tiếp xúc với thẻ NFC\nDi chuyển thiết bị của bạn lên hoặc xuống một chút."; "onfido_nfc_scan_lost-connection_sheet_4" = "Mất kết nối\nChúng tôi không thể quét giấy tờ của bạn"; "onfido_nfc_scan_incorrect-can_sheet_5" = "CAN không chính xác"; -"onfido_enter_can_error_label" = "Bạn còn lại %d %@."; +"onfido_enter_can_error_label" = "Bạn còn lại %1$d %2$s."; "onfido_enter_can_substring_attempt_singular" = "lần thực hiện"; "onfido_enter_can_substring_attempt_plural" = "lần thực hiện"; "onfido_nfc_scan_error_button_secondary" = "Được xác minh mà không cần NFC"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = ""; "onfido_doc_capture_alert_wrong_side_back_title" = ""; "onfido_doc_capture_alert_hold_still_title" = "Hãy giữ yên"; + +"onfido_doc_capture_alert_photo_page_title" = "Chỉ hiển thị trang ảnh"; +"onfido_doc_capture_alert_tilted_title" = "Giữ tài liệu thẳng"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "Ghi video"; \ No newline at end of file diff --git a/localization/Localizable_zh-Hans.strings b/localization/Localizable_zh-Hans.strings index a4ff24b..61292f8 100644 --- a/localization/Localizable_zh-Hans.strings +++ b/localization/Localizable_zh-Hans.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "检测到头部转动"; "onfido_welcome_list_header" = "使用您的设备:"; "onfido_welcome_list_item_doc_photo" = "拍一张您身份证件的照片"; -"onfido_welcome_list_item_doc_generic" = "扫描您的身份证件"; +"onfido_welcome_list_item_doc_generic" = "录制您身份证件的视频"; "onfido_welcome_list_item_face_photo" = "拍一张您面部的照片"; "onfido_welcome_list_item_face_video" = "录制一段您面部的视频"; "onfido_doc_capture_header_live_guidance_no_doc" = "使手机保持在证明文件上方"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "失去与NFC身份证的接触\n将设备稍微向上或向下移动。"; "onfido_nfc_scan_lost-connection_sheet_4" = "失去连接\n我们无法扫描您的证明文件"; "onfido_nfc_scan_incorrect-can_sheet_5" = "CAN不正确"; -"onfido_enter_can_error_label" = "您还可以尝试%d%@。"; +"onfido_enter_can_error_label" = "您还可以尝试%1$d%2$s。"; "onfido_enter_can_substring_attempt_singular" = "次"; "onfido_enter_can_substring_attempt_plural" = "次"; "onfido_nfc_scan_error_button_secondary" = "不用NFC获得验证"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "翻到正面"; "onfido_doc_capture_alert_wrong_side_back_title" = "翻到背面"; "onfido_doc_capture_alert_hold_still_title" = "保持不动"; + +"onfido_doc_capture_alert_photo_page_title" = "仅显示照片页面"; +"onfido_doc_capture_alert_tilted_title" = "保持文件直立"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "录制视频"; \ No newline at end of file diff --git a/localization/Localizable_zh-Hant.strings b/localization/Localizable_zh-Hant.strings index 5c6bb9b..2715ae1 100644 --- a/localization/Localizable_zh-Hant.strings +++ b/localization/Localizable_zh-Hant.strings @@ -285,7 +285,7 @@ "onfido_video_capture_turn_success_accessibility" = "偵測到轉頭"; "onfido_welcome_list_header" = "使用您的裝置:"; "onfido_welcome_list_item_doc_photo" = "拍攝身分證件相片"; -"onfido_welcome_list_item_doc_generic" = "掃描您的身份證件"; +"onfido_welcome_list_item_doc_generic" = "錄製您身份證件的影片"; "onfido_welcome_list_item_face_photo" = "拍攝您的臉部相片"; "onfido_welcome_list_item_face_video" = "錄製您的臉部影片"; "onfido_doc_capture_header_live_guidance_no_doc" = "將手機置於文件上方"; @@ -575,7 +575,7 @@ "onfido_nfc_scan_lost-contact_sheet_3" = "失去與 NFC 卡片的接觸\n稍微向上或向下移動裝置。"; "onfido_nfc_scan_lost-connection_sheet_4" = "失去連線\n我們無法掃描您的文件"; "onfido_nfc_scan_incorrect-can_sheet_5" = "CAN 不正確"; -"onfido_enter_can_error_label" = "目前剩下 %d %@ 嘗試次數。"; +"onfido_enter_can_error_label" = "目前剩下 %1$d %2$s 嘗試次數。"; "onfido_enter_can_substring_attempt_singular" = "嘗試"; "onfido_enter_can_substring_attempt_plural" = "嘗試"; "onfido_nfc_scan_error_button_secondary" = "無需NFC即可獲得驗證"; @@ -660,3 +660,8 @@ "onfido_doc_capture_alert_wrong_side_front_title" = "翻到正面"; "onfido_doc_capture_alert_wrong_side_back_title" = "翻到背面"; "onfido_doc_capture_alert_hold_still_title" = "保持不動"; + +"onfido_doc_capture_alert_photo_page_title" = "僅顯示照片頁面"; +"onfido_doc_capture_alert_tilted_title" = "保持文件直立"; +"ai-test" = ""; +"onfido_doc_capture_header_recording_video" = "錄製影片"; \ No newline at end of file