@trustchex/react-native-sdk 1.355.1 → 1.357.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -9
- package/TrustchexSDK.podspec +5 -4
- package/android/build.gradle +6 -4
- package/android/src/main/AndroidManifest.xml +1 -1
- package/android/src/main/java/com/trustchex/reactnativesdk/TrustchexSDKPackage.kt +45 -25
- package/android/src/main/java/com/trustchex/reactnativesdk/camera/TrustchexCameraManager.kt +168 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/camera/TrustchexCameraView.kt +871 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/mlkit/MLKitModule.kt +245 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/mrz/MRZValidationModule.kt +785 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/mrz/MRZValidator.kt +419 -0
- package/android/src/main/java/com/trustchex/reactnativesdk/opencv/OpenCVModule.kt +818 -0
- package/ios/Camera/TrustchexCameraManager.m +37 -0
- package/ios/Camera/TrustchexCameraManager.swift +125 -0
- package/ios/Camera/TrustchexCameraView.swift +1176 -0
- package/ios/MLKit/MLKitModule.m +23 -0
- package/ios/MLKit/MLKitModule.swift +250 -0
- package/ios/MRZValidation.m +39 -0
- package/ios/MRZValidation.swift +802 -0
- package/ios/MRZValidator.swift +466 -0
- package/ios/OpenCV/OpenCVModule.h +4 -0
- package/ios/OpenCV/OpenCVModule.mm +810 -0
- package/lib/module/Screens/Dynamic/IdentityDocumentEIDScanningScreen.js +2 -3
- package/lib/module/Screens/Dynamic/IdentityDocumentScanningScreen.js +1 -2
- package/lib/module/Screens/Dynamic/LivenessDetectionScreen.js +418 -193
- package/lib/module/Screens/Static/OTPVerificationScreen.js +11 -11
- package/lib/module/Screens/Static/QrCodeScanningScreen.js +5 -1
- package/lib/module/Screens/Static/ResultScreen.js +25 -2
- package/lib/module/Screens/Static/VerificationSessionCheckScreen.js +25 -7
- package/lib/module/Shared/Components/DebugNavigationPanel.js +234 -24
- package/lib/module/Shared/Components/EIDScanner.js +99 -9
- package/lib/module/Shared/Components/FaceCamera.js +170 -179
- package/lib/module/Shared/Components/IdentityDocumentCamera.js +2151 -771
- package/lib/module/Shared/Components/QrCodeScannerCamera.js +109 -107
- package/lib/module/Shared/Components/TrustchexCamera.js +122 -0
- package/lib/module/Shared/EIDReader/tlv/tlv.helpers.js +91 -0
- package/lib/module/Shared/EIDReader/tlv/tlv.utils.js +2 -124
- package/lib/module/Shared/EIDReader/tlv/tlvInputStream.js +4 -4
- package/lib/module/Shared/EIDReader/tlv/tlvOutputState.js +4 -4
- package/lib/module/Shared/EIDReader/tlv/tlvOutputStream.js +4 -4
- package/lib/module/Shared/Libs/analytics.utils.js +2 -2
- package/lib/module/Shared/Libs/debug.utils.js +132 -0
- package/lib/module/Shared/Libs/deeplink.utils.js +6 -5
- package/lib/module/Shared/Libs/demo.utils.js +13 -3
- package/lib/module/Shared/Libs/mrz.utils.js +1 -175
- package/lib/module/Shared/Libs/native-device-info.utils.js +12 -6
- package/lib/module/Shared/Libs/tts.utils.js +40 -6
- package/lib/module/Shared/Services/AnalyticsService.js +9 -8
- package/lib/module/Shared/Types/mrzFields.js +1 -0
- package/lib/module/Translation/Resources/en.js +87 -88
- package/lib/module/Translation/Resources/tr.js +84 -85
- package/lib/module/Trustchex.js +9 -2
- package/lib/module/index.js +1 -0
- package/lib/module/version.js +1 -1
- package/lib/typescript/src/Screens/Dynamic/IdentityDocumentEIDScanningScreen.d.ts.map +1 -1
- package/lib/typescript/src/Screens/Dynamic/IdentityDocumentScanningScreen.d.ts.map +1 -1
- package/lib/typescript/src/Screens/Dynamic/LivenessDetectionScreen.d.ts.map +1 -1
- package/lib/typescript/src/Screens/Static/OTPVerificationScreen.d.ts.map +1 -1
- package/lib/typescript/src/Screens/Static/QrCodeScanningScreen.d.ts.map +1 -1
- package/lib/typescript/src/Screens/Static/ResultScreen.d.ts.map +1 -1
- package/lib/typescript/src/Screens/Static/VerificationSessionCheckScreen.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Components/DebugNavigationPanel.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Components/EIDScanner.d.ts +2 -2
- package/lib/typescript/src/Shared/Components/EIDScanner.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Components/FaceCamera.d.ts +18 -4
- package/lib/typescript/src/Shared/Components/FaceCamera.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Components/IdentityDocumentCamera.d.ts +3 -4
- package/lib/typescript/src/Shared/Components/IdentityDocumentCamera.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Components/QrCodeScannerCamera.d.ts +2 -1
- package/lib/typescript/src/Shared/Components/QrCodeScannerCamera.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Components/TrustchexCamera.d.ts +124 -0
- package/lib/typescript/src/Shared/Components/TrustchexCamera.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlv.helpers.d.ts +11 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlv.helpers.d.ts.map +1 -0
- package/lib/typescript/src/Shared/EIDReader/tlv/tlv.utils.d.ts +2 -39
- package/lib/typescript/src/Shared/EIDReader/tlv/tlv.utils.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Libs/analytics.utils.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Libs/debug.utils.d.ts +42 -0
- package/lib/typescript/src/Shared/Libs/debug.utils.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/deeplink.utils.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Libs/demo.utils.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Libs/http-client.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Libs/mrz.utils.d.ts +0 -4
- package/lib/typescript/src/Shared/Libs/mrz.utils.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Libs/native-device-info.utils.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Libs/tts.utils.d.ts +4 -3
- package/lib/typescript/src/Shared/Libs/tts.utils.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Services/AnalyticsService.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Types/identificationInfo.d.ts +2 -2
- package/lib/typescript/src/Shared/Types/identificationInfo.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Types/mrzFields.d.ts +11 -0
- package/lib/typescript/src/Shared/Types/mrzFields.d.ts.map +1 -0
- package/lib/typescript/src/Translation/Resources/en.d.ts +4 -5
- package/lib/typescript/src/Translation/Resources/en.d.ts.map +1 -1
- package/lib/typescript/src/Translation/Resources/tr.d.ts +4 -5
- package/lib/typescript/src/Translation/Resources/tr.d.ts.map +1 -1
- package/lib/typescript/src/Trustchex.d.ts +2 -0
- package/lib/typescript/src/Trustchex.d.ts.map +1 -1
- package/lib/typescript/src/index.d.ts +1 -0
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/version.d.ts +1 -1
- package/package.json +4 -35
- package/src/Screens/Dynamic/ContractAcceptanceScreen.tsx +1 -1
- package/src/Screens/Dynamic/IdentityDocumentEIDScanningScreen.tsx +7 -5
- package/src/Screens/Dynamic/IdentityDocumentScanningScreen.tsx +2 -3
- package/src/Screens/Dynamic/LivenessDetectionScreen.tsx +498 -216
- package/src/Screens/Static/OTPVerificationScreen.tsx +37 -31
- package/src/Screens/Static/QrCodeScanningScreen.tsx +8 -1
- package/src/Screens/Static/ResultScreen.tsx +136 -88
- package/src/Screens/Static/VerificationSessionCheckScreen.tsx +46 -13
- package/src/Shared/Components/DebugNavigationPanel.tsx +290 -34
- package/src/Shared/Components/EIDScanner.tsx +94 -16
- package/src/Shared/Components/FaceCamera.tsx +236 -203
- package/src/Shared/Components/IdentityDocumentCamera.tsx +3073 -1030
- package/src/Shared/Components/QrCodeScannerCamera.tsx +133 -127
- package/src/Shared/Components/TrustchexCamera.tsx +289 -0
- package/src/Shared/Config/camera-enhancement.config.ts +2 -2
- package/src/Shared/EIDReader/tlv/tlv.helpers.ts +96 -0
- package/src/Shared/EIDReader/tlv/tlv.utils.ts +2 -125
- package/src/Shared/EIDReader/tlv/tlvInputStream.ts +4 -4
- package/src/Shared/EIDReader/tlv/tlvOutputState.ts +4 -4
- package/src/Shared/EIDReader/tlv/tlvOutputStream.ts +4 -4
- package/src/Shared/Libs/analytics.utils.ts +48 -20
- package/src/Shared/Libs/debug.utils.ts +149 -0
- package/src/Shared/Libs/deeplink.utils.ts +7 -5
- package/src/Shared/Libs/demo.utils.ts +4 -0
- package/src/Shared/Libs/http-client.ts +12 -8
- package/src/Shared/Libs/mrz.utils.ts +1 -163
- package/src/Shared/Libs/native-device-info.utils.ts +12 -6
- package/src/Shared/Libs/tts.utils.ts +48 -6
- package/src/Shared/Services/AnalyticsService.ts +69 -24
- package/src/Shared/Types/identificationInfo.ts +2 -2
- package/src/Shared/Types/mrzFields.ts +29 -0
- package/src/Translation/Resources/en.ts +90 -100
- package/src/Translation/Resources/tr.ts +89 -97
- package/src/Translation/index.ts +1 -1
- package/src/Trustchex.tsx +21 -4
- package/src/index.tsx +14 -0
- package/src/version.ts +1 -1
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/barcodescanner/BarcodeScannerFrameProcessorPlugin.kt +0 -301
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/cropper/BitmapUtils.kt +0 -205
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/cropper/CropperPlugin.kt +0 -72
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/cropper/FrameMetadata.kt +0 -4
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/facedetector/FaceDetectorFrameProcessorPlugin.kt +0 -303
- package/android/src/main/java/com/trustchex/reactnativesdk/visioncameraplugins/textrecognition/TextRecognitionFrameProcessorPlugin.kt +0 -115
- package/ios/VisionCameraPlugins/BarcodeScanner/BarcodeScannerFrameProcessorPlugin-Bridging-Header.h +0 -9
- package/ios/VisionCameraPlugins/BarcodeScanner/BarcodeScannerFrameProcessorPlugin.mm +0 -22
- package/ios/VisionCameraPlugins/BarcodeScanner/BarcodeScannerFrameProcessorPlugin.swift +0 -188
- package/ios/VisionCameraPlugins/Cropper/Cropper-Bridging-Header.h +0 -13
- package/ios/VisionCameraPlugins/Cropper/Cropper.h +0 -20
- package/ios/VisionCameraPlugins/Cropper/Cropper.mm +0 -22
- package/ios/VisionCameraPlugins/Cropper/Cropper.swift +0 -145
- package/ios/VisionCameraPlugins/Cropper/CropperUtils.swift +0 -49
- package/ios/VisionCameraPlugins/FaceDetector/FaceDetectorFrameProcessorPlugin-Bridging-Header.h +0 -4
- package/ios/VisionCameraPlugins/FaceDetector/FaceDetectorFrameProcessorPlugin.mm +0 -22
- package/ios/VisionCameraPlugins/FaceDetector/FaceDetectorFrameProcessorPlugin.swift +0 -320
- package/ios/VisionCameraPlugins/TextRecognition/TextRecognitionFrameProcessorPlugin-Bridging-Header.h +0 -4
- package/ios/VisionCameraPlugins/TextRecognition/TextRecognitionFrameProcessorPlugin.mm +0 -27
- package/ios/VisionCameraPlugins/TextRecognition/TextRecognitionFrameProcessorPlugin.swift +0 -144
- package/lib/module/Shared/Libs/camera.utils.js +0 -308
- package/lib/module/Shared/Libs/frame-enhancement.utils.js +0 -133
- package/lib/module/Shared/Libs/opencv.utils.js +0 -21
- package/lib/module/Shared/Libs/worklet.utils.js +0 -68
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useBarcodeScanner.js +0 -46
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useCameraPermissions.js +0 -35
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/index.js +0 -19
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/scanCodes.js +0 -26
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/types.js +0 -3
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/utils/convert.js +0 -197
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/utils/geometry.js +0 -101
- package/lib/module/Shared/VisionCameraPlugins/BarcodeScanner/utils/highlights.js +0 -60
- package/lib/module/Shared/VisionCameraPlugins/Cropper/index.js +0 -47
- package/lib/module/Shared/VisionCameraPlugins/FaceDetector/Camera.js +0 -42
- package/lib/module/Shared/VisionCameraPlugins/FaceDetector/detectFaces.js +0 -35
- package/lib/module/Shared/VisionCameraPlugins/FaceDetector/index.js +0 -4
- package/lib/module/Shared/VisionCameraPlugins/FaceDetector/types.js +0 -3
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/Camera.js +0 -56
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/PhotoRecognizer.js +0 -20
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/RemoveLanguageModel.js +0 -9
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/index.js +0 -6
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/scanText.js +0 -20
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/translateText.js +0 -19
- package/lib/module/Shared/VisionCameraPlugins/TextRecognition/types.js +0 -3
- package/lib/typescript/src/Shared/Libs/camera.utils.d.ts +0 -87
- package/lib/typescript/src/Shared/Libs/camera.utils.d.ts.map +0 -1
- package/lib/typescript/src/Shared/Libs/frame-enhancement.utils.d.ts +0 -25
- package/lib/typescript/src/Shared/Libs/frame-enhancement.utils.d.ts.map +0 -1
- package/lib/typescript/src/Shared/Libs/opencv.utils.d.ts +0 -3
- package/lib/typescript/src/Shared/Libs/opencv.utils.d.ts.map +0 -1
- package/lib/typescript/src/Shared/Libs/worklet.utils.d.ts +0 -9
- package/lib/typescript/src/Shared/Libs/worklet.utils.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useBarcodeScanner.d.ts +0 -13
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useBarcodeScanner.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useCameraPermissions.d.ts +0 -6
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useCameraPermissions.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/index.d.ts +0 -12
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/index.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/scanCodes.d.ts +0 -3
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/scanCodes.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/types.d.ts +0 -52
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/types.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/convert.d.ts +0 -62
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/convert.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/geometry.d.ts +0 -34
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/geometry.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/highlights.d.ts +0 -32
- package/lib/typescript/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/highlights.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/Cropper/index.d.ts +0 -23
- package/lib/typescript/src/Shared/VisionCameraPlugins/Cropper/index.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/Camera.d.ts +0 -9
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/Camera.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/detectFaces.d.ts +0 -3
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/detectFaces.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/index.d.ts +0 -3
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/index.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/types.d.ts +0 -79
- package/lib/typescript/src/Shared/VisionCameraPlugins/FaceDetector/types.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/Camera.d.ts +0 -6
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/Camera.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/PhotoRecognizer.d.ts +0 -3
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/PhotoRecognizer.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/RemoveLanguageModel.d.ts +0 -3
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/RemoveLanguageModel.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/index.d.ts +0 -5
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/index.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/scanText.d.ts +0 -3
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/scanText.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/translateText.d.ts +0 -3
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/translateText.d.ts.map +0 -1
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/types.d.ts +0 -67
- package/lib/typescript/src/Shared/VisionCameraPlugins/TextRecognition/types.d.ts.map +0 -1
- package/src/Shared/Libs/camera.utils.ts +0 -345
- package/src/Shared/Libs/frame-enhancement.utils.ts +0 -217
- package/src/Shared/Libs/opencv.utils.ts +0 -40
- package/src/Shared/Libs/worklet.utils.ts +0 -72
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useBarcodeScanner.ts +0 -79
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/hooks/useCameraPermissions.ts +0 -46
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/index.ts +0 -60
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/scanCodes.ts +0 -32
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/types.ts +0 -82
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/convert.ts +0 -195
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/geometry.ts +0 -135
- package/src/Shared/VisionCameraPlugins/BarcodeScanner/utils/highlights.ts +0 -84
- package/src/Shared/VisionCameraPlugins/Cropper/index.ts +0 -78
- package/src/Shared/VisionCameraPlugins/FaceDetector/Camera.tsx +0 -63
- package/src/Shared/VisionCameraPlugins/FaceDetector/detectFaces.ts +0 -44
- package/src/Shared/VisionCameraPlugins/FaceDetector/index.ts +0 -3
- package/src/Shared/VisionCameraPlugins/FaceDetector/types.ts +0 -99
- package/src/Shared/VisionCameraPlugins/TextRecognition/Camera.tsx +0 -76
- package/src/Shared/VisionCameraPlugins/TextRecognition/PhotoRecognizer.ts +0 -18
- package/src/Shared/VisionCameraPlugins/TextRecognition/RemoveLanguageModel.ts +0 -7
- package/src/Shared/VisionCameraPlugins/TextRecognition/index.ts +0 -7
- package/src/Shared/VisionCameraPlugins/TextRecognition/scanText.ts +0 -27
- package/src/Shared/VisionCameraPlugins/TextRecognition/translateText.ts +0 -21
- package/src/Shared/VisionCameraPlugins/TextRecognition/types.ts +0 -141
|
@@ -1,48 +1,43 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
'verificationSessionCheckScreen.mainText':
|
|
3
|
-
'
|
|
3
|
+
'Start the identity verification process',
|
|
4
4
|
'verificationSessionCheckScreen.enterSessionCode': 'Enter Session Code',
|
|
5
5
|
'verificationSessionCheckScreen.codeText':
|
|
6
|
-
'Please enter
|
|
6
|
+
'Please enter your verification code',
|
|
7
7
|
'verificationSessionCheckScreen.codeError':
|
|
8
|
-
'The code you entered is incorrect
|
|
8
|
+
'The verification code you entered is incorrect',
|
|
9
9
|
'verificationSessionCheckScreen.sendCodeAgain': 'Send Code Again',
|
|
10
10
|
'verificationSessionCheckScreen.cannotSendVerificationCode':
|
|
11
|
-
'Unable to send verification code.',
|
|
11
|
+
'Unable to send verification code. Please try again.',
|
|
12
12
|
'verificationSessionCheckScreen.noVerificationSessionFound':
|
|
13
|
-
'
|
|
13
|
+
'Verification session not found or expired.',
|
|
14
14
|
'verificationSessionCheckScreen.scanQRCode': 'Scan QR Code',
|
|
15
15
|
'verificationSessionCheckScreen.or': 'or',
|
|
16
16
|
'general.warning': 'Warning',
|
|
17
17
|
'general.error': 'Error',
|
|
18
18
|
'general.yes': 'Yes',
|
|
19
19
|
'general.no': 'No',
|
|
20
|
-
'general.letsGo':
|
|
20
|
+
'general.letsGo': 'Start',
|
|
21
21
|
'general.noCameraPermissionGiven':
|
|
22
|
-
'Camera
|
|
22
|
+
'Camera access is required. Please enable camera permissions in your device settings.',
|
|
23
23
|
'general.noMicrophonePermissionGiven':
|
|
24
|
-
'Microphone
|
|
25
|
-
'general.noCameraDetected':
|
|
26
|
-
'No camera hardware detected. Please use a different device.',
|
|
24
|
+
'Microphone access is required. Please enable microphone permissions in your device settings.',
|
|
25
|
+
'general.noCameraDetected': 'Camera hardware not available on this device',
|
|
27
26
|
'general.openSettings': 'Open Settings',
|
|
28
|
-
'general.countryNotAllowed':
|
|
29
|
-
|
|
30
|
-
'general.documentTypeNotAllowed':
|
|
31
|
-
'The scanned document type is not supported for identity verification.',
|
|
27
|
+
'general.countryNotAllowed': 'Country not supported',
|
|
28
|
+
'general.documentTypeNotAllowed': 'Document type not supported',
|
|
32
29
|
'termsOfUseAndDataPrivacyScreen.footerText':
|
|
33
|
-
'Please read
|
|
30
|
+
'Please read and scroll to accept',
|
|
34
31
|
'termsOfUseAndDataPrivacyScreen.footerTextSRO':
|
|
35
|
-
|
|
32
|
+
'You can now tap Accept to continue',
|
|
36
33
|
'termsOfUseAndDataPrivacyScreen.acceptAndContinue': 'Accept and Continue',
|
|
37
|
-
'resultScreen.submitting': 'Submitting
|
|
38
|
-
'resultScreen.submissionFailed':
|
|
39
|
-
'An error occurred during the verification process. Please try again later.',
|
|
34
|
+
'resultScreen.submitting': 'Submitting your information...',
|
|
35
|
+
'resultScreen.submissionFailed': 'An error occurred. Please try again later.',
|
|
40
36
|
'resultScreen.submissionSuccessful':
|
|
41
|
-
'
|
|
37
|
+
'Your information has been securely submitted. You will be notified of the verification result shortly.',
|
|
42
38
|
'resultScreen.thankYou': 'Thank You!',
|
|
43
39
|
'resultScreen.demo': 'Demo',
|
|
44
|
-
'resultScreen.demoDescription':
|
|
45
|
-
'Displays the data collected during the demo.',
|
|
40
|
+
'resultScreen.demoDescription': 'Collected demo data',
|
|
46
41
|
'resultScreen.demoDeviceIdentifier': 'Device Identifier',
|
|
47
42
|
'resultScreen.demoScannedDocument': 'Scanned Document',
|
|
48
43
|
'resultScreen.demoScannedDocumentInformation': 'Information',
|
|
@@ -54,48 +49,43 @@ export default {
|
|
|
54
49
|
'resultScreen.demoImageHologram': 'Hologram',
|
|
55
50
|
'resultScreen.demoLivenessDetection': 'Liveness Detection',
|
|
56
51
|
'resultScreen.demoVideo': 'Video',
|
|
57
|
-
'resultScreen.demoInstruction_smile': 'Smile',
|
|
58
|
-
'resultScreen.demoInstruction_look_straight_and_blink':
|
|
59
|
-
'Look straight and blink',
|
|
60
|
-
'resultScreen.demoInstruction_turn_head_left': 'Turn your head to the left',
|
|
61
|
-
'resultScreen.demoInstruction_turn_head_right': 'Turn your head to the right',
|
|
62
|
-
'resultScreen.demoInstruction_look_up': 'Look up',
|
|
63
52
|
'resultScreen.demoStartOver': 'Start Over',
|
|
64
|
-
'livenessDetectionScreen.guideHeader': '
|
|
53
|
+
'livenessDetectionScreen.guideHeader': 'Face Verification',
|
|
65
54
|
'livenessDetectionScreen.guideText':
|
|
66
|
-
'
|
|
55
|
+
'Please ensure the following for best results:',
|
|
67
56
|
'livenessDetectionScreen.guidePoint1':
|
|
68
|
-
'
|
|
69
|
-
'livenessDetectionScreen.guidePoint2': '
|
|
70
|
-
'livenessDetectionScreen.guidePoint3': '
|
|
57
|
+
'Remove glasses, hats, or face coverings',
|
|
58
|
+
'livenessDetectionScreen.guidePoint2': 'Position yourself in good lighting',
|
|
59
|
+
'livenessDetectionScreen.guidePoint3': 'Find a quiet environment',
|
|
71
60
|
'livenessDetectionScreen.guidePoint4':
|
|
72
|
-
'Ensure
|
|
61
|
+
'Ensure only your face is visible in the frame',
|
|
73
62
|
'livenessDetectionScreen.placeFaceInsideCircle':
|
|
74
|
-
'
|
|
63
|
+
'Position your face inside the circle',
|
|
75
64
|
'livenessDetectionScreen.multipleFacesDetected':
|
|
76
|
-
'Multiple faces detected.
|
|
77
|
-
'livenessDetectionScreen.start': 'Keep your face
|
|
78
|
-
'livenessDetectionScreen.smile': '
|
|
65
|
+
'Multiple faces detected. Ensure only you are in frame.',
|
|
66
|
+
'livenessDetectionScreen.start': 'Keep your face in the circle',
|
|
67
|
+
'livenessDetectionScreen.smile': 'Look at camera and smile',
|
|
79
68
|
'livenessDetectionScreen.lookStraightAndBlink':
|
|
80
|
-
'Look at
|
|
81
|
-
'livenessDetectionScreen.turnHeadLeft': 'Turn
|
|
82
|
-
'livenessDetectionScreen.turnHeadRight': 'Turn
|
|
69
|
+
'Look at camera and blink both eyes',
|
|
70
|
+
'livenessDetectionScreen.turnHeadLeft': 'Turn head left',
|
|
71
|
+
'livenessDetectionScreen.turnHeadRight': 'Turn head right',
|
|
83
72
|
'livenessDetectionScreen.lookUp': 'Look up',
|
|
84
|
-
'livenessDetectionScreen.sayNumber': 'Say
|
|
85
|
-
'livenessDetectionScreen.finish': '
|
|
73
|
+
'livenessDetectionScreen.sayNumber': 'Say: {number}',
|
|
74
|
+
'livenessDetectionScreen.finish': 'Completed',
|
|
86
75
|
'livenessDetectionScreen.brightnessLow':
|
|
87
|
-
'
|
|
76
|
+
'Insufficient lighting. Please provide better illumination.',
|
|
88
77
|
'livenessDetectionScreen.faceTooBig':
|
|
89
78
|
'You are too close. Please move back slightly.',
|
|
90
79
|
'livenessDetectionScreen.followInstructions':
|
|
91
|
-
'
|
|
92
|
-
'eidScannerScreen.guideHeader': '
|
|
80
|
+
'Please keep device steady and follow the instructions.',
|
|
81
|
+
'eidScannerScreen.guideHeader': 'NFC Document Scan',
|
|
93
82
|
'eidScannerScreen.guideText':
|
|
94
|
-
'
|
|
83
|
+
'When prompted, hold your document flat against the back of your device near the NFC antenna.',
|
|
95
84
|
'eidScannerScreen.invalidMRZFields':
|
|
96
|
-
'
|
|
97
|
-
'eidScannerScreen.imageCannotBeShown':
|
|
98
|
-
|
|
85
|
+
'Document information could not be read. Please try again.',
|
|
86
|
+
'eidScannerScreen.imageCannotBeShown':
|
|
87
|
+
'Photo data found but cannot be displayed.',
|
|
88
|
+
'eidScannerScreen.faceImageNotFound': 'Photo data not found on document.',
|
|
99
89
|
'eidScannerScreen.documentCode': 'Document Code',
|
|
100
90
|
'eidScannerScreen.nationality': 'Nationality',
|
|
101
91
|
'eidScannerScreen.personalNumber': 'Personal Number',
|
|
@@ -107,72 +97,72 @@ export default {
|
|
|
107
97
|
'eidScannerScreen.expirationDate': 'Expiration Date',
|
|
108
98
|
'eidScannerScreen.mrzText': 'MRZ Text',
|
|
109
99
|
'eidScannerScreen.nfcNotSupported':
|
|
110
|
-
'
|
|
100
|
+
'This device does not support NFC functionality.',
|
|
111
101
|
'eidScannerScreen.nfcNotEnabled':
|
|
112
|
-
'NFC is
|
|
102
|
+
'NFC is disabled on this device. Enable it in settings.',
|
|
113
103
|
'eidScannerScreen.enableNFC': 'Enable NFC',
|
|
114
|
-
'eidScannerScreen.startScanning': 'Start
|
|
115
|
-
'eidScannerScreen.placeIDCardOnNFC':
|
|
116
|
-
'Please place your identity document near the NFC reader on the back of your device and wait.',
|
|
104
|
+
'eidScannerScreen.startScanning': 'Start Scan',
|
|
105
|
+
'eidScannerScreen.placeIDCardOnNFC': 'Place your ID card near the NFC reader',
|
|
117
106
|
'eidScannerScreen.placePassportOnNFC':
|
|
118
|
-
'
|
|
107
|
+
'Place your passport near the NFC reader',
|
|
119
108
|
'eidScannerScreen.placeDocumentOnNFC':
|
|
120
|
-
'
|
|
121
|
-
'eidScannerScreen.readingDocument':
|
|
122
|
-
|
|
123
|
-
'eidScannerScreen.checkYourInformation':
|
|
124
|
-
"Please review your information. To continue, press 'Approve and Continue'.",
|
|
109
|
+
'Place your document near the NFC reader',
|
|
110
|
+
'eidScannerScreen.readingDocument': 'Hold steady - Reading document',
|
|
111
|
+
'eidScannerScreen.checkYourInformation': 'Review your information carefully',
|
|
125
112
|
'eidScannerScreen.approveAndContinue': 'Approve and Continue',
|
|
126
|
-
'eidScannerScreen.connecting': '
|
|
113
|
+
'eidScannerScreen.connecting': 'Establishing secure connection...',
|
|
127
114
|
'eidScannerScreen.readingMRZ': 'Reading document information...',
|
|
128
|
-
'eidScannerScreen.readingFaceImage': 'Reading photo...',
|
|
129
|
-
'eidScannerScreen.completing': '
|
|
115
|
+
'eidScannerScreen.readingFaceImage': 'Reading photo data...',
|
|
116
|
+
'eidScannerScreen.completing': 'Finalizing verification...',
|
|
130
117
|
'eidScannerScreen.progress': 'Progress',
|
|
131
|
-
'identityDocumentCamera.guideHeader': '
|
|
118
|
+
'identityDocumentCamera.guideHeader': 'Document Scan',
|
|
132
119
|
'identityDocumentCamera.guideText':
|
|
133
|
-
'
|
|
120
|
+
'Please ensure the following for best results:',
|
|
134
121
|
'identityDocumentCamera.guidePoint1':
|
|
135
|
-
'
|
|
136
|
-
'identityDocumentCamera.guidePoint2': '
|
|
137
|
-
'identityDocumentCamera.guidePoint3':
|
|
138
|
-
'Avoid reflections or glare on the document',
|
|
122
|
+
'Place document on a flat, dark surface',
|
|
123
|
+
'identityDocumentCamera.guidePoint2': 'Use adequate lighting without glare',
|
|
124
|
+
'identityDocumentCamera.guidePoint3': 'Keep the document within the frame',
|
|
139
125
|
'identityDocumentCamera.lowBrightness':
|
|
140
|
-
'
|
|
141
|
-
'identityDocumentCamera.alignPhotoSide':
|
|
142
|
-
|
|
143
|
-
'identityDocumentCamera.alignHologram':
|
|
144
|
-
'Please show the hologram on your document to the camera from different angles.',
|
|
126
|
+
'Insufficient lighting. Move to a brighter location.',
|
|
127
|
+
'identityDocumentCamera.alignPhotoSide': 'Show the side with your photo',
|
|
128
|
+
'identityDocumentCamera.alignHologram': 'Tilt your document slowly',
|
|
145
129
|
'identityDocumentCamera.alignIDFrontSide':
|
|
146
|
-
'Align the front side of your
|
|
130
|
+
'Align the front side of your ID card',
|
|
147
131
|
'identityDocumentCamera.alignIDBackSide':
|
|
148
|
-
'Align the back side of your
|
|
149
|
-
'identityDocumentCamera.scanCompleted': 'Scan completed
|
|
132
|
+
'Align the back side of your ID card',
|
|
133
|
+
'identityDocumentCamera.scanCompleted': 'Scan completed!',
|
|
150
134
|
'identityDocumentCamera.frontSideScanned': 'Front side scanned!',
|
|
151
135
|
'identityDocumentCamera.passportScanned': 'Passport scanned!',
|
|
152
136
|
'identityDocumentCamera.backSideScanned': 'Back side scanned!',
|
|
153
|
-
'identityDocumentCamera.hologramVerified': '
|
|
154
|
-
'identityDocumentCamera.searchingDocument':
|
|
155
|
-
|
|
137
|
+
'identityDocumentCamera.hologramVerified': 'Hologram verified!',
|
|
138
|
+
'identityDocumentCamera.searchingDocument':
|
|
139
|
+
'Position document within the frame',
|
|
140
|
+
'identityDocumentCamera.faceDetected': 'Keep device steady...',
|
|
156
141
|
'identityDocumentCamera.readingDocument': 'Reading document...',
|
|
157
|
-
'identityDocumentCamera.processing': 'Processing...',
|
|
158
|
-
'identityDocumentCamera.stepProgress': '
|
|
159
|
-
'identityDocumentCamera.frontSide': 'Front
|
|
160
|
-
'identityDocumentCamera.backSide': 'Back
|
|
161
|
-
'identityDocumentCamera.hologramCheck': 'Hologram
|
|
162
|
-
'identityDocumentCamera.keepSteady': 'Keep
|
|
163
|
-
'identityDocumentCamera.avoidBlur': '
|
|
164
|
-
'identityDocumentCamera.wrongSideFront':
|
|
165
|
-
|
|
166
|
-
'identityDocumentCamera.
|
|
167
|
-
'identityDocumentCamera.
|
|
168
|
-
'identityDocumentCamera.
|
|
169
|
-
'identityDocumentCamera.
|
|
170
|
-
'identityDocumentCamera.
|
|
171
|
-
'identityDocumentCamera.
|
|
172
|
-
'identityDocumentCamera.
|
|
173
|
-
'identityDocumentCamera.
|
|
174
|
-
'identityDocumentCamera.
|
|
142
|
+
'identityDocumentCamera.processing': 'Processing document...',
|
|
143
|
+
'identityDocumentCamera.stepProgress': '{{current}}/{{total}}',
|
|
144
|
+
'identityDocumentCamera.frontSide': 'Front',
|
|
145
|
+
'identityDocumentCamera.backSide': 'Back',
|
|
146
|
+
'identityDocumentCamera.hologramCheck': 'Hologram',
|
|
147
|
+
'identityDocumentCamera.keepSteady': 'Keep device steady',
|
|
148
|
+
'identityDocumentCamera.avoidBlur': 'Keep device steady',
|
|
149
|
+
'identityDocumentCamera.wrongSideFront':
|
|
150
|
+
'Show the front side of your document',
|
|
151
|
+
'identityDocumentCamera.wrongSideBack': 'Show the back side of your document',
|
|
152
|
+
'identityDocumentCamera.idCardDetected': 'ID detected',
|
|
153
|
+
'identityDocumentCamera.idCardFrontDetected': 'Keep device steady...',
|
|
154
|
+
'identityDocumentCamera.idCardBackDetected': 'Keep device steady...',
|
|
155
|
+
'identityDocumentCamera.passportDetected': 'Keep device steady...',
|
|
156
|
+
'identityDocumentCamera.alignIDFront': 'Align your ID card (front)',
|
|
157
|
+
'identityDocumentCamera.alignIDBack': 'Align your ID card (back)',
|
|
158
|
+
'identityDocumentCamera.alignPassport': 'Align your passport',
|
|
159
|
+
'identityDocumentCamera.moveCloser': 'Move closer',
|
|
160
|
+
'identityDocumentCamera.moveFarther': 'Move back',
|
|
161
|
+
'identityDocumentCamera.documentTooSmall': 'Too far. Move closer.',
|
|
162
|
+
'identityDocumentCamera.documentTooLarge': 'Too close. Move back.',
|
|
163
|
+
'identityDocumentCamera.holdSteady': 'Keep device steady',
|
|
164
|
+
'identityDocumentCamera.centerDocument': 'Center document in the frame',
|
|
175
165
|
'navigationManager.skipStepWarning':
|
|
176
|
-
'
|
|
166
|
+
'Completing this step is recommended for successful verification. Skip anyway?',
|
|
177
167
|
'navigationManager.skipStepLabel': 'Skip This Step',
|
|
178
168
|
};
|
|
@@ -1,46 +1,43 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
'verificationSessionCheckScreen.mainText':
|
|
3
|
-
'Kimlik doğrulama sürecini
|
|
4
|
-
'verificationSessionCheckScreen.enterSessionCode': 'Oturum
|
|
5
|
-
'verificationSessionCheckScreen.codeText':
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
'Kimlik doğrulama sürecini başlatın',
|
|
4
|
+
'verificationSessionCheckScreen.enterSessionCode': 'Oturum Kodunu Girin',
|
|
5
|
+
'verificationSessionCheckScreen.codeText': 'Doğrulama kodunu girin',
|
|
6
|
+
'verificationSessionCheckScreen.codeError':
|
|
7
|
+
'Girdiğiniz doğrulama kodu hatalı.',
|
|
8
8
|
'verificationSessionCheckScreen.sendCodeAgain': 'Kodu Tekrar Gönder',
|
|
9
9
|
'verificationSessionCheckScreen.cannotSendVerificationCode':
|
|
10
|
-
'Doğrulama kodu gönderilemedi.',
|
|
10
|
+
'Doğrulama kodu gönderilemedi. Lütfen tekrar deneyin.',
|
|
11
11
|
'verificationSessionCheckScreen.noVerificationSessionFound':
|
|
12
|
-
'
|
|
13
|
-
'verificationSessionCheckScreen.scanQRCode': 'QR Kodu
|
|
12
|
+
'Oturum bulunamadı veya süresi doldu',
|
|
13
|
+
'verificationSessionCheckScreen.scanQRCode': 'QR Kodu Tarayın',
|
|
14
14
|
'verificationSessionCheckScreen.or': 'veya',
|
|
15
15
|
'general.warning': 'Uyarı',
|
|
16
16
|
'general.error': 'Hata',
|
|
17
17
|
'general.yes': 'Evet',
|
|
18
18
|
'general.no': 'Hayır',
|
|
19
|
-
'general.letsGo': '
|
|
19
|
+
'general.letsGo': 'Başla',
|
|
20
20
|
'general.noCameraPermissionGiven':
|
|
21
|
-
'Kamera
|
|
21
|
+
'Kamera erişimi gereklidir. Lütfen cihaz ayarlarından kamera iznini etkinleştirin.',
|
|
22
22
|
'general.noMicrophonePermissionGiven':
|
|
23
|
-
'Mikrofon
|
|
24
|
-
'general.noCameraDetected':
|
|
25
|
-
'Kamera donanımı algılanamadı. Lütfen farklı bir cihaz kullanın.',
|
|
23
|
+
'Mikrofon erişimi gereklidir. Lütfen cihaz ayarlarından mikrofon iznini etkinleştirin.',
|
|
24
|
+
'general.noCameraDetected': 'Bu cihazda kamera donanımı mevcut değil',
|
|
26
25
|
'general.openSettings': 'Ayarları Aç',
|
|
27
|
-
'general.countryNotAllowed':
|
|
28
|
-
|
|
29
|
-
'general.documentTypeNotAllowed':
|
|
30
|
-
'Taranan belge türü, kimlik doğrulama için desteklenmiyor.',
|
|
26
|
+
'general.countryNotAllowed': 'Bu ülkeye ait belgeler desteklenmiyor',
|
|
27
|
+
'general.documentTypeNotAllowed': 'Bu belge türü desteklenmiyor',
|
|
31
28
|
'termsOfUseAndDataPrivacyScreen.footerText':
|
|
32
|
-
'Lütfen
|
|
29
|
+
'Lütfen metni okuyun ve kabul etmek için kaydırın',
|
|
33
30
|
'termsOfUseAndDataPrivacyScreen.footerTextSRO':
|
|
34
|
-
|
|
31
|
+
'Devam etmek için Kabul Et ve Devam Et’e basın',
|
|
35
32
|
'termsOfUseAndDataPrivacyScreen.acceptAndContinue': 'Kabul Et ve Devam Et',
|
|
36
|
-
'resultScreen.submitting': '
|
|
33
|
+
'resultScreen.submitting': 'Bilgileriniz gönderiliyor...',
|
|
37
34
|
'resultScreen.submissionFailed':
|
|
38
|
-
'
|
|
35
|
+
'Bir hata oluştu. Lütfen daha sonra tekrar deneyin.',
|
|
39
36
|
'resultScreen.submissionSuccessful':
|
|
40
|
-
'
|
|
37
|
+
'Bilgileriniz güvenle gönderilmiştir. Doğrulama sonucu kısa süre içinde size bildirilecektir.',
|
|
41
38
|
'resultScreen.thankYou': 'Teşekkürler!',
|
|
42
39
|
'resultScreen.demo': 'Demo',
|
|
43
|
-
'resultScreen.demoDescription': 'Demo
|
|
40
|
+
'resultScreen.demoDescription': 'Demo verilerini göster',
|
|
44
41
|
'resultScreen.demoDeviceIdentifier': 'Cihaz Tanımlayıcısı',
|
|
45
42
|
'resultScreen.demoScannedDocument': 'Taranan Belge',
|
|
46
43
|
'resultScreen.demoScannedDocumentInformation': 'Bilgiler',
|
|
@@ -52,50 +49,43 @@ export default {
|
|
|
52
49
|
'resultScreen.demoImageHologram': 'Hologram',
|
|
53
50
|
'resultScreen.demoLivenessDetection': 'Canlılık Tespiti',
|
|
54
51
|
'resultScreen.demoVideo': 'Video',
|
|
55
|
-
'resultScreen.demoInstruction_smile': 'Gülümseyin',
|
|
56
|
-
'resultScreen.demoInstruction_look_straight_and_blink':
|
|
57
|
-
'Düz bakın ve göz kırpın',
|
|
58
|
-
'resultScreen.demoInstruction_turn_head_left': 'Başınızı sola çevirin',
|
|
59
|
-
'resultScreen.demoInstruction_turn_head_right': 'Başınızı sağa çevirin',
|
|
60
|
-
'resultScreen.demoInstruction_look_up': 'Yukarı bakın',
|
|
61
52
|
'resultScreen.demoStartOver': 'Baştan Başla',
|
|
62
|
-
'livenessDetectionScreen.guideHeader': 'Yüz
|
|
53
|
+
'livenessDetectionScreen.guideHeader': 'Yüz Doğrulaması',
|
|
63
54
|
'livenessDetectionScreen.guideText':
|
|
64
|
-
'
|
|
55
|
+
'En iyi sonuç için lütfen şunları sağlayın:',
|
|
65
56
|
'livenessDetectionScreen.guidePoint1':
|
|
66
|
-
'Gözlük, şapka veya
|
|
57
|
+
'Gözlük, şapka veya yüz aksesuarlarını çıkarın',
|
|
67
58
|
'livenessDetectionScreen.guidePoint2':
|
|
68
|
-
'
|
|
69
|
-
'livenessDetectionScreen.guidePoint3': '
|
|
70
|
-
'livenessDetectionScreen.guidePoint4':
|
|
71
|
-
'Kameranın önünde yalnızca sizin bulunduğunuzdan emin olun',
|
|
59
|
+
'İyi aydınlatılmış bir ortamda bulunun',
|
|
60
|
+
'livenessDetectionScreen.guidePoint3': 'Sessiz bir ortam seçin',
|
|
61
|
+
'livenessDetectionScreen.guidePoint4': 'Çerçevede yalnızca yüzünüz görünsün',
|
|
72
62
|
'livenessDetectionScreen.placeFaceInsideCircle':
|
|
73
|
-
'Lütfen yüzünüzü daire içine konumlandırın
|
|
63
|
+
'Lütfen yüzünüzü daire içine konumlandırın',
|
|
74
64
|
'livenessDetectionScreen.multipleFacesDetected':
|
|
75
|
-
'Birden fazla yüz algılandı. Lütfen
|
|
76
|
-
'livenessDetectionScreen.start': 'Yüzünüzü
|
|
77
|
-
'livenessDetectionScreen.smile': '
|
|
65
|
+
'Birden fazla yüz algılandı. Lütfen yalnız olduğunuzdan emin olun.',
|
|
66
|
+
'livenessDetectionScreen.start': 'Yüzünüzü dairede tutun',
|
|
67
|
+
'livenessDetectionScreen.smile': 'Kameraya bakın ve gülümseyin',
|
|
78
68
|
'livenessDetectionScreen.lookStraightAndBlink':
|
|
79
|
-
'Kameraya bakın ve
|
|
69
|
+
'Kameraya bakın ve gözlerinizi kırpın',
|
|
80
70
|
'livenessDetectionScreen.turnHeadLeft': 'Başınızı sola çevirin',
|
|
81
71
|
'livenessDetectionScreen.turnHeadRight': 'Başınızı sağa çevirin',
|
|
82
72
|
'livenessDetectionScreen.lookUp': 'Yukarı bakın',
|
|
83
|
-
'livenessDetectionScreen.sayNumber': '
|
|
84
|
-
'livenessDetectionScreen.finish': '
|
|
73
|
+
'livenessDetectionScreen.sayNumber': 'Lütfen bu numarayı söyleyin: {number}',
|
|
74
|
+
'livenessDetectionScreen.finish': 'Tamamlandı',
|
|
85
75
|
'livenessDetectionScreen.brightnessLow':
|
|
86
|
-
'Lütfen
|
|
76
|
+
'Aydınlatma yetersiz. Lütfen daha iyi aydınlatılmış bir ortam sağlayın.',
|
|
87
77
|
'livenessDetectionScreen.faceTooBig':
|
|
88
78
|
'Çok yakınsınız. Lütfen biraz geriye çekilin.',
|
|
89
79
|
'livenessDetectionScreen.followInstructions':
|
|
90
|
-
'
|
|
91
|
-
'eidScannerScreen.guideHeader': 'NFC Taraması
|
|
80
|
+
'Lütfen cihazı sabit tutun ve talimatları izleyin',
|
|
81
|
+
'eidScannerScreen.guideHeader': 'NFC Belge Taraması',
|
|
92
82
|
'eidScannerScreen.guideText':
|
|
93
|
-
'
|
|
83
|
+
'İstendiğinde, belgenizi cihazınızın arka tarafındaki NFC antenine düz bir şekilde yaklaştırın.',
|
|
94
84
|
'eidScannerScreen.invalidMRZFields':
|
|
95
|
-
'
|
|
85
|
+
'Belge bilgileri okunamadı. Lütfen tekrar deneyin.',
|
|
96
86
|
'eidScannerScreen.imageCannotBeShown':
|
|
97
|
-
'Fotoğraf bulundu ancak gösterilemiyor.',
|
|
98
|
-
'eidScannerScreen.faceImageNotFound': '
|
|
87
|
+
'Fotoğraf verisi bulundu ancak gösterilemiyor.',
|
|
88
|
+
'eidScannerScreen.faceImageNotFound': 'Belgede fotoğraf verisi bulunamadı.',
|
|
99
89
|
'eidScannerScreen.documentCode': 'Belge Kodu',
|
|
100
90
|
'eidScannerScreen.nationality': 'Uyruk',
|
|
101
91
|
'eidScannerScreen.personalNumber': 'Vatandaşlık No',
|
|
@@ -107,72 +97,74 @@ export default {
|
|
|
107
97
|
'eidScannerScreen.expirationDate': 'Geçerlilik Tarihi',
|
|
108
98
|
'eidScannerScreen.mrzText': 'MRZ Metni',
|
|
109
99
|
'eidScannerScreen.nfcNotSupported':
|
|
110
|
-
'
|
|
100
|
+
'Bu cihaz NFC işlevini desteklememektedir.',
|
|
111
101
|
'eidScannerScreen.nfcNotEnabled':
|
|
112
|
-
'NFC
|
|
102
|
+
'Cihazda NFC devre dışı. Lütfen ayarlardan etkinleştirin.',
|
|
113
103
|
'eidScannerScreen.enableNFC': "NFC'yi Etkinleştir",
|
|
114
104
|
'eidScannerScreen.startScanning': 'Taramaya Başla',
|
|
115
105
|
'eidScannerScreen.placeIDCardOnNFC':
|
|
116
|
-
'
|
|
106
|
+
'Kimlik kartınızı NFC okuyucuya yaklaştırın',
|
|
117
107
|
'eidScannerScreen.placePassportOnNFC':
|
|
118
|
-
'
|
|
119
|
-
'eidScannerScreen.placeDocumentOnNFC':
|
|
120
|
-
|
|
121
|
-
'eidScannerScreen.readingDocument':
|
|
122
|
-
'Lütfen sabit tutun ve okuma işlemi tamamlanana kadar bekleyin.',
|
|
108
|
+
'Pasaportunuzu NFC okuyucuya yaklaştırın',
|
|
109
|
+
'eidScannerScreen.placeDocumentOnNFC': 'Belgenizi NFC okuyucuya yaklaştırın',
|
|
110
|
+
'eidScannerScreen.readingDocument': 'Sabit tutun - Belge okunuyor',
|
|
123
111
|
'eidScannerScreen.checkYourInformation':
|
|
124
|
-
|
|
112
|
+
'Bilgilerinizi dikkatle kontrol edin',
|
|
125
113
|
'eidScannerScreen.approveAndContinue': 'Onayla ve Devam Et',
|
|
126
|
-
'eidScannerScreen.connecting': '
|
|
114
|
+
'eidScannerScreen.connecting': 'Güvenli bağlantı kuruluyor...',
|
|
127
115
|
'eidScannerScreen.readingMRZ': 'Belge bilgileri okunuyor...',
|
|
128
|
-
'eidScannerScreen.readingFaceImage': 'Fotoğraf okunuyor...',
|
|
129
|
-
'eidScannerScreen.completing': '
|
|
116
|
+
'eidScannerScreen.readingFaceImage': 'Fotoğraf verisi okunuyor...',
|
|
117
|
+
'eidScannerScreen.completing': 'Doğrulama tamamlanıyor...',
|
|
130
118
|
'eidScannerScreen.progress': 'İlerleme',
|
|
131
|
-
'identityDocumentCamera.guideHeader': '
|
|
119
|
+
'identityDocumentCamera.guideHeader': 'Belge Taraması',
|
|
132
120
|
'identityDocumentCamera.guideText':
|
|
133
|
-
'
|
|
134
|
-
'identityDocumentCamera.guidePoint1':
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
'identityDocumentCamera.guidePoint3':
|
|
138
|
-
'Belge üzerinde yansıma veya parlama olmamasına dikkat edin',
|
|
121
|
+
'En iyi sonuç için lütfen şunları sağlayın:',
|
|
122
|
+
'identityDocumentCamera.guidePoint1':
|
|
123
|
+
'Belgeyi düz, koyu bir zemin üzerine yerleştirin',
|
|
124
|
+
'identityDocumentCamera.guidePoint2': 'Yansıma olmadan yeterli ışık kullanın',
|
|
125
|
+
'identityDocumentCamera.guidePoint3': 'Belgeyi çerçeve içinde tutun',
|
|
139
126
|
'identityDocumentCamera.lowBrightness':
|
|
140
|
-
'
|
|
141
|
-
'identityDocumentCamera.alignPhotoSide':
|
|
142
|
-
|
|
143
|
-
'identityDocumentCamera.alignHologram':
|
|
144
|
-
'Lütfen belgenizdeki hologramı farklı açılardan kameraya gösterin.',
|
|
127
|
+
'Aydınlatma yetersiz. Lütfen daha aydınlık bir yere gidin.',
|
|
128
|
+
'identityDocumentCamera.alignPhotoSide': 'Fotoğraflı yüzü gösterin',
|
|
129
|
+
'identityDocumentCamera.alignHologram': 'Belgenizi yavaşça eğin',
|
|
145
130
|
'identityDocumentCamera.alignIDFrontSide':
|
|
146
|
-
'Kimlik
|
|
131
|
+
'Kimlik kartınızın ön yüzünü hizalayın',
|
|
147
132
|
'identityDocumentCamera.alignIDBackSide':
|
|
148
|
-
'Kimlik
|
|
149
|
-
'identityDocumentCamera.scanCompleted': 'Tarama
|
|
133
|
+
'Kimlik kartınızın arka yüzünü hizalayın',
|
|
134
|
+
'identityDocumentCamera.scanCompleted': 'Tarama tamamlandı!',
|
|
150
135
|
'identityDocumentCamera.frontSideScanned': 'Ön yüz tarandı!',
|
|
151
136
|
'identityDocumentCamera.passportScanned': 'Pasaport tarandı!',
|
|
152
137
|
'identityDocumentCamera.backSideScanned': 'Arka yüz tarandı!',
|
|
153
|
-
'identityDocumentCamera.hologramVerified': '
|
|
154
|
-
'identityDocumentCamera.searchingDocument':
|
|
155
|
-
|
|
138
|
+
'identityDocumentCamera.hologramVerified': 'Hologram doğrulandı!',
|
|
139
|
+
'identityDocumentCamera.searchingDocument':
|
|
140
|
+
'Belgeyi çerçeve içine yerleştirin',
|
|
141
|
+
'identityDocumentCamera.faceDetected': 'Cihazı sabit tutun...',
|
|
156
142
|
'identityDocumentCamera.readingDocument': 'Belge okunuyor...',
|
|
157
|
-
'identityDocumentCamera.processing': '
|
|
158
|
-
'identityDocumentCamera.stepProgress': '
|
|
159
|
-
'identityDocumentCamera.frontSide': 'Ön
|
|
160
|
-
'identityDocumentCamera.backSide': 'Arka
|
|
161
|
-
'identityDocumentCamera.hologramCheck': 'Hologram
|
|
162
|
-
'identityDocumentCamera.keepSteady': '
|
|
163
|
-
'identityDocumentCamera.avoidBlur': '
|
|
164
|
-
'identityDocumentCamera.wrongSideFront': '
|
|
165
|
-
'identityDocumentCamera.wrongSideBack': '
|
|
143
|
+
'identityDocumentCamera.processing': 'Belge işleniyor...',
|
|
144
|
+
'identityDocumentCamera.stepProgress': '{{current}}/{{total}}',
|
|
145
|
+
'identityDocumentCamera.frontSide': 'Ön',
|
|
146
|
+
'identityDocumentCamera.backSide': 'Arka',
|
|
147
|
+
'identityDocumentCamera.hologramCheck': 'Hologram',
|
|
148
|
+
'identityDocumentCamera.keepSteady': 'Cihazı sabit tutun',
|
|
149
|
+
'identityDocumentCamera.avoidBlur': 'Cihazı sabit tutun',
|
|
150
|
+
'identityDocumentCamera.wrongSideFront': 'Belgenizin ön yüzünü gösterin',
|
|
151
|
+
'identityDocumentCamera.wrongSideBack': 'Belgenizin arka yüzünü gösterin',
|
|
166
152
|
'identityDocumentCamera.idCardDetected': 'Kimlik kartı algılandı',
|
|
167
|
-
'identityDocumentCamera.idCardFrontDetected': '
|
|
168
|
-
'identityDocumentCamera.
|
|
169
|
-
'identityDocumentCamera.
|
|
170
|
-
'identityDocumentCamera.
|
|
171
|
-
|
|
172
|
-
'identityDocumentCamera.
|
|
173
|
-
|
|
153
|
+
'identityDocumentCamera.idCardFrontDetected': 'Cihazı sabit tutun...',
|
|
154
|
+
'identityDocumentCamera.idCardBackDetected': 'Cihazı sabit tutun...',
|
|
155
|
+
'identityDocumentCamera.passportDetected': 'Cihazı sabit tutun...',
|
|
156
|
+
'identityDocumentCamera.alignIDFront':
|
|
157
|
+
'Kimlik kartınızın ön yüzünü hizalayın',
|
|
158
|
+
'identityDocumentCamera.alignIDBack':
|
|
159
|
+
'Kimlik kartınızın arka yüzünü hizalayın',
|
|
160
|
+
'identityDocumentCamera.alignPassport': 'Pasaportu hizalayın',
|
|
161
|
+
'identityDocumentCamera.moveCloser': 'Lütfen yaklaşın',
|
|
162
|
+
'identityDocumentCamera.moveFarther': 'Lütfen uzaklaşın',
|
|
163
|
+
'identityDocumentCamera.documentTooSmall': 'Belge çok uzak. Yaklaşın.',
|
|
164
|
+
'identityDocumentCamera.documentTooLarge': 'Belge çok yakın. Uzaklaşın.',
|
|
165
|
+
'identityDocumentCamera.holdSteady': 'Cihazı sabit tutun',
|
|
174
166
|
'identityDocumentCamera.centerDocument': 'Belgeyi çerçevede ortalayın',
|
|
175
167
|
'navigationManager.skipStepWarning':
|
|
176
|
-
'
|
|
168
|
+
'Başarılı bir doğrulama için bu adımı tamamlamanız önerilir. Yine de atlamak istiyor musunuz?',
|
|
177
169
|
'navigationManager.skipStepLabel': 'Bu Adımı Atla',
|
|
178
170
|
};
|
package/src/Translation/index.ts
CHANGED
package/src/Trustchex.tsx
CHANGED
|
@@ -5,6 +5,7 @@ import { View, ActivityIndicator, StyleSheet } from 'react-native';
|
|
|
5
5
|
import { SafeAreaProvider } from 'react-native-safe-area-context';
|
|
6
6
|
import 'react-native-get-random-values';
|
|
7
7
|
import { ThemeProvider } from './Shared/Contexts/ThemeContext';
|
|
8
|
+
import { setDebugMode, setLogLevel, logWarn } from './Shared/Libs/debug.utils';
|
|
8
9
|
|
|
9
10
|
import IdentityDocumentEIDScanningScreen from './Screens/Dynamic/IdentityDocumentEIDScanningScreen';
|
|
10
11
|
import IdentityDocumentScanningScreen from './Screens/Dynamic/IdentityDocumentScanningScreen';
|
|
@@ -41,6 +42,8 @@ interface TrustchexProps {
|
|
|
41
42
|
onCompleted?: () => void;
|
|
42
43
|
onError?: (error: string) => void;
|
|
43
44
|
enableAnalytics?: boolean;
|
|
45
|
+
debug?: boolean;
|
|
46
|
+
logLevel?: 'trace' | 'debug' | 'info' | 'warn' | 'error' | 'silent';
|
|
44
47
|
}
|
|
45
48
|
|
|
46
49
|
const DEFAULT_BRANDING: TrustchexBranding = {
|
|
@@ -58,9 +61,9 @@ const Trustchex: React.FC<TrustchexProps> = ({
|
|
|
58
61
|
onCompleted,
|
|
59
62
|
onError,
|
|
60
63
|
enableAnalytics = true,
|
|
64
|
+
debug = false,
|
|
65
|
+
logLevel = 'trace',
|
|
61
66
|
}) => {
|
|
62
|
-
|
|
63
|
-
|
|
64
67
|
const [baseUrl, setBaseUrl] = useState<string | null>(null);
|
|
65
68
|
const [sessionId, setSessionId] = useState<string | null>(null);
|
|
66
69
|
const [locale, setLocale] = useState(
|
|
@@ -99,7 +102,16 @@ const Trustchex: React.FC<TrustchexProps> = ({
|
|
|
99
102
|
setBaseUrl,
|
|
100
103
|
setIsDemoSession,
|
|
101
104
|
}),
|
|
102
|
-
[
|
|
105
|
+
[
|
|
106
|
+
baseUrl,
|
|
107
|
+
locale,
|
|
108
|
+
branding,
|
|
109
|
+
sessionId,
|
|
110
|
+
propLocale,
|
|
111
|
+
onCompleted,
|
|
112
|
+
onError,
|
|
113
|
+
isDemoSession,
|
|
114
|
+
]
|
|
103
115
|
);
|
|
104
116
|
|
|
105
117
|
// Initialize analytics when SDK mounts with valid session
|
|
@@ -124,11 +136,16 @@ const Trustchex: React.FC<TrustchexProps> = ({
|
|
|
124
136
|
);
|
|
125
137
|
})
|
|
126
138
|
.catch((error) => {
|
|
127
|
-
|
|
139
|
+
logWarn('[Trustchex] Failed to initialize analytics:', error);
|
|
128
140
|
});
|
|
129
141
|
}
|
|
130
142
|
}, [enableAnalytics, baseUrl, sessionId, analyticsInitialized]);
|
|
131
143
|
|
|
144
|
+
useEffect(() => {
|
|
145
|
+
setDebugMode(debug);
|
|
146
|
+
setLogLevel(logLevel);
|
|
147
|
+
}, [debug, logLevel]);
|
|
148
|
+
|
|
132
149
|
useEffect(() => {
|
|
133
150
|
initializeTTS();
|
|
134
151
|
}, []);
|