idmission-web-sdk 2.2.82 → 2.2.84
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/dist/components/common/LoaderButton.d.ts +2 -2
- package/dist/components/common/LoaderButton.d.ts.map +1 -1
- package/dist/components/common/overlay.d.ts +20 -2
- package/dist/components/common/overlay.d.ts.map +1 -1
- package/dist/lib/locales/de.d.ts +6 -5
- package/dist/lib/locales/de.d.ts.map +1 -1
- package/dist/lib/locales/fr.d.ts +6 -5
- package/dist/lib/locales/fr.d.ts.map +1 -1
- package/dist/lib/locales/index.d.ts +42 -35
- package/dist/lib/locales/index.d.ts.map +1 -1
- package/dist/lib/locales/it.d.ts +6 -5
- package/dist/lib/locales/it.d.ts.map +1 -1
- package/dist/lib/locales/ja.d.ts +6 -5
- package/dist/lib/locales/ja.d.ts.map +1 -1
- package/dist/lib/locales/pt.d.ts +6 -5
- package/dist/lib/locales/pt.d.ts.map +1 -1
- package/dist/lib/locales/ru.d.ts +6 -5
- package/dist/lib/locales/ru.d.ts.map +1 -1
- package/dist/lib/locales/zh.d.ts +6 -5
- package/dist/lib/locales/zh.d.ts.map +1 -1
- package/dist/sdk2.cjs.development.js +49 -44
- package/dist/sdk2.cjs.development.js.map +1 -1
- package/dist/sdk2.cjs.production.js +1 -1
- package/dist/sdk2.cjs.production.js.map +1 -1
- package/dist/sdk2.esm.js +49 -44
- package/dist/sdk2.esm.js.map +1 -1
- package/dist/sdk2.umd.development.js +49 -44
- package/dist/sdk2.umd.development.js.map +1 -1
- package/dist/sdk2.umd.production.js +1 -1
- package/dist/sdk2.umd.production.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
package/dist/sdk2.esm.js
CHANGED
|
@@ -203,7 +203,7 @@ typeof SuppressedError === "function" ? SuppressedError : function (error, suppr
|
|
|
203
203
|
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
204
204
|
};
|
|
205
205
|
|
|
206
|
-
var webSdkVersion = '2.2.
|
|
206
|
+
var webSdkVersion = '2.2.84';
|
|
207
207
|
|
|
208
208
|
function getPlatform() {
|
|
209
209
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
@@ -413,10 +413,9 @@ var LoaderButton = function LoaderButton(_a) {
|
|
|
413
413
|
colors = _b === void 0 ? {} : _b,
|
|
414
414
|
disabled = _a.disabled,
|
|
415
415
|
finished = _a.finished,
|
|
416
|
-
onClick = _a.onClick,
|
|
417
|
-
style = _a.style,
|
|
418
416
|
_c = _a.variant,
|
|
419
|
-
variant = _c === void 0 ? 'primary' : _c
|
|
417
|
+
variant = _c === void 0 ? 'primary' : _c,
|
|
418
|
+
props = __rest(_a, ["children", "className", "colors", "disabled", "finished", "variant"]);
|
|
420
419
|
var buttonRef = useRef(null);
|
|
421
420
|
var laddaRef = useRef(null);
|
|
422
421
|
var _d = useState(false),
|
|
@@ -447,19 +446,18 @@ var LoaderButton = function LoaderButton(_a) {
|
|
|
447
446
|
var _a;
|
|
448
447
|
if (laddaLoaded && finished) (_a = laddaRef.current) === null || _a === void 0 ? void 0 : _a.stop();
|
|
449
448
|
}, [finished, laddaLoaded]);
|
|
450
|
-
return /*#__PURE__*/React__default.createElement(StyledButton, {
|
|
449
|
+
return /*#__PURE__*/React__default.createElement(StyledButton, _assign({
|
|
451
450
|
className: "ladda-button ".concat(className, " ").concat(disabled ? 'disabled' : ''),
|
|
452
451
|
"data-style": "expand-right",
|
|
452
|
+
type: "button",
|
|
453
453
|
disabled: disabled,
|
|
454
454
|
ref: buttonRef,
|
|
455
|
-
onClick: onClick,
|
|
456
455
|
"$backgroundColor": colors.backgroundColor,
|
|
457
456
|
"$textColor": colors.textColor,
|
|
458
457
|
"$disabledBackgroundColor": colors.loadingBackgroundColor,
|
|
459
458
|
"$disabledTextColor": colors.loadingTextColor,
|
|
460
|
-
"$variant": variant
|
|
461
|
-
|
|
462
|
-
}, /*#__PURE__*/React__default.createElement("span", {
|
|
459
|
+
"$variant": variant
|
|
460
|
+
}, props), /*#__PURE__*/React__default.createElement("span", {
|
|
463
461
|
className: "ladda-label"
|
|
464
462
|
}, children));
|
|
465
463
|
};
|
|
@@ -5037,6 +5035,7 @@ var es = {
|
|
|
5037
5035
|
};
|
|
5038
5036
|
|
|
5039
5037
|
var de = {
|
|
5038
|
+
'English - en': 'German - de',
|
|
5040
5039
|
'Use your device camera to capture your ID': 'Ihre Gerätekamera zur Aufnahme Ihres Ausweises verwenden',
|
|
5041
5040
|
'Use your iPhone as a webcam': 'Ihr iPhone als Webcam verwenden',
|
|
5042
5041
|
'Models warming up...': 'Modelle wärmen sich auf...',
|
|
@@ -5092,7 +5091,7 @@ var de = {
|
|
|
5092
5091
|
'Please remove your eye coverings (sunglasses eye patch etc.)...': 'Bitte Augenbedeckung entfernen (Sonnenbrille, Augenklappe usw.)...',
|
|
5093
5092
|
'Please remove your head coverings (hat scarf etc.)...': 'Bitte Kopfbedeckung abnehmen (Mütze, Schal usw.)...',
|
|
5094
5093
|
'Please remove your mask...': 'Bitte Maske ablegen...',
|
|
5095
|
-
'Live face not detected please try again': 'Live-Gesicht nicht erkannt, bitte erneut versuchen',
|
|
5094
|
+
'Live face not detected, please try again': 'Live-Gesicht nicht erkannt, bitte erneut versuchen',
|
|
5096
5095
|
Exit: 'Verlassen',
|
|
5097
5096
|
'Face liveness has been verified!': 'Echtzeit des Gesichts wurde verifiziert!',
|
|
5098
5097
|
Done: 'Fertig',
|
|
@@ -5107,8 +5106,8 @@ var de = {
|
|
|
5107
5106
|
Clear: 'Löschen',
|
|
5108
5107
|
'Video signature has been successfully captured!': 'Videosignatur wurde erfolgreich erfasst!',
|
|
5109
5108
|
'Network unreachable': 'Netzwerk nicht erreichbar',
|
|
5110
|
-
'
|
|
5111
|
-
'
|
|
5109
|
+
"We're having trouble reaching our services please check your connection and try again.": 'Wir haben Probleme, unsere Dienste zu erreichen. Bitte prüfen Sie Ihre Verbindung und versuchen Sie es erneut.',
|
|
5110
|
+
"We're sorry an unexpected error has occurred.": 'Leider ist ein unerwarteter Fehler aufgetreten.',
|
|
5112
5111
|
'Document Capture': 'Dokument erfassen',
|
|
5113
5112
|
Capture: 'Erfassen',
|
|
5114
5113
|
'Retry capture': 'Erfassung erneut versuchen',
|
|
@@ -5125,7 +5124,7 @@ var de = {
|
|
|
5125
5124
|
'Video ID has been successfully captured!': 'Video-ID wurde erfolgreich erfasst!',
|
|
5126
5125
|
'ID Front Image': 'Bild Ausweisvorderseite',
|
|
5127
5126
|
'ID Back Image': 'Bild Ausweisrückseite',
|
|
5128
|
-
'
|
|
5127
|
+
"We're having some trouble.": 'Wir haben Probleme.',
|
|
5129
5128
|
'On-device capture guidance failed please capture a selfie manually.': 'Leitfaden zur Erfassung am Gerät fehlgeschlagen, bitte manuell ein Selfie erfassen.',
|
|
5130
5129
|
'Verifying...': 'Verifizierung ...',
|
|
5131
5130
|
'Please capture the front of your ID card.': 'Bitte die Vorderseite Ihres Ausweises erfassen.',
|
|
@@ -5144,12 +5143,13 @@ var de = {
|
|
|
5144
5143
|
'Camera ready': 'Kamera bereit',
|
|
5145
5144
|
'Loading guided capture experience...': 'Geführte Erfassung wird geladen...',
|
|
5146
5145
|
'Guided capture experience ready': 'Geführte Erfassung bereit',
|
|
5147
|
-
'
|
|
5146
|
+
"Let's Go!": 'Los geht‘s!',
|
|
5148
5147
|
'We are having trouble identifying the correct side of your id do you want to continue with capture anyway?': 'Wir haben Probleme, die richtige Seite Ihres Ausweises zu erkennen. Möchten Sie dennoch mit der Erfassung fortfahren?',
|
|
5149
5148
|
OK: 'OK'
|
|
5150
5149
|
};
|
|
5151
5150
|
|
|
5152
5151
|
var fr = {
|
|
5152
|
+
'English - en': 'French - fr',
|
|
5153
5153
|
'Use your device camera to capture your ID': 'Utilisez la caméra de votre appareil pour capturer votre ID',
|
|
5154
5154
|
'Use your iPhone as a webcam': 'Utiliser votre iPhone comme Webcam',
|
|
5155
5155
|
'Models warming up...': "Les modèles s'échauffent...",
|
|
@@ -5205,7 +5205,7 @@ var fr = {
|
|
|
5205
5205
|
'Please remove your eye coverings (sunglasses eye patch etc.)...': 'Veuillez retirer ce qui recouvre vos yeux (lunettes de soleil, cache-œil, etc.)...',
|
|
5206
5206
|
'Please remove your head coverings (hat scarf etc.)...': 'Veuillez retirer vos couvre-chefs (chapeau, foulard, etc.)...',
|
|
5207
5207
|
'Please remove your mask...': 'Veuillez retirer votre masque...',
|
|
5208
|
-
'Live face not detected please try again': 'Visage vivant non détecté veuillez réessayer',
|
|
5208
|
+
'Live face not detected, please try again': 'Visage vivant non détecté veuillez réessayer',
|
|
5209
5209
|
Exit: 'Quitter',
|
|
5210
5210
|
'Face liveness has been verified!': 'Le caractère vivant du visage a été vérifié!',
|
|
5211
5211
|
Done: 'Fini',
|
|
@@ -5220,8 +5220,8 @@ var fr = {
|
|
|
5220
5220
|
Clear: 'Effacer',
|
|
5221
5221
|
'Video signature has been successfully captured!': 'La signature vidéo a été capturée avec succès!',
|
|
5222
5222
|
'Network unreachable': 'Réseau inaccessible',
|
|
5223
|
-
'
|
|
5224
|
-
'
|
|
5223
|
+
"We're having trouble reaching our services please check your connection and try again.": 'Nous rencontrons des difficultés pour accéder à nos services, veuillez vérifier votre connexion et réessayer.',
|
|
5224
|
+
"We're sorry an unexpected error has occurred.": 'Nous sommes désolés, une erreur inattendue est survenue.',
|
|
5225
5225
|
'Document Capture': 'Capture de document',
|
|
5226
5226
|
Capture: 'Capturer',
|
|
5227
5227
|
'Retry capture': 'Réessayer la capture',
|
|
@@ -5238,7 +5238,7 @@ var fr = {
|
|
|
5238
5238
|
'Video ID has been successfully captured!': 'L’ID vidéo a été capturé avec succès!',
|
|
5239
5239
|
'ID Front Image': 'Image recto de la pièce d’identité',
|
|
5240
5240
|
'ID Back Image': 'Image verso de la pièce d’identité',
|
|
5241
|
-
'
|
|
5241
|
+
"We're having some trouble.": 'Nous rencontrons quelques problèmes.',
|
|
5242
5242
|
'On-device capture guidance failed please capture a selfie manually.': "Le guidage de capture sur l'appareil a échoué, veuillez capturer un selfie manuellement.",
|
|
5243
5243
|
'Verifying...': 'Vérification en cours...',
|
|
5244
5244
|
'Please capture the front of your ID card.': "Veuillez capturer le recto de votre carte d'identité.",
|
|
@@ -5257,12 +5257,13 @@ var fr = {
|
|
|
5257
5257
|
'Camera ready': 'Caméra prête',
|
|
5258
5258
|
'Loading guided capture experience...': "Chargement de l'expérience de capture guidée...",
|
|
5259
5259
|
'Guided capture experience ready': 'Expérience de capture guidée prête',
|
|
5260
|
-
'
|
|
5260
|
+
"Let's Go!": 'Allons-y !',
|
|
5261
5261
|
'We are having trouble identifying the correct side of your id do you want to continue with capture anyway?': "Nous rencontrons des difficultés pour identifier la bonne face de votre pièce d'identité. Voulez-vous quand même continuer la capture ?",
|
|
5262
5262
|
OK: 'OK'
|
|
5263
5263
|
};
|
|
5264
5264
|
|
|
5265
5265
|
var it = {
|
|
5266
|
+
'English - en': 'Italian - it',
|
|
5266
5267
|
'Use your device camera to capture your ID': 'Utilizzare la fotocamera del dispositivo per acquisire il documento',
|
|
5267
5268
|
'Use your iPhone as a webcam': 'Utilizza iPhone come webcam',
|
|
5268
5269
|
'Models warming up...': 'Riscaldamento modelli...',
|
|
@@ -5318,7 +5319,7 @@ var it = {
|
|
|
5318
5319
|
'Please remove your eye coverings (sunglasses eye patch etc.)...': 'Rimuovere tutto ciò che copre gli occhi (occhiali da sole, bende, ecc.)...',
|
|
5319
5320
|
'Please remove your head coverings (hat scarf etc.)...': 'Rimuovere tutto ciò che ricopre il capo (cappello, sciarpa, ecc.)...',
|
|
5320
5321
|
'Please remove your mask...': 'Rimuovere la mascherina...',
|
|
5321
|
-
'Live face not detected please try again': 'Volto reale non rilevato riprovare',
|
|
5322
|
+
'Live face not detected, please try again': 'Volto reale non rilevato riprovare',
|
|
5322
5323
|
Exit: 'Esci',
|
|
5323
5324
|
'Face liveness has been verified!': 'Verifica del volto eseguita!',
|
|
5324
5325
|
Done: 'Fatto',
|
|
@@ -5333,8 +5334,8 @@ var it = {
|
|
|
5333
5334
|
Clear: 'Cancella',
|
|
5334
5335
|
'Video signature has been successfully captured!': 'La firma video è stata acquisita correttamente!',
|
|
5335
5336
|
'Network unreachable': 'Rete non raggiungibile',
|
|
5336
|
-
'
|
|
5337
|
-
'
|
|
5337
|
+
"We're having trouble reaching our services please check your connection and try again.": 'Si è verificato un problema nel raggiungere i nostri servizi, verificare la connessione e riprovare.',
|
|
5338
|
+
"We're sorry an unexpected error has occurred.": 'Spiacenti, si è verificato un errore inatteso.',
|
|
5338
5339
|
'Document Capture': 'Acquisizione documento',
|
|
5339
5340
|
Capture: 'Acquisisci',
|
|
5340
5341
|
'Retry capture': 'Riprova acquisizione',
|
|
@@ -5351,7 +5352,7 @@ var it = {
|
|
|
5351
5352
|
'Video ID has been successfully captured!': 'L’ID video è stato acquisito correttamente!',
|
|
5352
5353
|
'ID Front Image': 'Immagine fronte documento d’identità',
|
|
5353
5354
|
'ID Back Image': 'Immagine retro documento d’identità',
|
|
5354
|
-
'
|
|
5355
|
+
"We're having some trouble.": 'Si è verificato un problema.',
|
|
5355
5356
|
'On-device capture guidance failed please capture a selfie manually.': "La guida all'acquisizione sul dispositivo non è riuscita. Scattare un selfie manualmente.",
|
|
5356
5357
|
'Verifying...': 'Verifica...',
|
|
5357
5358
|
'Please capture the front of your ID card.': 'Acquisire il fronte del documento d’identità.',
|
|
@@ -5370,12 +5371,13 @@ var it = {
|
|
|
5370
5371
|
'Camera ready': 'Fotocamera pronta',
|
|
5371
5372
|
'Loading guided capture experience...': "Caricamento dell'esperienza di acquisizione guidata...",
|
|
5372
5373
|
'Guided capture experience ready': 'Esperienza di acquisizione guidata pronta',
|
|
5373
|
-
'
|
|
5374
|
+
"Let's Go!": 'Iniziamo!',
|
|
5374
5375
|
'We are having trouble identifying the correct side of your id do you want to continue with capture anyway?': "Si stanno verificando problemi nell'identificare il lato corretto del documento d'identità. Procedere con l'acquisizione?",
|
|
5375
5376
|
OK: 'OK'
|
|
5376
5377
|
};
|
|
5377
5378
|
|
|
5378
5379
|
var ja = {
|
|
5380
|
+
'English - en': 'Japanese - ja',
|
|
5379
5381
|
'Use your device camera to capture your ID': 'デバイスのカメラを使用して身分証を撮影してください',
|
|
5380
5382
|
'Use your iPhone as a webcam': 'iPhoneをウェブカムとして使用',
|
|
5381
5383
|
'Models warming up...': 'モデルをウォームアップ中…',
|
|
@@ -5431,7 +5433,7 @@ var ja = {
|
|
|
5431
5433
|
'Please remove your eye coverings (sunglasses eye patch etc.)...': '目を覆うもの(サングラスや眼帯など)を取り外してください…',
|
|
5432
5434
|
'Please remove your head coverings (hat scarf etc.)...': '頭を覆うもの(帽子やスカーフなど)を取り外してください…',
|
|
5433
5435
|
'Please remove your mask...': 'マスクを取り外してください…',
|
|
5434
|
-
'Live face not detected please try again': '顔のライブネスが検出されません。再度お試しください',
|
|
5436
|
+
'Live face not detected, please try again': '顔のライブネスが検出されません。再度お試しください',
|
|
5435
5437
|
Exit: '終了',
|
|
5436
5438
|
'Face liveness has been verified!': '顔のライブネスが認証されました',
|
|
5437
5439
|
Done: '完了',
|
|
@@ -5446,8 +5448,8 @@ var ja = {
|
|
|
5446
5448
|
Clear: '消去',
|
|
5447
5449
|
'Video signature has been successfully captured!': 'ビデオ署名を撮影しました',
|
|
5448
5450
|
'Network unreachable': 'ネットワークに接続できません',
|
|
5449
|
-
'
|
|
5450
|
-
'
|
|
5451
|
+
"We're having trouble reaching our services please check your connection and try again.": 'サービス接続時に問題が発生しています。接続を確認して再度お試しください。',
|
|
5452
|
+
"We're sorry an unexpected error has occurred.": '不慮のエラーが発生しました。申し訳ありません。',
|
|
5451
5453
|
'Document Capture': 'ドキュメントの撮影',
|
|
5452
5454
|
Capture: '撮影',
|
|
5453
5455
|
'Retry capture': '撮影のやりなおし',
|
|
@@ -5464,7 +5466,7 @@ var ja = {
|
|
|
5464
5466
|
'Video ID has been successfully captured!': 'ビデオ身分を撮影しました',
|
|
5465
5467
|
'ID Front Image': '身分証の正面画像',
|
|
5466
5468
|
'ID Back Image': '身分証の背面画像',
|
|
5467
|
-
'
|
|
5469
|
+
"We're having some trouble.": '問題が発生しました。',
|
|
5468
5470
|
'On-device capture guidance failed please capture a selfie manually.': 'デバイスの撮影ガイダンスが動作しません。手動でセルフィーを撮影してください。',
|
|
5469
5471
|
'Verifying...': '検証中…',
|
|
5470
5472
|
'Please capture the front of your ID card.': '身分証の正面を撮影してください…',
|
|
@@ -5483,12 +5485,13 @@ var ja = {
|
|
|
5483
5485
|
'Camera ready': 'カメラが準備完了',
|
|
5484
5486
|
'Loading guided capture experience...': '撮影ガイダンスのエクスペリエンスを読み込み中…',
|
|
5485
5487
|
'Guided capture experience ready': '撮影ガイダンスのエクスペリエンスが準備完了',
|
|
5486
|
-
'
|
|
5488
|
+
"Let's Go!": '始めましょう',
|
|
5487
5489
|
'We are having trouble identifying the correct side of your id do you want to continue with capture anyway?': '身分証の正しい寸法を特定できません。それでも撮影を続行しますか?',
|
|
5488
5490
|
OK: 'OK'
|
|
5489
5491
|
};
|
|
5490
5492
|
|
|
5491
5493
|
var pt = {
|
|
5494
|
+
'English - en': 'Portuguese (Brazil) - pt',
|
|
5492
5495
|
'Use your device camera to capture your ID': 'Usar a câmera do dispositivo para fotografar sua identidade',
|
|
5493
5496
|
'Use your iPhone as a webcam': 'Use seu iPhone como uma câmera Web',
|
|
5494
5497
|
'Models warming up...': 'Modelos aquecendo...',
|
|
@@ -5544,7 +5547,7 @@ var pt = {
|
|
|
5544
5547
|
'Please remove your eye coverings (sunglasses eye patch etc.)...': 'Por favor, remova as coberturas dos olhos (óculos de sol, tapa-olho, etc.)...',
|
|
5545
5548
|
'Please remove your head coverings (hat scarf etc.)...': 'Por favor, remova as coberturas da cabeça (chapéu, cachecol, etc.)...',
|
|
5546
5549
|
'Please remove your mask...': 'Por favor, remova sua máscara...',
|
|
5547
|
-
'Live face not detected please try again': 'Não foi possível detectar a veracidade do rosto tente novamente',
|
|
5550
|
+
'Live face not detected, please try again': 'Não foi possível detectar a veracidade do rosto tente novamente',
|
|
5548
5551
|
Exit: 'Sair',
|
|
5549
5552
|
'Face liveness has been verified!': 'A veracidade do rosto foi verificada!',
|
|
5550
5553
|
Done: 'Concluído',
|
|
@@ -5559,8 +5562,8 @@ var pt = {
|
|
|
5559
5562
|
Clear: 'Apagar',
|
|
5560
5563
|
'Video signature has been successfully captured!': 'A assinatura de vídeo foi capturada com sucesso!',
|
|
5561
5564
|
'Network unreachable': 'Rede inacessível',
|
|
5562
|
-
'
|
|
5563
|
-
'
|
|
5565
|
+
"We're having trouble reaching our services please check your connection and try again.": 'Estamos com dificuldades para acessar nossos serviços, verifique sua conexão e tente novamente.',
|
|
5566
|
+
"We're sorry an unexpected error has occurred.": 'Lamentamos, mas ocorreu um erro inesperado.',
|
|
5564
5567
|
'Document Capture': 'Captura de Documento',
|
|
5565
5568
|
Capture: 'Capturar',
|
|
5566
5569
|
'Retry capture': 'Repetir captura',
|
|
@@ -5577,7 +5580,7 @@ var pt = {
|
|
|
5577
5580
|
'Video ID has been successfully captured!': 'O vídeo de identificação foi capturado com sucesso!',
|
|
5578
5581
|
'ID Front Image': 'Imagem frontal da ID',
|
|
5579
5582
|
'ID Back Image': 'Imagem traseira da ID',
|
|
5580
|
-
'
|
|
5583
|
+
"We're having some trouble.": 'Estamos tendo alguns problemas.',
|
|
5581
5584
|
'On-device capture guidance failed please capture a selfie manually.': 'A orientação de captura no dispositivo falhou, capture uma selfie manualmente.',
|
|
5582
5585
|
'Verifying...': 'Verificando...',
|
|
5583
5586
|
'Please capture the front of your ID card.': 'Capture a frente da sua carteira de identidade.',
|
|
@@ -5596,12 +5599,13 @@ var pt = {
|
|
|
5596
5599
|
'Camera ready': 'Câmera pronta',
|
|
5597
5600
|
'Loading guided capture experience...': 'Carregando a experiência de captura guiada...',
|
|
5598
5601
|
'Guided capture experience ready': 'Experiência de captura guiada pronta',
|
|
5599
|
-
'
|
|
5602
|
+
"Let's Go!": 'Vamos lá!',
|
|
5600
5603
|
'We are having trouble identifying the correct side of your id do you want to continue with capture anyway?': 'Estamos com dificuldades para identificar o lado correto da sua identidade. Deseja continuar com a captura mesmo assim?',
|
|
5601
5604
|
OK: 'OK'
|
|
5602
5605
|
};
|
|
5603
5606
|
|
|
5604
5607
|
var ru = {
|
|
5608
|
+
'English - en': 'Russian - ru',
|
|
5605
5609
|
'Use your device camera to capture your ID': 'Используйте камеру вашего устройства для съемки удостоверения личности',
|
|
5606
5610
|
'Use your iPhone as a webcam': 'Используйте iPhone в качестве веб-камеры',
|
|
5607
5611
|
'Models warming up...': 'Модели разогреваются…',
|
|
@@ -5657,7 +5661,7 @@ var ru = {
|
|
|
5657
5661
|
'Please remove your eye coverings (sunglasses eye patch etc.)...': 'Снимите предметы, закрывающие глаза (солнцезащитные очки, повязку и т.д.)…',
|
|
5658
5662
|
'Please remove your head coverings (hat scarf etc.)...': 'Снимите предметы, покрывающие голову (шапку, шарф и т.д.)…',
|
|
5659
5663
|
'Please remove your mask...': 'Снимите маску…',
|
|
5660
|
-
'Live face not detected please try again': 'Реальное лицо не обнаружено, повторите попытку',
|
|
5664
|
+
'Live face not detected, please try again': 'Реальное лицо не обнаружено, повторите попытку',
|
|
5661
5665
|
Exit: 'Выход',
|
|
5662
5666
|
'Face liveness has been verified!': 'Реальность лица проверена!',
|
|
5663
5667
|
Done: 'Готово',
|
|
@@ -5672,8 +5676,8 @@ var ru = {
|
|
|
5672
5676
|
Clear: 'Очистить',
|
|
5673
5677
|
'Video signature has been successfully captured!': 'Видеоподпись успешно записана!',
|
|
5674
5678
|
'Network unreachable': 'Сеть недоступна',
|
|
5675
|
-
'
|
|
5676
|
-
'
|
|
5679
|
+
"We're having trouble reaching our services please check your connection and try again.": 'У нас возникли проблемы с доступом к нашим службам, проверьте подключение и повторите попытку.',
|
|
5680
|
+
"We're sorry an unexpected error has occurred.": 'К сожалению, произошла непредвиденная ошибка.',
|
|
5677
5681
|
'Document Capture': 'Съемка документа',
|
|
5678
5682
|
Capture: 'Съемка',
|
|
5679
5683
|
'Retry capture': 'Повторить съемку',
|
|
@@ -5690,7 +5694,7 @@ var ru = {
|
|
|
5690
5694
|
'Video ID has been successfully captured!': 'Видеоидентификация успешно выполнена!',
|
|
5691
5695
|
'ID Front Image': 'Изображение лицевой стороны удостоверения личности',
|
|
5692
5696
|
'ID Back Image': 'Изображение обратной стороны удостоверения личности',
|
|
5693
|
-
'
|
|
5697
|
+
"We're having some trouble.": 'Возникли некоторые проблемы.',
|
|
5694
5698
|
'On-device capture guidance failed please capture a selfie manually.': 'Произошел сбой при выполнении руководства по съемке в устройстве, сделайте селфи вручную.',
|
|
5695
5699
|
'Verifying...': 'Идентификация…',
|
|
5696
5700
|
'Please capture the front of your ID card.': 'Снимите лицевую сторону вашего удостоверения личности.',
|
|
@@ -5709,12 +5713,13 @@ var ru = {
|
|
|
5709
5713
|
'Camera ready': 'Камера готова',
|
|
5710
5714
|
'Loading guided capture experience...': 'Загрузка данных опыта управляемой съемки…',
|
|
5711
5715
|
'Guided capture experience ready': 'Данные опыта управляемой съемки готовы',
|
|
5712
|
-
'
|
|
5716
|
+
"Let's Go!": 'Поехали!',
|
|
5713
5717
|
'We are having trouble identifying the correct side of your id do you want to continue with capture anyway?': 'У нас возникли проблемы с определением правильной стороны вашего удостоверения личности. Все равно хотите продолжить съемку?',
|
|
5714
5718
|
OK: 'OK'
|
|
5715
5719
|
};
|
|
5716
5720
|
|
|
5717
5721
|
var zh = {
|
|
5722
|
+
'English - en': 'Chinese (Traditional) - zh',
|
|
5718
5723
|
'Use your device camera to capture your ID': '使用裝置相機拍攝證件',
|
|
5719
5724
|
'Use your iPhone as a webcam': '將 iPhone 當作網路攝影機使用',
|
|
5720
5725
|
'Models warming up...': '正在暖機...',
|
|
@@ -5770,7 +5775,7 @@ var zh = {
|
|
|
5770
5775
|
'Please remove your eye coverings (sunglasses eye patch etc.)...': '請取下眼睛遮蓋物(太陽眼鏡、眼罩等)...',
|
|
5771
5776
|
'Please remove your head coverings (hat scarf etc.)...': '請取下頭部遮蓋物(帽子、圍巾等)...',
|
|
5772
5777
|
'Please remove your mask...': '請脫下口罩...',
|
|
5773
|
-
'Live face not detected please try again': '未偵測到活體人臉,請再試一次',
|
|
5778
|
+
'Live face not detected, please try again': '未偵測到活體人臉,請再試一次',
|
|
5774
5779
|
Exit: '退出',
|
|
5775
5780
|
'Face liveness has been verified!': '已驗證人臉活體!',
|
|
5776
5781
|
Done: '完成',
|
|
@@ -5785,8 +5790,8 @@ var zh = {
|
|
|
5785
5790
|
Clear: '清除',
|
|
5786
5791
|
'Video signature has been successfully captured!': '已成功拍攝影片簽名!',
|
|
5787
5792
|
'Network unreachable': '網路無法連線',
|
|
5788
|
-
'
|
|
5789
|
-
'
|
|
5793
|
+
"We're having trouble reaching our services please check your connection and try again.": '無法與服務連線,請檢查連線並再試一次。',
|
|
5794
|
+
"We're sorry an unexpected error has occurred.": '很抱歉,發生非預期錯誤。',
|
|
5790
5795
|
'Document Capture': '文件拍攝',
|
|
5791
5796
|
Capture: '拍攝',
|
|
5792
5797
|
'Retry capture': '重試拍攝',
|
|
@@ -5803,7 +5808,7 @@ var zh = {
|
|
|
5803
5808
|
'Video ID has been successfully captured!': '已成功拍攝影片 ID!',
|
|
5804
5809
|
'ID Front Image': '證件正面影像',
|
|
5805
5810
|
'ID Back Image': '證件背面影像',
|
|
5806
|
-
'
|
|
5811
|
+
"We're having some trouble.": '發生一些問題。',
|
|
5807
5812
|
'On-device capture guidance failed please capture a selfie manually.': '裝置上拍攝引導失敗,請手動拍攝自拍照',
|
|
5808
5813
|
'Verifying...': '正在驗證...',
|
|
5809
5814
|
'Please capture the front of your ID card.': '請拍攝證件正面。',
|
|
@@ -5822,7 +5827,7 @@ var zh = {
|
|
|
5822
5827
|
'Camera ready': '相機就緒',
|
|
5823
5828
|
'Loading guided capture experience...': '正在載入引導式拍攝體驗...',
|
|
5824
5829
|
'Guided capture experience ready': '引導式拍攝體驗就緒',
|
|
5825
|
-
'
|
|
5830
|
+
"Let's Go!": '開始!',
|
|
5826
5831
|
'We are having trouble identifying the correct side of your id do you want to continue with capture anyway?': '無法識別證件的正確一面,是否仍要繼續拍攝?',
|
|
5827
5832
|
OK: '確定'
|
|
5828
5833
|
};
|