@trustchex/react-native-sdk 1.214.0 → 1.245.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/lib/module/Screens/Dynamic/ContractAcceptanceScreen.js +2 -2
- package/lib/module/Screens/Dynamic/LivenessDetectionScreen.js +2 -2
- package/lib/module/Screens/Static/ResultScreen.js +2 -2
- package/lib/module/Screens/Static/VerificationSessionCheckScreen.js +148 -99
- package/lib/module/Shared/Components/EIDScanner.js +4 -4
- package/lib/module/Shared/Components/FaceCamera.js +4 -3
- package/lib/module/Shared/Components/IdentityDocumentCamera.js +4 -3
- package/lib/module/Shared/Components/QrCodeScannerCamera.js +2 -2
- package/lib/module/Shared/Components/StyledButton.js +30 -0
- package/lib/module/Shared/Constants/index.js +3 -0
- package/lib/module/Shared/Constants/validation.constants.js +24 -0
- package/lib/module/Shared/Libs/demo.utils.js +5 -3
- package/lib/module/Translation/Resources/en.js +50 -52
- package/lib/module/Translation/Resources/tr.js +48 -53
- package/lib/typescript/src/Screens/Static/VerificationSessionCheckScreen.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Components/FaceCamera.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Components/IdentityDocumentCamera.d.ts.map +1 -1
- package/lib/typescript/src/Shared/Components/StyledButton.d.ts +6 -0
- package/lib/typescript/src/Shared/Components/StyledButton.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Constants/index.d.ts +2 -0
- package/lib/typescript/src/Shared/Constants/index.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Constants/validation.constants.d.ts +20 -0
- package/lib/typescript/src/Shared/Constants/validation.constants.d.ts.map +1 -0
- package/lib/typescript/src/Shared/Libs/demo.utils.d.ts +2 -2
- package/lib/typescript/src/Shared/Libs/demo.utils.d.ts.map +1 -1
- package/lib/typescript/src/Translation/Resources/en.d.ts +1 -3
- package/lib/typescript/src/Translation/Resources/en.d.ts.map +1 -1
- package/lib/typescript/src/Translation/Resources/tr.d.ts +1 -6
- package/lib/typescript/src/Translation/Resources/tr.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/Screens/Dynamic/ContractAcceptanceScreen.tsx +3 -3
- package/src/Screens/Dynamic/LivenessDetectionScreen.tsx +3 -3
- package/src/Screens/Static/ResultScreen.tsx +3 -3
- package/src/Screens/Static/VerificationSessionCheckScreen.tsx +179 -123
- package/src/Shared/Components/EIDScanner.tsx +7 -7
- package/src/Shared/Components/FaceCamera.tsx +6 -5
- package/src/Shared/Components/IdentityDocumentCamera.tsx +6 -5
- package/src/Shared/Components/QrCodeScannerCamera.tsx +3 -3
- package/src/Shared/Components/StyledButton.tsx +35 -0
- package/src/Shared/Constants/index.ts +1 -0
- package/src/Shared/Constants/validation.constants.ts +24 -0
- package/src/Shared/Libs/demo.utils.ts +5 -4
- package/src/Translation/Resources/en.ts +51 -54
- package/src/Translation/Resources/tr.ts +50 -55
- package/lib/module/Shared/Components/OTPCodeInput.js +0 -74
- package/lib/typescript/src/Shared/Components/OTPCodeInput.d.ts +0 -10
- package/lib/typescript/src/Shared/Components/OTPCodeInput.d.ts.map +0 -1
- package/src/Shared/Components/OTPCodeInput.tsx +0 -93
|
@@ -2,35 +2,34 @@
|
|
|
2
2
|
|
|
3
3
|
export default {
|
|
4
4
|
'verificationSessionCheckScreen.mainText': 'To start the identity verification process',
|
|
5
|
-
'verificationSessionCheckScreen.
|
|
5
|
+
'verificationSessionCheckScreen.enterSessionCode': 'Enter Session Code',
|
|
6
6
|
'verificationSessionCheckScreen.codeText': 'Please enter the verification code you received.',
|
|
7
7
|
'verificationSessionCheckScreen.codeError': 'The code you entered is incorrect.',
|
|
8
8
|
'verificationSessionCheckScreen.sendCodeAgain': 'Send Code Again',
|
|
9
|
-
'verificationSessionCheckScreen.cannotSendVerificationCode': '
|
|
10
|
-
'verificationSessionCheckScreen.
|
|
11
|
-
'verificationSessionCheckScreen.noVerificationSessionFound': 'No valid verification session found. The session may have expired or already been completed.',
|
|
9
|
+
'verificationSessionCheckScreen.cannotSendVerificationCode': 'Unable to send verification code.',
|
|
10
|
+
'verificationSessionCheckScreen.noVerificationSessionFound': 'No valid verification session found. The session may have expired or has already been completed.',
|
|
12
11
|
'verificationSessionCheckScreen.scanQRCode': 'Scan QR Code',
|
|
13
12
|
'verificationSessionCheckScreen.or': 'or',
|
|
14
13
|
'general.warning': 'Warning',
|
|
15
14
|
'general.error': 'Error',
|
|
16
15
|
'general.yes': 'Yes',
|
|
17
16
|
'general.no': 'No',
|
|
18
|
-
'general.letsGo': "Let's
|
|
19
|
-
'general.noCameraPermissionGiven': 'Camera permission
|
|
20
|
-
'general.noMicrophonePermissionGiven': 'Microphone permission
|
|
21
|
-
'general.noCameraDetected': 'No camera hardware detected. Please use
|
|
17
|
+
'general.letsGo': "Let's Get Started",
|
|
18
|
+
'general.noCameraPermissionGiven': 'Camera permission has not been granted. If you accidentally denied it, please enable the permission in your app settings or reinstall the app.',
|
|
19
|
+
'general.noMicrophonePermissionGiven': 'Microphone permission has not been granted. If you accidentally denied it, please enable the permission in your app settings or reinstall the app.',
|
|
20
|
+
'general.noCameraDetected': 'No camera hardware detected. Please use a different device.',
|
|
22
21
|
'general.openSettings': 'Open Settings',
|
|
23
|
-
'general.countryNotAllowed': 'The country
|
|
24
|
-
'general.documentTypeNotAllowed': 'The scanned document type is not
|
|
25
|
-
'termsOfUseAndDataPrivacyScreen.footerText': 'Please read the text above and scroll to the end to
|
|
26
|
-
'termsOfUseAndDataPrivacyScreen.footerTextSRO': "
|
|
22
|
+
'general.countryNotAllowed': 'The country of the scanned document is not supported for identity verification.',
|
|
23
|
+
'general.documentTypeNotAllowed': 'The scanned document type is not supported for identity verification.',
|
|
24
|
+
'termsOfUseAndDataPrivacyScreen.footerText': 'Please read the text above and scroll to the end to accept.',
|
|
25
|
+
'termsOfUseAndDataPrivacyScreen.footerTextSRO': "You may now press 'Accept and Continue'.",
|
|
27
26
|
'termsOfUseAndDataPrivacyScreen.acceptAndContinue': 'Accept and Continue',
|
|
28
27
|
'resultScreen.submitting': 'Submitting verification data...',
|
|
29
28
|
'resultScreen.submissionFailed': 'An error occurred during the verification process. Please try again later.',
|
|
30
|
-
'resultScreen.submissionSuccessful': 'Verification data successfully submitted. Your
|
|
31
|
-
'resultScreen.thankYou': 'Thank
|
|
29
|
+
'resultScreen.submissionSuccessful': 'Verification data successfully submitted. Your information will be reviewed, and you will be notified of the result as soon as possible.',
|
|
30
|
+
'resultScreen.thankYou': 'Thank You!',
|
|
32
31
|
'resultScreen.demo': 'Demo',
|
|
33
|
-
'resultScreen.demoDescription': '
|
|
32
|
+
'resultScreen.demoDescription': 'Displays the data collected during the demo.',
|
|
34
33
|
'resultScreen.demoDeviceIdentifier': 'Device Identifier',
|
|
35
34
|
'resultScreen.demoScannedDocument': 'Scanned Document',
|
|
36
35
|
'resultScreen.demoScannedDocumentInformation': 'Information',
|
|
@@ -43,32 +42,32 @@ export default {
|
|
|
43
42
|
'resultScreen.demoLivenessDetection': 'Liveness Detection',
|
|
44
43
|
'resultScreen.demoVideo': 'Video',
|
|
45
44
|
'resultScreen.demoInstruction_smile': 'Smile',
|
|
46
|
-
'resultScreen.demoInstruction_look_straight_and_blink': 'Look straight and blink
|
|
47
|
-
'resultScreen.demoInstruction_turn_head_left': 'Turn your head to the left
|
|
48
|
-
'resultScreen.demoInstruction_turn_head_right': 'Turn your head to the right
|
|
49
|
-
'resultScreen.demoInstruction_look_up': 'Look up
|
|
45
|
+
'resultScreen.demoInstruction_look_straight_and_blink': 'Look straight and blink',
|
|
46
|
+
'resultScreen.demoInstruction_turn_head_left': 'Turn your head to the left',
|
|
47
|
+
'resultScreen.demoInstruction_turn_head_right': 'Turn your head to the right',
|
|
48
|
+
'resultScreen.demoInstruction_look_up': 'Look up',
|
|
50
49
|
'resultScreen.demoStartOver': 'Start Over',
|
|
51
|
-
'livenessDetectionScreen.guideHeader': 'Get
|
|
52
|
-
'livenessDetectionScreen.guideText': 'Before you
|
|
53
|
-
'livenessDetectionScreen.guidePoint1': 'Do not wear glasses, hats, or scarves.',
|
|
54
|
-
'livenessDetectionScreen.guidePoint2': '
|
|
55
|
-
'livenessDetectionScreen.guidePoint3': '
|
|
56
|
-
'livenessDetectionScreen.guidePoint4': '
|
|
57
|
-
'livenessDetectionScreen.placeFaceInsideCircle': 'Please
|
|
58
|
-
'livenessDetectionScreen.multipleFacesDetected': 'Please
|
|
59
|
-
'livenessDetectionScreen.start': 'Keep your face inside the circle
|
|
60
|
-
'livenessDetectionScreen.smile': 'Smile
|
|
61
|
-
'livenessDetectionScreen.lookStraightAndBlink': 'Look at the camera and blink
|
|
62
|
-
'livenessDetectionScreen.turnHeadLeft': 'Turn your head to the left
|
|
63
|
-
'livenessDetectionScreen.turnHeadRight': 'Turn your head to the right
|
|
64
|
-
'livenessDetectionScreen.lookUp': 'Look up
|
|
65
|
-
'livenessDetectionScreen.sayNumber': 'Say the number: {number}
|
|
66
|
-
'livenessDetectionScreen.finish': 'Process completed
|
|
67
|
-
'livenessDetectionScreen.brightnessLow': 'Please
|
|
68
|
-
'livenessDetectionScreen.faceTooBig': 'You are too close
|
|
50
|
+
'livenessDetectionScreen.guideHeader': 'Get Ready for Face Scanning',
|
|
51
|
+
'livenessDetectionScreen.guideText': 'Before you begin, please note the following:',
|
|
52
|
+
'livenessDetectionScreen.guidePoint1': 'Do not wear glasses, hats, or scarves. Please ensure you are appropriately dressed',
|
|
53
|
+
'livenessDetectionScreen.guidePoint2': 'Ensure your face is well-lit',
|
|
54
|
+
'livenessDetectionScreen.guidePoint3': 'Minimize background noise',
|
|
55
|
+
'livenessDetectionScreen.guidePoint4': 'Ensure you are the only person in front of the camera',
|
|
56
|
+
'livenessDetectionScreen.placeFaceInsideCircle': 'Please position your face inside the circle.',
|
|
57
|
+
'livenessDetectionScreen.multipleFacesDetected': 'Multiple faces detected. Please ensure you are the only person in front of the camera.',
|
|
58
|
+
'livenessDetectionScreen.start': 'Keep your face inside the circle',
|
|
59
|
+
'livenessDetectionScreen.smile': 'Smile',
|
|
60
|
+
'livenessDetectionScreen.lookStraightAndBlink': 'Look at the camera and blink',
|
|
61
|
+
'livenessDetectionScreen.turnHeadLeft': 'Turn your head to the left',
|
|
62
|
+
'livenessDetectionScreen.turnHeadRight': 'Turn your head to the right',
|
|
63
|
+
'livenessDetectionScreen.lookUp': 'Look up',
|
|
64
|
+
'livenessDetectionScreen.sayNumber': 'Say the number: {number}',
|
|
65
|
+
'livenessDetectionScreen.finish': 'Process completed',
|
|
66
|
+
'livenessDetectionScreen.brightnessLow': 'Please ensure your face is well-lit.',
|
|
67
|
+
'livenessDetectionScreen.faceTooBig': 'You are too close. Please move back slightly.',
|
|
69
68
|
'livenessDetectionScreen.followInstructions': 'Keep your device steady and follow the instructions.',
|
|
70
|
-
'eidScannerScreen.guideHeader': 'Get
|
|
71
|
-
'eidScannerScreen.guideText': 'After starting the scan,
|
|
69
|
+
'eidScannerScreen.guideHeader': 'Get Ready for NFC Scanning',
|
|
70
|
+
'eidScannerScreen.guideText': 'After starting the scan, place your identity document near the NFC reader on the back of your device and wait until the reading is complete.',
|
|
72
71
|
'eidScannerScreen.invalidMRZFields': 'Identity information is missing or incorrect. Please try again.',
|
|
73
72
|
'eidScannerScreen.imageCannotBeShown': 'Photo found but cannot be displayed.',
|
|
74
73
|
'eidScannerScreen.faceImageNotFound': 'Photo not found.',
|
|
@@ -82,28 +81,27 @@ export default {
|
|
|
82
81
|
'eidScannerScreen.gender': 'Gender',
|
|
83
82
|
'eidScannerScreen.expirationDate': 'Expiration Date',
|
|
84
83
|
'eidScannerScreen.mrzText': 'MRZ Text',
|
|
85
|
-
'eidScannerScreen.nfcNotSupported': 'Your device does not support NFC. Please use
|
|
84
|
+
'eidScannerScreen.nfcNotSupported': 'Your device does not support NFC. Please use a different device.',
|
|
86
85
|
'eidScannerScreen.nfcNotEnabled': 'NFC is not enabled. Please enable it and try again.',
|
|
87
86
|
'eidScannerScreen.enableNFC': 'Enable NFC',
|
|
88
87
|
'eidScannerScreen.startScanning': 'Start Scanning',
|
|
89
|
-
'eidScannerScreen.placeIDCardOnNFC': 'Please place your identity document
|
|
90
|
-
'eidScannerScreen.placePassportOnNFC': 'Please place your identity document
|
|
91
|
-
'eidScannerScreen.placeDocumentOnNFC': 'Please place your identity document
|
|
88
|
+
'eidScannerScreen.placeIDCardOnNFC': 'Please place your identity document near the NFC reader on the back of your device and wait.',
|
|
89
|
+
'eidScannerScreen.placePassportOnNFC': 'Please place your identity document near the NFC reader on the back of your device and wait.',
|
|
90
|
+
'eidScannerScreen.placeDocumentOnNFC': 'Please place your identity document near the NFC reader on the back of your device and wait.',
|
|
92
91
|
'eidScannerScreen.readingDocument': 'Please hold steady and wait until the reading process is complete.',
|
|
93
|
-
'eidScannerScreen.checkYourInformation': "Please
|
|
92
|
+
'eidScannerScreen.checkYourInformation': "Please review your information. To continue, press 'Approve and Continue'.",
|
|
94
93
|
'eidScannerScreen.approveAndContinue': 'Approve and Continue',
|
|
95
|
-
'identityDocumentCamera.guideHeader': 'Is
|
|
96
|
-
'identityDocumentCamera.guideText': 'Before you
|
|
97
|
-
'identityDocumentCamera.guidePoint1': 'The document must be clear and legible
|
|
98
|
-
'identityDocumentCamera.guidePoint2': '
|
|
99
|
-
'identityDocumentCamera.guidePoint3': '
|
|
94
|
+
'identityDocumentCamera.guideHeader': 'Is Your Identity Document Ready?',
|
|
95
|
+
'identityDocumentCamera.guideText': 'Before you begin, please note the following:',
|
|
96
|
+
'identityDocumentCamera.guidePoint1': 'The document must be clear and legible',
|
|
97
|
+
'identityDocumentCamera.guidePoint2': 'Ensure your environment is well-lit',
|
|
98
|
+
'identityDocumentCamera.guidePoint3': 'Avoid reflections or glare on the document',
|
|
100
99
|
'identityDocumentCamera.lowBrightness': 'Please increase the ambient light or move to a better-lit environment.',
|
|
101
100
|
'identityDocumentCamera.alignPhotoSide': 'Please align the photo side of your identity document with the camera.',
|
|
102
|
-
'identityDocumentCamera.alignHologram': 'Please show the hologram on your
|
|
101
|
+
'identityDocumentCamera.alignHologram': 'Please show the hologram on your document to the camera from different angles.',
|
|
103
102
|
'identityDocumentCamera.alignIDFrontSide': 'Align the front side of your identity document with the camera.',
|
|
104
103
|
'identityDocumentCamera.alignIDBackSide': 'Align the back side of your identity document with the camera.',
|
|
105
104
|
'identityDocumentCamera.scanCompleted': 'Scan completed successfully.',
|
|
106
105
|
'navigationManager.skipStepWarning': 'It is recommended to complete this step. Are you sure you want to skip it?',
|
|
107
|
-
'navigationManager.skipStepLabel': 'Skip
|
|
108
|
-
'qrCodeScanningScreen.title': 'Scan QR Code'
|
|
106
|
+
'navigationManager.skipStepLabel': 'Skip This Step'
|
|
109
107
|
};
|
|
@@ -2,12 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
export default {
|
|
4
4
|
'verificationSessionCheckScreen.mainText': 'Kimlik doğrulama sürecini başlatmak için',
|
|
5
|
-
'verificationSessionCheckScreen.
|
|
6
|
-
'verificationSessionCheckScreen.codeText': 'Lütfen
|
|
5
|
+
'verificationSessionCheckScreen.enterSessionCode': 'Oturum Kodu Gir',
|
|
6
|
+
'verificationSessionCheckScreen.codeText': 'Lütfen aldığınız doğrulama kodunu giriniz.',
|
|
7
7
|
'verificationSessionCheckScreen.codeError': 'Girdiğiniz kod hatalı.',
|
|
8
8
|
'verificationSessionCheckScreen.sendCodeAgain': 'Kodu Tekrar Gönder',
|
|
9
9
|
'verificationSessionCheckScreen.cannotSendVerificationCode': 'Doğrulama kodu gönderilemedi.',
|
|
10
|
-
'verificationSessionCheckScreen.continue': 'Devam Et',
|
|
11
10
|
'verificationSessionCheckScreen.noVerificationSessionFound': 'Geçerli bir doğrulama oturumu bulunamadı. Oturumun süresi dolmuş veya zaten tamamlanmış olabilir.',
|
|
12
11
|
'verificationSessionCheckScreen.scanQRCode': 'QR Kodu Tara',
|
|
13
12
|
'verificationSessionCheckScreen.or': 'veya',
|
|
@@ -15,63 +14,60 @@ export default {
|
|
|
15
14
|
'general.error': 'Hata',
|
|
16
15
|
'general.yes': 'Evet',
|
|
17
16
|
'general.no': 'Hayır',
|
|
18
|
-
'general.letsGo': 'Hadi
|
|
19
|
-
'general.noCameraPermissionGiven': 'Kamera izni
|
|
20
|
-
'general.noMicrophonePermissionGiven': 'Mikrofon izni
|
|
21
|
-
'general.noCameraDetected': 'Kamera donanımı algılanamadı. Lütfen
|
|
17
|
+
'general.letsGo': 'Hadi Başlayalım',
|
|
18
|
+
'general.noCameraPermissionGiven': 'Kamera izni verilmemiş. Yanlışlıkla reddettiyseniz, lütfen uygulama ayarlarından izni etkinleştirin veya uygulamayı yeniden yükleyin.',
|
|
19
|
+
'general.noMicrophonePermissionGiven': 'Mikrofon izni verilmemiş. Yanlışlıkla reddettiyseniz, lütfen uygulama ayarlarından izni etkinleştirin veya uygulamayı yeniden yükleyin.',
|
|
20
|
+
'general.noCameraDetected': 'Kamera donanımı algılanamadı. Lütfen farklı bir cihaz kullanın.',
|
|
22
21
|
'general.openSettings': 'Ayarları Aç',
|
|
23
|
-
'general.countryNotAllowed': 'Taranan belgenin ait olduğu ülke, kimlik doğrulama için
|
|
24
|
-
'general.documentTypeNotAllowed': 'Taranan belge türü, kimlik doğrulama için
|
|
25
|
-
'termsOfUseAndDataPrivacyScreen.footerText': 'Lütfen yukarıdaki metni okuyun ve kabul
|
|
26
|
-
'termsOfUseAndDataPrivacyScreen.footerTextSRO': "Artık 'Kabul Et ve Devam Et' düğmesine basabilirsiniz",
|
|
22
|
+
'general.countryNotAllowed': 'Taranan belgenin ait olduğu ülke, kimlik doğrulama için desteklenmiyor.',
|
|
23
|
+
'general.documentTypeNotAllowed': 'Taranan belge türü, kimlik doğrulama için desteklenmiyor.',
|
|
24
|
+
'termsOfUseAndDataPrivacyScreen.footerText': 'Lütfen yukarıdaki metni okuyun ve kabul etmek için sonuna kadar kaydırın.',
|
|
25
|
+
'termsOfUseAndDataPrivacyScreen.footerTextSRO': "Artık 'Kabul Et ve Devam Et' düğmesine basabilirsiniz.",
|
|
27
26
|
'termsOfUseAndDataPrivacyScreen.acceptAndContinue': 'Kabul Et ve Devam Et',
|
|
28
|
-
'resultScreen.submitting': '
|
|
29
|
-
'resultScreen.submissionFailed': '
|
|
30
|
-
'resultScreen.submissionSuccessful': '
|
|
27
|
+
'resultScreen.submitting': 'Doğrulama verileri gönderiliyor...',
|
|
28
|
+
'resultScreen.submissionFailed': 'Doğrulama işlemi sırasında bir hata oluştu. Lütfen daha sonra tekrar deneyin.',
|
|
29
|
+
'resultScreen.submissionSuccessful': 'Doğrulama verileri başarıyla gönderildi. Bilgileriniz incelenecek ve sonuç en kısa sürede size bildirilecektir.',
|
|
31
30
|
'resultScreen.thankYou': 'Teşekkürler!',
|
|
32
|
-
'resultScreen.demo_id_scan': 'Kimlik Tarama Demo',
|
|
33
|
-
'resultScreen.demo_eid_scan': 'Elektronik Kimlik (NFC) Tarama Demo',
|
|
34
|
-
'resultScreen.demo_id_and_eid_scan': 'Kimlik ve Elektronik Kimlik Tarama Demo',
|
|
35
31
|
'resultScreen.demo': 'Demo',
|
|
36
32
|
'resultScreen.demoDescription': 'Demo sırasında toplanan verileri gösterir.',
|
|
37
33
|
'resultScreen.demoDeviceIdentifier': 'Cihaz Tanımlayıcısı',
|
|
38
34
|
'resultScreen.demoScannedDocument': 'Taranan Belge',
|
|
39
35
|
'resultScreen.demoScannedDocumentInformation': 'Bilgiler',
|
|
40
|
-
'resultScreen.demoImages': '
|
|
41
|
-
'resultScreen.demoImageFront': 'Ön',
|
|
42
|
-
'resultScreen.demoImageBack': 'Arka',
|
|
36
|
+
'resultScreen.demoImages': 'Görüntüler',
|
|
37
|
+
'resultScreen.demoImageFront': 'Ön Yüz',
|
|
38
|
+
'resultScreen.demoImageBack': 'Arka Yüz',
|
|
43
39
|
'resultScreen.demoImageFace': 'Yüz',
|
|
44
40
|
'resultScreen.demoImageSecondaryFace': 'İkincil Yüz',
|
|
45
41
|
'resultScreen.demoImageHologram': 'Hologram',
|
|
46
42
|
'resultScreen.demoLivenessDetection': 'Canlılık Tespiti',
|
|
47
43
|
'resultScreen.demoVideo': 'Video',
|
|
48
|
-
'resultScreen.demoInstruction_smile': '
|
|
49
|
-
'resultScreen.demoInstruction_look_straight_and_blink': 'Düz
|
|
50
|
-
'resultScreen.demoInstruction_turn_head_left': '
|
|
51
|
-
'resultScreen.demoInstruction_turn_head_right': '
|
|
52
|
-
'resultScreen.demoInstruction_look_up': 'Yukarı
|
|
44
|
+
'resultScreen.demoInstruction_smile': 'Gülümseyin',
|
|
45
|
+
'resultScreen.demoInstruction_look_straight_and_blink': 'Düz bakın ve göz kırpın',
|
|
46
|
+
'resultScreen.demoInstruction_turn_head_left': 'Başınızı sola çevirin',
|
|
47
|
+
'resultScreen.demoInstruction_turn_head_right': 'Başınızı sağa çevirin',
|
|
48
|
+
'resultScreen.demoInstruction_look_up': 'Yukarı bakın',
|
|
53
49
|
'resultScreen.demoStartOver': 'Baştan Başla',
|
|
54
|
-
'livenessDetectionScreen.guideHeader': 'Yüz
|
|
55
|
-
'livenessDetectionScreen.guideText': '
|
|
56
|
-
'livenessDetectionScreen.guidePoint1': 'Gözlük, şapka veya eşarp
|
|
57
|
-
'livenessDetectionScreen.guidePoint2': '
|
|
58
|
-
'livenessDetectionScreen.guidePoint3': 'Arka
|
|
59
|
-
'livenessDetectionScreen.guidePoint4': 'Kameranın önünde
|
|
60
|
-
'livenessDetectionScreen.placeFaceInsideCircle': 'Lütfen yüzünüzü daire içine
|
|
61
|
-
'livenessDetectionScreen.multipleFacesDetected': 'Lütfen kameranın önünde yalnızca
|
|
50
|
+
'livenessDetectionScreen.guideHeader': 'Yüz Taraması İçin Hazırlanın',
|
|
51
|
+
'livenessDetectionScreen.guideText': 'Başlamadan önce lütfen aşağıdaki hususlara dikkat edin:',
|
|
52
|
+
'livenessDetectionScreen.guidePoint1': 'Gözlük, şapka veya eşarp takmayın. Lütfen uygun şekilde giyindiğinizden emin olun',
|
|
53
|
+
'livenessDetectionScreen.guidePoint2': 'Yüzünüzün iyi aydınlatıldığından emin olun',
|
|
54
|
+
'livenessDetectionScreen.guidePoint3': 'Arka plan gürültüsünü minimize edin',
|
|
55
|
+
'livenessDetectionScreen.guidePoint4': 'Kameranın önünde yalnızca sizin bulunduğunuzdan emin olun',
|
|
56
|
+
'livenessDetectionScreen.placeFaceInsideCircle': 'Lütfen yüzünüzü daire içine konumlandırın.',
|
|
57
|
+
'livenessDetectionScreen.multipleFacesDetected': 'Birden fazla yüz algılandı. Lütfen kameranın önünde yalnızca sizin bulunduğunuzdan emin olun.',
|
|
62
58
|
'livenessDetectionScreen.start': 'Yüzünüzü daire içinde tutun',
|
|
63
59
|
'livenessDetectionScreen.smile': 'Gülümseyin',
|
|
64
|
-
'livenessDetectionScreen.lookStraightAndBlink': 'Kameraya
|
|
60
|
+
'livenessDetectionScreen.lookStraightAndBlink': 'Kameraya bakın ve göz kırpın',
|
|
65
61
|
'livenessDetectionScreen.turnHeadLeft': 'Başınızı sola çevirin',
|
|
66
62
|
'livenessDetectionScreen.turnHeadRight': 'Başınızı sağa çevirin',
|
|
67
63
|
'livenessDetectionScreen.lookUp': 'Yukarı bakın',
|
|
68
64
|
'livenessDetectionScreen.sayNumber': 'Rakamı söyleyin: {number}',
|
|
69
65
|
'livenessDetectionScreen.finish': 'İşlem tamamlandı',
|
|
70
|
-
'livenessDetectionScreen.brightnessLow': 'Lütfen yüzünüzün iyi aydınlatıldığından emin olun',
|
|
71
|
-
'livenessDetectionScreen.faceTooBig': 'Çok yakınsınız
|
|
72
|
-
'livenessDetectionScreen.followInstructions': 'Cihazınızı sabit tutun ve talimatları uygulayın',
|
|
73
|
-
'eidScannerScreen.guideHeader': 'NFC
|
|
74
|
-
'eidScannerScreen.guideText': 'Taramayı başlattıktan sonra, kimlik belgenizi
|
|
66
|
+
'livenessDetectionScreen.brightnessLow': 'Lütfen yüzünüzün iyi aydınlatıldığından emin olun.',
|
|
67
|
+
'livenessDetectionScreen.faceTooBig': 'Çok yakınsınız. Lütfen biraz geriye çekilin.',
|
|
68
|
+
'livenessDetectionScreen.followInstructions': 'Cihazınızı sabit tutun ve talimatları uygulayın.',
|
|
69
|
+
'eidScannerScreen.guideHeader': 'NFC Taraması İçin Hazırlanın',
|
|
70
|
+
'eidScannerScreen.guideText': 'Taramayı başlattıktan sonra, kimlik belgenizi cihazınızın arkasındaki NFC okuyucuya yaklaştırın ve okuma tamamlanana kadar bekleyin.',
|
|
75
71
|
'eidScannerScreen.invalidMRZFields': 'Kimlik bilgileri eksik veya hatalı. Lütfen tekrar deneyin.',
|
|
76
72
|
'eidScannerScreen.imageCannotBeShown': 'Fotoğraf bulundu ancak gösterilemiyor.',
|
|
77
73
|
'eidScannerScreen.faceImageNotFound': 'Fotoğraf bulunamadı.',
|
|
@@ -85,28 +81,27 @@ export default {
|
|
|
85
81
|
'eidScannerScreen.gender': 'Cinsiyet',
|
|
86
82
|
'eidScannerScreen.expirationDate': 'Geçerlilik Tarihi',
|
|
87
83
|
'eidScannerScreen.mrzText': 'MRZ Metni',
|
|
88
|
-
'eidScannerScreen.nfcNotSupported': 'Cihazınız NFC desteklemiyor. Lütfen
|
|
84
|
+
'eidScannerScreen.nfcNotSupported': 'Cihazınız NFC desteklemiyor. Lütfen farklı bir cihaz kullanın.',
|
|
89
85
|
'eidScannerScreen.nfcNotEnabled': 'NFC etkin değil. Lütfen etkinleştirin ve tekrar deneyin.',
|
|
90
86
|
'eidScannerScreen.enableNFC': "NFC'yi Etkinleştir",
|
|
91
87
|
'eidScannerScreen.startScanning': 'Taramaya Başla',
|
|
92
|
-
'eidScannerScreen.placeIDCardOnNFC': 'Lütfen kimlik belgenizi cihazınızın arka kısmındaki NFC okuyucuya
|
|
93
|
-
'eidScannerScreen.placePassportOnNFC': 'Lütfen kimlik belgenizi cihazınızın arka kısmındaki NFC okuyucuya
|
|
94
|
-
'eidScannerScreen.placeDocumentOnNFC': 'Lütfen kimlik belgenizi cihazınızın arka kısmındaki NFC okuyucuya
|
|
88
|
+
'eidScannerScreen.placeIDCardOnNFC': 'Lütfen kimlik belgenizi cihazınızın arka kısmındaki NFC okuyucuya yaklaştırın ve bekleyin.',
|
|
89
|
+
'eidScannerScreen.placePassportOnNFC': 'Lütfen kimlik belgenizi cihazınızın arka kısmındaki NFC okuyucuya yaklaştırın ve bekleyin.',
|
|
90
|
+
'eidScannerScreen.placeDocumentOnNFC': 'Lütfen kimlik belgenizi cihazınızın arka kısmındaki NFC okuyucuya yaklaştırın ve bekleyin.',
|
|
95
91
|
'eidScannerScreen.readingDocument': 'Lütfen sabit tutun ve okuma işlemi tamamlanana kadar bekleyin.',
|
|
96
|
-
'eidScannerScreen.checkYourInformation': "
|
|
92
|
+
'eidScannerScreen.checkYourInformation': "Lütfen bilgilerinizi kontrol edin. Devam etmek için 'Onayla ve Devam Et' düğmesine basın.",
|
|
97
93
|
'eidScannerScreen.approveAndContinue': 'Onayla ve Devam Et',
|
|
98
|
-
'identityDocumentCamera.guideHeader': 'Kimlik
|
|
99
|
-
'identityDocumentCamera.guideText': '
|
|
94
|
+
'identityDocumentCamera.guideHeader': 'Kimlik Belgeniz Hazır Mı?',
|
|
95
|
+
'identityDocumentCamera.guideText': 'Başlamadan önce lütfen aşağıdaki hususlara dikkat edin:',
|
|
100
96
|
'identityDocumentCamera.guidePoint1': 'Belge açık ve okunaklı olmalı',
|
|
101
|
-
'identityDocumentCamera.guidePoint2': '
|
|
102
|
-
'identityDocumentCamera.guidePoint3': '
|
|
97
|
+
'identityDocumentCamera.guidePoint2': 'Ortamınızın iyi aydınlatıldığından emin olun',
|
|
98
|
+
'identityDocumentCamera.guidePoint3': 'Belge üzerinde yansıma veya parlama olmamasına dikkat edin',
|
|
103
99
|
'identityDocumentCamera.lowBrightness': 'Lütfen ortam ışığını artırın veya daha iyi aydınlatılmış bir ortama geçin.',
|
|
104
100
|
'identityDocumentCamera.alignPhotoSide': 'Lütfen kimlik belgenizin fotoğraflı yüzünü kameraya hizalayın.',
|
|
105
|
-
'identityDocumentCamera.alignHologram': 'Lütfen
|
|
106
|
-
'identityDocumentCamera.alignIDFrontSide': 'Kimlik belgenizin
|
|
101
|
+
'identityDocumentCamera.alignHologram': 'Lütfen belgenizdeki hologramı farklı açılardan kameraya gösterin.',
|
|
102
|
+
'identityDocumentCamera.alignIDFrontSide': 'Kimlik belgenizin ön yüzünü kameraya hizalayın.',
|
|
107
103
|
'identityDocumentCamera.alignIDBackSide': 'Kimlik belgenizin arka yüzünü kameraya hizalayın.',
|
|
108
104
|
'identityDocumentCamera.scanCompleted': 'Tarama başarıyla tamamlandı.',
|
|
109
|
-
'navigationManager.skipStepWarning': 'Bu adımı tamamlamanız
|
|
110
|
-
'navigationManager.skipStepLabel': 'Bu
|
|
111
|
-
'qrCodeScanningScreen.title': 'QR Kodu Tara'
|
|
105
|
+
'navigationManager.skipStepWarning': 'Bu adımı tamamlamanız önerilir. Adımı atlamak istediğinize emin misiniz?',
|
|
106
|
+
'navigationManager.skipStepLabel': 'Bu Adımı Atla'
|
|
112
107
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VerificationSessionCheckScreen.d.ts","sourceRoot":"","sources":["../../../../../src/Screens/Static/VerificationSessionCheckScreen.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"VerificationSessionCheckScreen.d.ts","sourceRoot":"","sources":["../../../../../src/Screens/Static/VerificationSessionCheckScreen.tsx"],"names":[],"mappings":"AAyCA,QAAA,MAAM,8BAA8B,+CAgZnC,CAAC;AA0IF,eAAe,8BAA8B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FaceCamera.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Components/FaceCamera.tsx"],"names":[],"mappings":"AAWA,OAAO,EAGL,MAAM,EAKP,MAAM,4BAA4B,CAAC;AAGpC,OAAO,EACL,KAAK,IAAI,EAEV,MAAM,qCAAqC,CAAC;
|
|
1
|
+
{"version":3,"file":"FaceCamera.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Components/FaceCamera.tsx"],"names":[],"mappings":"AAWA,OAAO,EAGL,MAAM,EAKP,MAAM,4BAA4B,CAAC;AAGpC,OAAO,EACL,KAAK,IAAI,EAEV,MAAM,qCAAqC,CAAC;AAQ7C,MAAM,MAAM,eAAe,GAAG;IAC5B,eAAe,EAAE,CACf,KAAK,EAAE,IAAI,EAAE,EACb,KAAK,EAAE,MAAM,EACb,aAAa,EAAE,OAAO,KACnB,IAAI,CAAC;IACV,mBAAmB,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;CAC/C,CAAC;AAQF,QAAA,MAAM,UAAU,GAAI,2CAGjB,eAAe,4CA2LjB,CAAC;AA6BF,eAAe,UAAU,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IdentityDocumentCamera.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Components/IdentityDocumentCamera.tsx"],"names":[],"mappings":"AA0BA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"IdentityDocumentCamera.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Components/IdentityDocumentCamera.tsx"],"names":[],"mappings":"AA0BA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,KAAK,CAAC;AA4BxC,MAAM,MAAM,mBAAmB,GAAG;IAChC,YAAY,EAAE,UAAU,GAAG,SAAS,GAAG,UAAU,GAAG,SAAS,CAAC;IAC9D,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,YAAY,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG;IACtB,MAAM,EAAE,UAAU,EAAE,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,KAAK,UAAU,GAAG;IAChB,UAAU,EAAE,SAAS,CAAC;IACtB,iBAAiB,EAAE,gBAAgB,CAAC;IACpC,KAAK,EAAE,SAAS,CAAC;IACjB,cAAc,EAAE,MAAM,EAAE,GAAG,EAAE,CAAC;IAC9B,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,KAAK,gBAAgB,GAAG,CAAC;IAAE,CAAC,EAAE,MAAM,CAAC;IAAC,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC,CAAC;AAEnD,KAAK,SAAS,GAAG;IACf,eAAe,EAAE,MAAM,CAAC;IACxB,eAAe,EAAE,MAAM,CAAC;IACxB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;CACX,CAAC;AAEF,KAAK,SAAS,GAAG;IACf,gBAAgB,EAAE,gBAAgB;IAClC,QAAQ,EAAE,YAAY;IACtB,SAAS,EAAE,SAAS;IACpB,aAAa,EAAE,MAAM,EAAE,GAAG,EAAE;IAC5B,QAAQ,EAAE,MAAM;CACjB,CAAC;AAEF,KAAK,YAAY,GAAG;IAClB,mBAAmB,EAAE,gBAAgB;IACrC,YAAY,EAAE,SAAS;IACvB,WAAW,EAAE,MAAM;CACpB,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACzB,GAAG,EAAE,MAAM,CAAC;IACZ,WAAW,CAAC,EACR,gBAAgB,GAChB,UAAU,GACV,oBAAoB,GACpB,eAAe,CAAC;CACrB,CAAC;AAEF,MAAM,WAAW,2BAA2B;IAC1C,WAAW,EAAE,OAAO,CAAC;IACrB,yBAAyB,EAAE,CAAC,WAAW,EAAE,mBAAmB,KAAK,IAAI,CAAC;IACtE,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B;AAaD,QAAA,MAAM,sBAAsB,GAAI,8DAI7B,2BAA2B,4CAqkC7B,CAAC;AAuJF,eAAe,sBAAsB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StyledButton.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Components/StyledButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAEtD,KAAK,iBAAiB,GAAG,WAAW,CAAC;AAErC,QAAA,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAY7C,CAAC;AAeF,eAAe,YAAY,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Constants/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Validation constants used throughout the SDK.
|
|
3
|
+
* These constants ensure consistency between frontend and backend validation.
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* Character set for session codes.
|
|
7
|
+
* Excludes ambiguous characters (0, 1, I, O) to prevent confusion.
|
|
8
|
+
*/
|
|
9
|
+
export declare const SESSION_CODE_CHARSET = "ABCDEFGHJKLMNPQRSTUVWXYZ23456789";
|
|
10
|
+
/**
|
|
11
|
+
* Regular expression pattern for validating session code characters.
|
|
12
|
+
* Matches only characters from SESSION_CODE_CHARSET.
|
|
13
|
+
*/
|
|
14
|
+
export declare const SESSION_CODE_CHARSET_PATTERN: RegExp;
|
|
15
|
+
/**
|
|
16
|
+
* Regular expression for validating complete session codes.
|
|
17
|
+
* Session codes must be exactly 8 characters from SESSION_CODE_CHARSET.
|
|
18
|
+
*/
|
|
19
|
+
export declare const SESSION_CODE_VALIDATION_PATTERN: RegExp;
|
|
20
|
+
//# sourceMappingURL=validation.constants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"validation.constants.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Constants/validation.constants.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;GAGG;AACH,eAAO,MAAM,oBAAoB,qCAAqC,CAAC;AAEvE;;;GAGG;AACH,eAAO,MAAM,4BAA4B,QACD,CAAC;AAEzC;;;GAGG;AACH,eAAO,MAAM,+BAA+B,QACD,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
type SimulatedDataType = '
|
|
2
|
-
declare const isDemoSession: (
|
|
1
|
+
type SimulatedDataType = 'GET_SESSION_BY_CODE' | 'SEND_VERIFICATION_CODE' | 'GET_SESSION' | 'GET_VERIFIED_SESSION';
|
|
2
|
+
declare const isDemoSession: (sessionCode: string) => boolean;
|
|
3
3
|
declare const getSimulatedDemoData: <TResponse, TBody>(dataType: SimulatedDataType, body?: TBody) => TResponse;
|
|
4
4
|
export { getSimulatedDemoData, isDemoSession };
|
|
5
5
|
//# sourceMappingURL=demo.utils.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"demo.utils.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Libs/demo.utils.ts"],"names":[],"mappings":"AAEA,KAAK,iBAAiB,GAClB,
|
|
1
|
+
{"version":3,"file":"demo.utils.d.ts","sourceRoot":"","sources":["../../../../../src/Shared/Libs/demo.utils.ts"],"names":[],"mappings":"AAEA,KAAK,iBAAiB,GAClB,qBAAqB,GACrB,wBAAwB,GACxB,aAAa,GACb,sBAAsB,CAAC;AA8C3B,QAAA,MAAM,aAAa,GAAI,aAAa,MAAM,YACA,CAAC;AAE3C,QAAA,MAAM,oBAAoB,GAAI,SAAS,EAAE,KAAK,EAC5C,UAAU,iBAAiB,EAC3B,OAAO,KAAK,cAuBb,CAAC;AAEF,OAAO,EAAE,oBAAoB,EAAE,aAAa,EAAE,CAAC"}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
'verificationSessionCheckScreen.mainText': string;
|
|
3
|
-
'verificationSessionCheckScreen.
|
|
3
|
+
'verificationSessionCheckScreen.enterSessionCode': string;
|
|
4
4
|
'verificationSessionCheckScreen.codeText': string;
|
|
5
5
|
'verificationSessionCheckScreen.codeError': string;
|
|
6
6
|
'verificationSessionCheckScreen.sendCodeAgain': string;
|
|
7
7
|
'verificationSessionCheckScreen.cannotSendVerificationCode': string;
|
|
8
|
-
'verificationSessionCheckScreen.continue': string;
|
|
9
8
|
'verificationSessionCheckScreen.noVerificationSessionFound': string;
|
|
10
9
|
'verificationSessionCheckScreen.scanQRCode': string;
|
|
11
10
|
'verificationSessionCheckScreen.or': string;
|
|
@@ -103,7 +102,6 @@ declare const _default: {
|
|
|
103
102
|
'identityDocumentCamera.scanCompleted': string;
|
|
104
103
|
'navigationManager.skipStepWarning': string;
|
|
105
104
|
'navigationManager.skipStepLabel': string;
|
|
106
|
-
'qrCodeScanningScreen.title': string;
|
|
107
105
|
};
|
|
108
106
|
export default _default;
|
|
109
107
|
//# sourceMappingURL=en.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../../../src/Translation/Resources/en.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../../../src/Translation/Resources/en.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAmJE"}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
'verificationSessionCheckScreen.mainText': string;
|
|
3
|
-
'verificationSessionCheckScreen.
|
|
3
|
+
'verificationSessionCheckScreen.enterSessionCode': string;
|
|
4
4
|
'verificationSessionCheckScreen.codeText': string;
|
|
5
5
|
'verificationSessionCheckScreen.codeError': string;
|
|
6
6
|
'verificationSessionCheckScreen.sendCodeAgain': string;
|
|
7
7
|
'verificationSessionCheckScreen.cannotSendVerificationCode': string;
|
|
8
|
-
'verificationSessionCheckScreen.continue': string;
|
|
9
8
|
'verificationSessionCheckScreen.noVerificationSessionFound': string;
|
|
10
9
|
'verificationSessionCheckScreen.scanQRCode': string;
|
|
11
10
|
'verificationSessionCheckScreen.or': string;
|
|
@@ -27,9 +26,6 @@ declare const _default: {
|
|
|
27
26
|
'resultScreen.submissionFailed': string;
|
|
28
27
|
'resultScreen.submissionSuccessful': string;
|
|
29
28
|
'resultScreen.thankYou': string;
|
|
30
|
-
'resultScreen.demo_id_scan': string;
|
|
31
|
-
'resultScreen.demo_eid_scan': string;
|
|
32
|
-
'resultScreen.demo_id_and_eid_scan': string;
|
|
33
29
|
'resultScreen.demo': string;
|
|
34
30
|
'resultScreen.demoDescription': string;
|
|
35
31
|
'resultScreen.demoDeviceIdentifier': string;
|
|
@@ -106,7 +102,6 @@ declare const _default: {
|
|
|
106
102
|
'identityDocumentCamera.scanCompleted': string;
|
|
107
103
|
'navigationManager.skipStepWarning': string;
|
|
108
104
|
'navigationManager.skipStepLabel': string;
|
|
109
|
-
'qrCodeScanningScreen.title': string;
|
|
110
105
|
};
|
|
111
106
|
export default _default;
|
|
112
107
|
//# sourceMappingURL=tr.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tr.d.ts","sourceRoot":"","sources":["../../../../../src/Translation/Resources/tr.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"tr.d.ts","sourceRoot":"","sources":["../../../../../src/Translation/Resources/tr.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAkJE"}
|
package/package.json
CHANGED
|
@@ -12,7 +12,7 @@ import NavigationManager, {
|
|
|
12
12
|
} from '../../Shared/Components/NavigationManager';
|
|
13
13
|
import AppContext from '../../Shared/Contexts/AppContext';
|
|
14
14
|
import { getI18n, useTranslation } from 'react-i18next';
|
|
15
|
-
import
|
|
15
|
+
import StyledButton from '../../Shared/Components/StyledButton';
|
|
16
16
|
import NativeDeviceInfo from '../../Shared/Libs/native-device-info.utils';
|
|
17
17
|
import { speakWithDebounce } from '../../Shared/Libs/tts.utils';
|
|
18
18
|
|
|
@@ -105,7 +105,7 @@ const ContractAcceptanceScreen = () => {
|
|
|
105
105
|
<Text style={styles.footerText}>
|
|
106
106
|
{t('termsOfUseAndDataPrivacyScreen.footerText')}
|
|
107
107
|
</Text>
|
|
108
|
-
<
|
|
108
|
+
<StyledButton
|
|
109
109
|
mode="contained"
|
|
110
110
|
disabled={!isEnabled}
|
|
111
111
|
onPress={async () => {
|
|
@@ -132,7 +132,7 @@ const ContractAcceptanceScreen = () => {
|
|
|
132
132
|
}}
|
|
133
133
|
>
|
|
134
134
|
{t('termsOfUseAndDataPrivacyScreen.acceptAndContinue')}
|
|
135
|
-
</
|
|
135
|
+
</StyledButton>
|
|
136
136
|
</View>
|
|
137
137
|
<NavigationManager ref={navigationManagerRef} />
|
|
138
138
|
</SafeAreaView>
|
|
@@ -25,7 +25,7 @@ import NavigationManager, {
|
|
|
25
25
|
import AppContext from '../../Shared/Contexts/AppContext';
|
|
26
26
|
import { contains, type Rect } from '../../Shared/Libs/contains';
|
|
27
27
|
import { useTranslation } from 'react-i18next';
|
|
28
|
-
import
|
|
28
|
+
import StyledButton from '../../Shared/Components/StyledButton';
|
|
29
29
|
import LottieView from 'lottie-react-native';
|
|
30
30
|
import { speakWithDebounce } from '../../Shared/Libs/tts.utils';
|
|
31
31
|
|
|
@@ -514,14 +514,14 @@ const LivenessDetectionScreen = () => {
|
|
|
514
514
|
• {t('livenessDetectionScreen.guidePoint4')}
|
|
515
515
|
</Text>
|
|
516
516
|
</View>
|
|
517
|
-
<
|
|
517
|
+
<StyledButton
|
|
518
518
|
mode="contained"
|
|
519
519
|
onPress={() => {
|
|
520
520
|
setHasGuideShown(true);
|
|
521
521
|
}}
|
|
522
522
|
>
|
|
523
523
|
{t('general.letsGo')}
|
|
524
|
-
</
|
|
524
|
+
</StyledButton>
|
|
525
525
|
</View>
|
|
526
526
|
) : (
|
|
527
527
|
<>
|
|
@@ -28,7 +28,7 @@ import { useTranslation } from 'react-i18next';
|
|
|
28
28
|
import { Video as VideoCompressor } from 'react-native-compressor';
|
|
29
29
|
import { encryptWithAes, getSessionKey } from '../../Shared/Libs/crypto.utils';
|
|
30
30
|
import Video from 'react-native-video';
|
|
31
|
-
import
|
|
31
|
+
import StyledButton from '../../Shared/Components/StyledButton';
|
|
32
32
|
import NativeDeviceInfo from '../../Shared/Libs/native-device-info.utils';
|
|
33
33
|
|
|
34
34
|
const ResultScreen = () => {
|
|
@@ -749,7 +749,7 @@ const ResultScreen = () => {
|
|
|
749
749
|
)}
|
|
750
750
|
</View>
|
|
751
751
|
</ScrollView>
|
|
752
|
-
<
|
|
752
|
+
<StyledButton
|
|
753
753
|
mode="contained"
|
|
754
754
|
onPress={() => {
|
|
755
755
|
appContext.onCompleted?.();
|
|
@@ -757,7 +757,7 @@ const ResultScreen = () => {
|
|
|
757
757
|
}}
|
|
758
758
|
>
|
|
759
759
|
{t('resultScreen.demoStartOver')}
|
|
760
|
-
</
|
|
760
|
+
</StyledButton>
|
|
761
761
|
</>
|
|
762
762
|
) : (
|
|
763
763
|
<>
|