@adyen/kyc-components 2.32.2 → 2.34.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/dist/es/adyen-kyc-components.es.js +314 -129
- package/dist/style.css +9 -0
- package/dist/types/components/BankVerification/BankVerification.d.ts +1 -1
- package/dist/types/components/BankVerification/types.d.ts +5 -5
- package/dist/types/components/BusinessTypeSelection/utils.d.ts +2 -1
- package/dist/types/components/CompanyBasics/component/CompanyBasicsComponent.d.ts +1 -1
- package/dist/types/components/CompanyBasics/types.d.ts +5 -3
- package/dist/types/components/CompanyLookup/types.d.ts +4 -4
- package/dist/types/components/Individual/types.d.ts +2 -2
- package/dist/types/components/Introduction/constants.d.ts +14 -0
- package/dist/types/components/PayoutDetails/types.d.ts +2 -2
- package/dist/types/components/TaskList/types.d.ts +2 -2
- package/dist/types/components/internal/Address/utils.d.ts +1 -1
- package/dist/types/components/internal/BusinessRegistrationNumberField/BusinessRegistrationNumberField.d.ts +1 -1
- package/dist/types/components/internal/BusinessRegistrationNumberField/types.d.ts +9 -0
- package/dist/types/components/internal/EntityAssociation/types.d.ts +2 -2
- package/dist/types/components/internal/Remove/types.d.ts +3 -3
- package/dist/types/components/internal/TaxInformationField/TaxInformationField.d.ts +1 -1
- package/dist/types/components/internal/TaxInformationField/types.d.ts +7 -0
- package/dist/types/components/internal/VatNumberField/VatNumberField.d.ts +1 -1
- package/dist/types/components/internal/VatNumberField/types.d.ts +4 -0
- package/dist/types/core/Context/ExperimentContext/types.d.ts +2 -1
- package/dist/types/core/Context/ReactQueryContext/ReactQueryClient.d.ts +2 -0
- package/dist/types/core/Context/ReactQueryContext/ReactQueryProvider.d.ts +4 -0
- package/dist/types/core/Context/SettingsContext/types.d.ts +2 -0
- package/dist/types/core/Context/SettingsContext/useSetting.d.ts +1 -1
- package/dist/types/core/hooks/introduction/useHasSeenIntroduction.d.ts +1 -1
- package/dist/types/core/hooks/useCompanySearch/types.d.ts +2 -2
- package/dist/types/core/hooks/useCompanySearchTaskSubmit.d.ts +4 -3
- package/dist/types/core/hooks/useForm/types.d.ts +8 -8
- package/dist/types/core/hooks/useFormComposer.d.ts +2 -2
- package/dist/types/core/hooks/useLeId.d.ts +1 -0
- package/dist/types/core/hooks/useLocalStorage.d.ts +2 -2
- package/dist/types/language/config.d.ts +2 -1235
- package/dist/types/language/types.d.ts +1 -1
- package/dist/types/utils/entity-status-util.d.ts +1 -1
- package/dist/types/utils/useStateFromProp.d.ts +2 -2
- package/package.json +9 -5
- package/dist/types/core/hooks/useBusinessTypeSelection.d.ts +0 -2
|
@@ -1,1239 +1,6 @@
|
|
|
1
|
+
import { Translations } from './types';
|
|
1
2
|
/**
|
|
2
3
|
* FALLBACK_LOCALE - **MUST** match the locale string in the above import
|
|
3
4
|
*/
|
|
4
5
|
export declare const FALLBACK_LOCALE = "en-US";
|
|
5
|
-
export declare const defaultTranslation:
|
|
6
|
-
close: string;
|
|
7
|
-
individual: string; /**
|
|
8
|
-
* FALLBACK_LOCALE - **MUST** match the locale string in the above import
|
|
9
|
-
*/
|
|
10
|
-
payoutAccount: string;
|
|
11
|
-
payinAccount: string;
|
|
12
|
-
firstName: string;
|
|
13
|
-
lastName: string;
|
|
14
|
-
country: string;
|
|
15
|
-
street: string;
|
|
16
|
-
otherAddressInformation: string;
|
|
17
|
-
postalCode: string;
|
|
18
|
-
city: string;
|
|
19
|
-
cityTown: string;
|
|
20
|
-
state: string;
|
|
21
|
-
region: string;
|
|
22
|
-
provinceOrTerritory: string;
|
|
23
|
-
selectProvinceOrTerritory: string;
|
|
24
|
-
zipCode: string;
|
|
25
|
-
apartmentSuite: string;
|
|
26
|
-
apartmentSuiteOptional: string;
|
|
27
|
-
phoneNumber: string;
|
|
28
|
-
email: string;
|
|
29
|
-
birthdate: string;
|
|
30
|
-
code: string;
|
|
31
|
-
invalidEmail: string;
|
|
32
|
-
pleaseEnterAPhoneNumberPrefixedWithCountryCode: string;
|
|
33
|
-
invalidPhoneNumber: string;
|
|
34
|
-
birthDate: string;
|
|
35
|
-
idNumber: string;
|
|
36
|
-
selectState: string;
|
|
37
|
-
selectCountry: string;
|
|
38
|
-
search: string;
|
|
39
|
-
noOptionsFound: string;
|
|
40
|
-
SSNFormatUS: string;
|
|
41
|
-
SSNFormatUS9Digits: string;
|
|
42
|
-
SINFormatCA: string;
|
|
43
|
-
invalidFormat: string;
|
|
44
|
-
formatIsCorrect: string;
|
|
45
|
-
fieldIsRequired: string;
|
|
46
|
-
tooManyFiles: string;
|
|
47
|
-
duplicatedFiles: string;
|
|
48
|
-
unsupportedFiletype: string;
|
|
49
|
-
maximumFileSizeExceeded: string;
|
|
50
|
-
personalDetails: string;
|
|
51
|
-
invalidBirthDate: string;
|
|
52
|
-
address: string;
|
|
53
|
-
contactDetails: string;
|
|
54
|
-
uploadDocument: string;
|
|
55
|
-
individualDetails: string;
|
|
56
|
-
last4DigitsOfSocialSecurityNumber: string;
|
|
57
|
-
socialSecurityNumber: string;
|
|
58
|
-
socialInsuranceNumber: string;
|
|
59
|
-
codiceFiscale: string;
|
|
60
|
-
personnummer: string;
|
|
61
|
-
dni: string;
|
|
62
|
-
nie: string;
|
|
63
|
-
peselNumber: string;
|
|
64
|
-
detCentralePersonregister: string;
|
|
65
|
-
codNumericPersonal: string;
|
|
66
|
-
cadastroDePessoasFisicas: string;
|
|
67
|
-
invalidFormatExpects: string;
|
|
68
|
-
invalidFormatForAuPassportNumber: string;
|
|
69
|
-
invalidFormatForNZPassportNumber: string;
|
|
70
|
-
invalidFormatForAuDriversLicenseNumber: string;
|
|
71
|
-
invalidFormatForNZDriversLicenseNumber: string;
|
|
72
|
-
invalidFormatForAuDriversLicenseCardNumber: string;
|
|
73
|
-
invalidFormatForNZDriversLicenseCardNumber: string;
|
|
74
|
-
invalidFormatForHKPassportNumber: string;
|
|
75
|
-
invalidFormatForHKDriversLicenseNumber: string;
|
|
76
|
-
invalidFormatForHKIdentityCardNumber: string;
|
|
77
|
-
invalidFormatIdentityNumberBR: string;
|
|
78
|
-
invalidFormatIdentityNumberDK: string;
|
|
79
|
-
invalidFormatIdentityNumberCA: string;
|
|
80
|
-
invalidFormatIdentityNumberIT: string;
|
|
81
|
-
invalidFormatIdentityNumberPL: string;
|
|
82
|
-
invalidFormatIdentityNumberRO: string;
|
|
83
|
-
invalidFormatIdentityNumberES: string;
|
|
84
|
-
invalidFormatIdentityNumberSE: string;
|
|
85
|
-
invalidFormatIdentityNumberUS: string;
|
|
86
|
-
invalidFormatIdentityNumberUS9: string;
|
|
87
|
-
invalidFormatIdentityNumberSG: string;
|
|
88
|
-
invalidFormatIdentityNumberHK: string;
|
|
89
|
-
invalidFormatBankStatementDescription: string;
|
|
90
|
-
residencyCountry: string;
|
|
91
|
-
stateOrProvince: string;
|
|
92
|
-
selectStateOrProvince: string;
|
|
93
|
-
dragYourFilesHereOr: string;
|
|
94
|
-
browse: string;
|
|
95
|
-
supports: string;
|
|
96
|
-
complete: string;
|
|
97
|
-
summary: string;
|
|
98
|
-
selectDocument: string;
|
|
99
|
-
passport: string;
|
|
100
|
-
passportNumber: string;
|
|
101
|
-
id: string;
|
|
102
|
-
driversLicense: string;
|
|
103
|
-
issuerState: string;
|
|
104
|
-
licenseNumber: string;
|
|
105
|
-
driverLicense: string;
|
|
106
|
-
licenseCardNumber: string;
|
|
107
|
-
licenceVersionNumber: string;
|
|
108
|
-
documents: string;
|
|
109
|
-
idDocument: string;
|
|
110
|
-
documentType: string;
|
|
111
|
-
frontPage: string;
|
|
112
|
-
backPage: string;
|
|
113
|
-
fileName: string;
|
|
114
|
-
nationality: string;
|
|
115
|
-
dateOfIncorporation: string;
|
|
116
|
-
passportExpiryDate: string;
|
|
117
|
-
proofOfNationality: string;
|
|
118
|
-
identityNumberExempt: string;
|
|
119
|
-
iDontHaveAVatNumber: string;
|
|
120
|
-
iDontHaveATaxId: string;
|
|
121
|
-
iDontHaveARegistrationNumber: string;
|
|
122
|
-
identityNumberExempt__US: string;
|
|
123
|
-
identityNumberExempt__CA: string;
|
|
124
|
-
uploadDocumentForSsn: string;
|
|
125
|
-
uploadDocumentForNric: string;
|
|
126
|
-
operationalAddressHeader: string;
|
|
127
|
-
operationalAddressHeaderDescription: string;
|
|
128
|
-
operationalAddressIsSame: string;
|
|
129
|
-
operationalAddressIsSameItemName: string;
|
|
130
|
-
operationalAddressIsNotSameItemName: string;
|
|
131
|
-
verifyPrefilledInfoIsCorrect: string;
|
|
132
|
-
legalStructureHeader: string;
|
|
133
|
-
whatTypeOfCompanyDoYouHave: string;
|
|
134
|
-
privateCompanyTitle: string;
|
|
135
|
-
privateCompanyDescription: string;
|
|
136
|
-
publicCompanyTitle: string;
|
|
137
|
-
publicCompanyDescription: string;
|
|
138
|
-
partnershipIncorporated: string;
|
|
139
|
-
partnershipUnincorporated: string;
|
|
140
|
-
partnershipIncorporatedDescription: string;
|
|
141
|
-
partnershipUnincorporatedDescription: string;
|
|
142
|
-
partnershipIncorporatedNewEntryFlowDescription: string;
|
|
143
|
-
partnershipUnincorporatedNewEntryFlowDescription: string;
|
|
144
|
-
nonProfitOrCharitableOrgTitle: string;
|
|
145
|
-
nonProfitOrCharitableOrgDescription: string;
|
|
146
|
-
governmentalOrganizationTitle: string;
|
|
147
|
-
governmentalOrganizationDescription: string;
|
|
148
|
-
associationIncorporated: string;
|
|
149
|
-
associationIncorporatedDescription: string;
|
|
150
|
-
jobTitle: string;
|
|
151
|
-
legalStructure: string;
|
|
152
|
-
entityType: string;
|
|
153
|
-
registrationDetails: string;
|
|
154
|
-
registeredAddress: string;
|
|
155
|
-
registrationAddress: string;
|
|
156
|
-
registeredAddressHeaderDescription: string;
|
|
157
|
-
registeredAddressHeaderDescription__NL: string;
|
|
158
|
-
registeredAddressHeaderDescription__US: string;
|
|
159
|
-
registeredAddressTrustHeaderDescription: string;
|
|
160
|
-
operationalAddress: string;
|
|
161
|
-
provideRegistrationDetails: string;
|
|
162
|
-
companyStructure: string;
|
|
163
|
-
providePersonalAddress: string;
|
|
164
|
-
provideContactDetails: string;
|
|
165
|
-
correctErrorsResubmit: string;
|
|
166
|
-
registrationDocument: string;
|
|
167
|
-
taxDocument: string;
|
|
168
|
-
companyDetails: string;
|
|
169
|
-
invalidRegistrationNumber: string;
|
|
170
|
-
tradingName: string;
|
|
171
|
-
chamberOfCommerceRegistrationNumber: string;
|
|
172
|
-
taxId: string;
|
|
173
|
-
exemptedFromTax: string;
|
|
174
|
-
doNotHaveTaxIdNumber: string;
|
|
175
|
-
doNotHaveEIN: string;
|
|
176
|
-
doNotHaveFirmenbuchnummer: string;
|
|
177
|
-
doNotHaveOrganisationsnummer: string;
|
|
178
|
-
doNotHaveYTunnus: string;
|
|
179
|
-
doNotHaveLtRegistrationNumber: string;
|
|
180
|
-
doNotHaveLuRegistrationNumber: string;
|
|
181
|
-
doNotHaveChRegistrationNumber: string;
|
|
182
|
-
doNotHaveHandelsregisternummer: string;
|
|
183
|
-
doNotHaveRegonKrsNumber: string;
|
|
184
|
-
taxIdAbsenceReason: string;
|
|
185
|
-
vatNumberExempted: string;
|
|
186
|
-
vatAbsenceReason: string;
|
|
187
|
-
belowTaxThreshold: string;
|
|
188
|
-
industryExemption: string;
|
|
189
|
-
validationPleaseEnterAValidRegistrationNumber: string;
|
|
190
|
-
validationPleaseEnterAValidRegistrationNumberWithFormat: string;
|
|
191
|
-
validationPleaseEnterAValidVatNumber: string;
|
|
192
|
-
validationPleaseEnterAValidIdNumberWithFormat: string;
|
|
193
|
-
validationPleaseEnterAValidVatNumberWithFormat: string;
|
|
194
|
-
validationPleaseEnterAValidTaxIdNumberWithFormat: string;
|
|
195
|
-
validationPleaseEnterAValidEINWithFormat: string;
|
|
196
|
-
validationPleaseEnterAValidTaxIdNumber: string;
|
|
197
|
-
validationPleaseEnterAValidIRDNumber: string;
|
|
198
|
-
aValidAbnShouldBe11Digits: string;
|
|
199
|
-
aValidUenOrGstShouldBe9To10Characters: string;
|
|
200
|
-
aValidBrnShouldBe8Digits: string;
|
|
201
|
-
validationPleaseEnterAValidUen: string;
|
|
202
|
-
validationPleaseEnterAValidIban: string;
|
|
203
|
-
yourIbanShouldBeginWith_: string;
|
|
204
|
-
validation8Or11Characters: string;
|
|
205
|
-
validationCharacters: string;
|
|
206
|
-
validationDigitsBetween: string;
|
|
207
|
-
validationDigits: string;
|
|
208
|
-
enterValidRegistrationNumber: string;
|
|
209
|
-
stockExchangeMICHelper: string;
|
|
210
|
-
stockISINHelper: string;
|
|
211
|
-
validationPleaseEnterAValidMarketIdentifier: string;
|
|
212
|
-
validationPleaseEnterAValidStockISIN: string;
|
|
213
|
-
shareholderDocument: string;
|
|
214
|
-
role: string;
|
|
215
|
-
selectAllTheRolesThatThisDecisionMakerHolds: string;
|
|
216
|
-
selectTheApplicableRoles: string;
|
|
217
|
-
back: string;
|
|
218
|
-
next: string;
|
|
219
|
-
submit: string;
|
|
220
|
-
submitSuccessful: string;
|
|
221
|
-
submitFailed: string;
|
|
222
|
-
submitReviewOfYourData: string;
|
|
223
|
-
completeReview: string;
|
|
224
|
-
submitReview: string;
|
|
225
|
-
undoWithTimer: string;
|
|
226
|
-
removing: string;
|
|
227
|
-
cantSetUpAcccount: string;
|
|
228
|
-
accountCantBeSetUp: string;
|
|
229
|
-
pleaseNote: string;
|
|
230
|
-
byClickingSubmitReview: string;
|
|
231
|
-
nameAndCountry: string;
|
|
232
|
-
companyCountry: string;
|
|
233
|
-
accountDetailsDescription: string;
|
|
234
|
-
provideFewDetailsAboutYourself: string;
|
|
235
|
-
provideDetails: string;
|
|
236
|
-
payoutAccountsDescription: string;
|
|
237
|
-
payoutAccountsDescriptionReview: string;
|
|
238
|
-
payinAccountsDescription: string;
|
|
239
|
-
addExtraPayoutAccount: string;
|
|
240
|
-
addExtraPayinAccount: string;
|
|
241
|
-
payoutDetails: string;
|
|
242
|
-
payinDetails: string;
|
|
243
|
-
addPayoutAccount: string;
|
|
244
|
-
addPayinAccount: string;
|
|
245
|
-
failedToFetchPayoutAccount: string;
|
|
246
|
-
failedToDeletePayoutAccount: string;
|
|
247
|
-
transferInstrumentDeleted: string;
|
|
248
|
-
toCompleteProcessReviewAndSignOfficialDocumentation: string;
|
|
249
|
-
sign: string;
|
|
250
|
-
signer: string;
|
|
251
|
-
selectSigner: string;
|
|
252
|
-
pciSignedSuccessfully: string;
|
|
253
|
-
pciSignFailed: string;
|
|
254
|
-
byClickingSignIAcknowledgeAndAgree: string;
|
|
255
|
-
acknowledgePciRequirements: string;
|
|
256
|
-
basedOnTheAboveSignatory: string;
|
|
257
|
-
failedToGetPciStatus: string;
|
|
258
|
-
failedToGetPciTemplate: string;
|
|
259
|
-
failedToGetPciTemplateInSelectedLanguageFallbackToEn: string;
|
|
260
|
-
failedToDownloadPci: string;
|
|
261
|
-
signServiceAgreement: string;
|
|
262
|
-
signedDocuments: string;
|
|
263
|
-
paymentProcessingTerms: string;
|
|
264
|
-
accountHolderTerms: string;
|
|
265
|
-
capitalUserTerms: string;
|
|
266
|
-
pccr: string;
|
|
267
|
-
businessAccountTerms: string;
|
|
268
|
-
cardUserTerms: string;
|
|
269
|
-
franchiseesTAndCs: string;
|
|
270
|
-
pciDssQuestionnaire: string;
|
|
271
|
-
serviceAgreementSignedSuccessfully: string;
|
|
272
|
-
serviceAgreementSignFailed: string;
|
|
273
|
-
failedToGetServiceAgreementStatus: string;
|
|
274
|
-
failedToGetServiceAgreement: string;
|
|
275
|
-
failedToGetServiceAgreementInSelectedLanguageFallbackToEn: string;
|
|
276
|
-
iHaveReadAndIAcceptTheseTerms: string;
|
|
277
|
-
verified: string;
|
|
278
|
-
signed: string;
|
|
279
|
-
invalidRole: string;
|
|
280
|
-
unableToVerifyTheIdNumber: string;
|
|
281
|
-
download: string;
|
|
282
|
-
downloadACopy: string;
|
|
283
|
-
accountHolder: string;
|
|
284
|
-
accountHolderDescriptionCompany: string;
|
|
285
|
-
accountHolderDescriptionIndividual: string;
|
|
286
|
-
accountHolderDescriptionSoleProp: string;
|
|
287
|
-
bankAccountToHaveSameNameAsTrust: string;
|
|
288
|
-
bankAccountHasToBeInYourName: string;
|
|
289
|
-
orSoleProprietorshipName: string;
|
|
290
|
-
bankAccountHasToBeInYourCompanyName: string;
|
|
291
|
-
bankCountry: string;
|
|
292
|
-
bankAccountCountry: string;
|
|
293
|
-
currency: string;
|
|
294
|
-
currencyCode: string;
|
|
295
|
-
currencyPlaceholder: string;
|
|
296
|
-
bankAccountNumber: string;
|
|
297
|
-
iban: string;
|
|
298
|
-
swiftCode: string;
|
|
299
|
-
bic: string;
|
|
300
|
-
bicSwift: string;
|
|
301
|
-
bsbNumber: string;
|
|
302
|
-
branchCode: string;
|
|
303
|
-
transitNumber: string;
|
|
304
|
-
listitemVoidedChequeBankLetterBankStatementOnline: string;
|
|
305
|
-
instructionNumber: string;
|
|
306
|
-
institutionNumber: string;
|
|
307
|
-
sortCode: string;
|
|
308
|
-
bankCityTown: string;
|
|
309
|
-
clearingCode: string;
|
|
310
|
-
bankCode: string;
|
|
311
|
-
bankName: string;
|
|
312
|
-
achRoutingNumber: string;
|
|
313
|
-
decisionMaker: string;
|
|
314
|
-
decisionMakerDescription: string;
|
|
315
|
-
owner: string;
|
|
316
|
-
ownerDescription: string;
|
|
317
|
-
controllingPerson: string;
|
|
318
|
-
controllingPersonDescription: string;
|
|
319
|
-
signatory: string;
|
|
320
|
-
signatoryDescription: string;
|
|
321
|
-
director: string;
|
|
322
|
-
directorDescription: string;
|
|
323
|
-
provideAllDirectors: string;
|
|
324
|
-
addDecisionMaker: string;
|
|
325
|
-
decisionMakers: string;
|
|
326
|
-
goToIntroduction: string;
|
|
327
|
-
goToOverview: string;
|
|
328
|
-
goToOverviewFromIntroduction: string;
|
|
329
|
-
saveAndGoToOverview: string;
|
|
330
|
-
pleaseEnsureTheFollowing: string;
|
|
331
|
-
edit: string;
|
|
332
|
-
remove: string;
|
|
333
|
-
toggleAssociationMenu: string;
|
|
334
|
-
editDecisionMakerDetails: string;
|
|
335
|
-
removeDecisionMaker: string;
|
|
336
|
-
verifyDecisionMakerDetails: string;
|
|
337
|
-
goToMenu: string;
|
|
338
|
-
confirm: string;
|
|
339
|
-
goToDecisionMakers: string;
|
|
340
|
-
theSubmitWasSuccessful: string;
|
|
341
|
-
thereWasAnErrorTryAgain: string;
|
|
342
|
-
stateIssuedProofOfIdentityCard: string;
|
|
343
|
-
proofOfResidence: string;
|
|
344
|
-
proofOfNationalId: string;
|
|
345
|
-
backToTaskList: string;
|
|
346
|
-
proofOfResidenceDocumentTypeLabel: string;
|
|
347
|
-
utilityBill: string;
|
|
348
|
-
governmentIssuedCorrespondence: string;
|
|
349
|
-
taxationDocument: string;
|
|
350
|
-
extractFromMunicipalPersonalRecordsDatabase: string;
|
|
351
|
-
salarySlip: string;
|
|
352
|
-
mortgageStatement: string;
|
|
353
|
-
certificateOfVoterRegistration: string;
|
|
354
|
-
businessAccountDetailsDescription: string;
|
|
355
|
-
businessAccountDetailsDescriptionReview: string;
|
|
356
|
-
documentAddressedToName: string;
|
|
357
|
-
showAddressStateCountry: string;
|
|
358
|
-
dateOnDocumentNoOlderThanXMonths: string;
|
|
359
|
-
fullDocumentVisibleWithReadableText: string;
|
|
360
|
-
documentCannotBeDamaged: string;
|
|
361
|
-
verify: string;
|
|
362
|
-
add: string;
|
|
363
|
-
idUploadDocumentSubtitle: string;
|
|
364
|
-
documentNotExpiredOrDamaged: string;
|
|
365
|
-
weAccept: string;
|
|
366
|
-
includeFrontAndBack: string;
|
|
367
|
-
fullDocumentVisible: string;
|
|
368
|
-
imagesInColor: string;
|
|
369
|
-
datePlaceholder: string;
|
|
370
|
-
onlyEnterNormalCharacters: string;
|
|
371
|
-
verifyCompanyInfoIsUpToDate: string;
|
|
372
|
-
failedToFetchRelevantDocuments: string;
|
|
373
|
-
failedToFetchRelevantAccounts: string;
|
|
374
|
-
processing: string;
|
|
375
|
-
inReview: string;
|
|
376
|
-
unsuccessful: string;
|
|
377
|
-
invalidDateOfBirth: string;
|
|
378
|
-
invalidDateOfIncorporation: string;
|
|
379
|
-
successfullyUpdatedDetails: string;
|
|
380
|
-
failedToUpdateDetails: string;
|
|
381
|
-
successfullyVerifiedIdNumber: string;
|
|
382
|
-
failedFetchingDecisionMaker: string;
|
|
383
|
-
fileUpload: string;
|
|
384
|
-
documentRequirements: string;
|
|
385
|
-
bankAccountNameIndividual: string;
|
|
386
|
-
bankAccountNameOrganization: string;
|
|
387
|
-
bankAccountNameWithSoleProprietor: string;
|
|
388
|
-
bankAccountNameWithTrust: string;
|
|
389
|
-
bankAccountNameWithTrust_US: string;
|
|
390
|
-
bankDocument: string;
|
|
391
|
-
bankDocumentHeader: string;
|
|
392
|
-
bankDocumentHeaderOptional: string;
|
|
393
|
-
bankDocumentDescription: string;
|
|
394
|
-
bankDocumentFileDescription: string;
|
|
395
|
-
accountNumberOrIbanVisible: string;
|
|
396
|
-
accountNumberVisible: string;
|
|
397
|
-
routingNumberVisible: string;
|
|
398
|
-
showsCountryOfBankAccount: string;
|
|
399
|
-
hasBankStampOrBankSignature: string;
|
|
400
|
-
hasToBeOfficialDocumentFromBank: string;
|
|
401
|
-
issuedInTheLastXMonths: string;
|
|
402
|
-
bankAccountVerification: string;
|
|
403
|
-
bankStatementDocument: string;
|
|
404
|
-
requirements: string;
|
|
405
|
-
ifDocumentMoreThan12months: string;
|
|
406
|
-
whyDoINeedToFillInThisInformation: string;
|
|
407
|
-
reasonForFillingCompanyRegistrationDetails: string;
|
|
408
|
-
reasonForFillingCompanyAddressDetails: string;
|
|
409
|
-
reasonForFillingIndividualPersonalDetails: string;
|
|
410
|
-
reasonForFillingIndividualAddressDetails: string;
|
|
411
|
-
reasonForFillingPayoutAccountDetails: string;
|
|
412
|
-
reasonForFillingPayoutDetails: string;
|
|
413
|
-
whatIsTheDifferenceBetweenTheseRoles: string;
|
|
414
|
-
ownerGuideDescription: string;
|
|
415
|
-
controllingPersonGuideDescription: string;
|
|
416
|
-
signatoryGuideDescription: string;
|
|
417
|
-
directorGuideDescription: string;
|
|
418
|
-
someoneAppointedToManageACompanysBusinessAndAffairs: string;
|
|
419
|
-
whatIfDocumentIsMoreThan12MonthsOld: string;
|
|
420
|
-
depositSlip: string;
|
|
421
|
-
screenshotOfOnlineBankingEnviroment: string;
|
|
422
|
-
officialEmailOrALetterFromYourBank: string;
|
|
423
|
-
check: string;
|
|
424
|
-
releveDidentiteBancaire: string;
|
|
425
|
-
successFullyRemovedDecisionMaker: string;
|
|
426
|
-
failedToRemoveDecisionMaker: string;
|
|
427
|
-
chamberOfCommerceExtract: string;
|
|
428
|
-
taxNumberCorporateNumber: string;
|
|
429
|
-
companyLegalName: string;
|
|
430
|
-
companyName: string;
|
|
431
|
-
companyType: string;
|
|
432
|
-
taxReferenceNumber: string;
|
|
433
|
-
SST: string;
|
|
434
|
-
companyProfile: string;
|
|
435
|
-
companyNumber: string;
|
|
436
|
-
RfcDocument: string;
|
|
437
|
-
RFC: string;
|
|
438
|
-
companyRegistrationDocument: string;
|
|
439
|
-
businessName: string;
|
|
440
|
-
typeOfCompany: string;
|
|
441
|
-
typeOfIdentity: string;
|
|
442
|
-
typeOfIdentitySubtitle: string;
|
|
443
|
-
CNPJ: string;
|
|
444
|
-
businessNumber: string;
|
|
445
|
-
doingBusinessAs: string;
|
|
446
|
-
taxIdentificationNumber: string;
|
|
447
|
-
irdDocument: string;
|
|
448
|
-
irdNumber: string;
|
|
449
|
-
australianBusinessNumberAbn: string;
|
|
450
|
-
australianBusinessNumberAcn: string;
|
|
451
|
-
"NZBN/NCN": string;
|
|
452
|
-
NZBN: string;
|
|
453
|
-
companyNumberNZ: string;
|
|
454
|
-
enterpriseNumber: string;
|
|
455
|
-
NIP: string;
|
|
456
|
-
NIPC: string;
|
|
457
|
-
numerodeIVA: string;
|
|
458
|
-
NIF: string;
|
|
459
|
-
uen: string;
|
|
460
|
-
gst: string;
|
|
461
|
-
iDoNotHaveGst: string;
|
|
462
|
-
number: string;
|
|
463
|
-
nric: string;
|
|
464
|
-
hkid: string;
|
|
465
|
-
NIFdeIVA: string;
|
|
466
|
-
partitaIVA: string;
|
|
467
|
-
organisationsnummer: string;
|
|
468
|
-
momsregistreringsnummer: string;
|
|
469
|
-
vatNummerMomsregistreringsnummerOrMomsnummer: string;
|
|
470
|
-
CCIAA: string;
|
|
471
|
-
"UST-ID": string;
|
|
472
|
-
DIC: string;
|
|
473
|
-
ICO: string;
|
|
474
|
-
"USt-IdNr": string;
|
|
475
|
-
handelsregisternummer: string;
|
|
476
|
-
NumeroDeTVA: string;
|
|
477
|
-
organisasjonsnummer: string;
|
|
478
|
-
mvanummer: string;
|
|
479
|
-
verificationErrorMessage: string;
|
|
480
|
-
remediationFormErrorMessage: string;
|
|
481
|
-
youHaveUnsavedChanges: string;
|
|
482
|
-
areYouSureToLeave: string;
|
|
483
|
-
cancel: string;
|
|
484
|
-
"save&Leave": string;
|
|
485
|
-
leave: string;
|
|
486
|
-
taxIdNumber: string;
|
|
487
|
-
companyRegistrationNumber: string;
|
|
488
|
-
companyRegistrationNumber__HK: string;
|
|
489
|
-
euVatNumber: string;
|
|
490
|
-
vatNumber: string;
|
|
491
|
-
vatRegistrationNumber: string;
|
|
492
|
-
regonKrsNumber: string;
|
|
493
|
-
registrationNumber: string;
|
|
494
|
-
identificationNumber: string;
|
|
495
|
-
whichTypeOfRegistrationNumberDoYouHave: string;
|
|
496
|
-
whichTypeOfIdNumberDoYouHave: string;
|
|
497
|
-
whichTypeOfTaxIdNumberDoYouHave: string;
|
|
498
|
-
regon: string;
|
|
499
|
-
krsNumber: string;
|
|
500
|
-
registrationNumber__nonProfit__FR: string;
|
|
501
|
-
rnaNumber: string;
|
|
502
|
-
siret: string;
|
|
503
|
-
registrationNumber__PR: string;
|
|
504
|
-
employerIdentificationNumber: string;
|
|
505
|
-
charityNumber: string;
|
|
506
|
-
firmenbuchnummer: string;
|
|
507
|
-
firmenbuchnummerOrZVR: string;
|
|
508
|
-
zentralesVereinsregisterId: string;
|
|
509
|
-
"stepsX/YofForm": string;
|
|
510
|
-
no: string;
|
|
511
|
-
yes: string;
|
|
512
|
-
informationCouldNotBeSubmitted: string;
|
|
513
|
-
fieldHasUnsupportedFormats: string;
|
|
514
|
-
updateTheInformation: string;
|
|
515
|
-
andResubmit: string;
|
|
516
|
-
someFieldsHaveUnsupportedFormatedUpdateInfoAndResubmit: string;
|
|
517
|
-
trustType: string;
|
|
518
|
-
businessTrust: string;
|
|
519
|
-
cashManagementTrust: string;
|
|
520
|
-
charitableTrust: string;
|
|
521
|
-
corporateUnitTrust: string;
|
|
522
|
-
deceasedEstate: string;
|
|
523
|
-
discretionaryInvestmentTrust: string;
|
|
524
|
-
discretionaryServicesManagementTrust: string;
|
|
525
|
-
discretionaryTradingTrust: string;
|
|
526
|
-
discretionaryTrust: string;
|
|
527
|
-
familyTrust: string;
|
|
528
|
-
firstHomeSaverAccountsTrust: string;
|
|
529
|
-
fixedTrust: string;
|
|
530
|
-
fixedUnitTrust: string;
|
|
531
|
-
hybridTrust: string;
|
|
532
|
-
listedPublicUnitTrust: string;
|
|
533
|
-
otherTrust: string;
|
|
534
|
-
pooledSuperannuationTrust: string;
|
|
535
|
-
publicTradingTrust: string;
|
|
536
|
-
unlistedPublicUnitTrust: string;
|
|
537
|
-
countryOfEstablishment: string;
|
|
538
|
-
nameOfTrustAgreement: string;
|
|
539
|
-
typeOfTrustAgreement: string;
|
|
540
|
-
objectOfCharitableTrust: string;
|
|
541
|
-
objectOfTrust: string;
|
|
542
|
-
pleaseProvideThePurposeOfCharitableTrust: string;
|
|
543
|
-
weFoundTheFollowingIssues: string;
|
|
544
|
-
reviewTheInformationBelowAndCorrectMistakesOr: string;
|
|
545
|
-
uploadTheRequestedDocuments: string;
|
|
546
|
-
uploadTheFollowingDocuments: string;
|
|
547
|
-
uploadDocumentAndDocument: string;
|
|
548
|
-
thenResubmit: string;
|
|
549
|
-
isTrustOperationAddressSame: string;
|
|
550
|
-
trustDetails: string;
|
|
551
|
-
trustDetailsDescription: string;
|
|
552
|
-
trustDocumentDescription: string;
|
|
553
|
-
nameOfTrust: string;
|
|
554
|
-
fullLegalNamesOfAnyAppointers: string;
|
|
555
|
-
dateDeedWasSigned: string;
|
|
556
|
-
settlerDetailsIncl: string;
|
|
557
|
-
trusteeDetailsIncl: string;
|
|
558
|
-
beneficiariesDetailsIncl: string;
|
|
559
|
-
trustMembers: string;
|
|
560
|
-
trustMembersDescription: string;
|
|
561
|
-
trustee: string;
|
|
562
|
-
obligatory: string;
|
|
563
|
-
requiredIfApplicable: string;
|
|
564
|
-
provideAtLeastOneSettlor: string;
|
|
565
|
-
provideAtLeastOneProtector: string;
|
|
566
|
-
provideAllBeneficiaries: string;
|
|
567
|
-
provideAllTrustees: string;
|
|
568
|
-
provideAllControllingPersons: string;
|
|
569
|
-
settlorGuideDescription: string;
|
|
570
|
-
trusteeGuideDescription: string;
|
|
571
|
-
protectorGuideDescription: string;
|
|
572
|
-
beneficiaryGuideDescription: string;
|
|
573
|
-
uboThroughControlGuideDescription: string;
|
|
574
|
-
uboThroughOwnershipGuideDescription: string;
|
|
575
|
-
beneficiary: string;
|
|
576
|
-
protector: string;
|
|
577
|
-
settlor: string;
|
|
578
|
-
ultimateBeneficialOwner: string;
|
|
579
|
-
addTrustMember: string;
|
|
580
|
-
personAppointmentUnderTrustInstrument: string;
|
|
581
|
-
legalOwnerOfProperty: string;
|
|
582
|
-
entityEstablishingTrust: string;
|
|
583
|
-
entityOwning25OrMoreOfTrust: string;
|
|
584
|
-
controllingPersonOfTrust: string;
|
|
585
|
-
failedToFetchTrustDetails: string;
|
|
586
|
-
failedToFetchTrustMemberDetails: string;
|
|
587
|
-
failedToFetchLegalEntityDetails: string;
|
|
588
|
-
editTrustMember: string;
|
|
589
|
-
removeTrustMember: string;
|
|
590
|
-
successFullyRemovedTrustMember: string;
|
|
591
|
-
failedToRemoveTrustMember: string;
|
|
592
|
-
editEntityDetails: string;
|
|
593
|
-
editOwnerOfTrustMember: string;
|
|
594
|
-
editEntityOwner: string;
|
|
595
|
-
addEntityOwner: string;
|
|
596
|
-
addOwnerToTrustMember: string;
|
|
597
|
-
whatTypeOfYourMembersEntity: string;
|
|
598
|
-
naturalPersonTitle: string;
|
|
599
|
-
naturalPersonDescription: string;
|
|
600
|
-
businessEntityTitle: string;
|
|
601
|
-
businessEntityDescription: string;
|
|
602
|
-
roleAndEntityType: string;
|
|
603
|
-
helpUsVerifyCompany: string;
|
|
604
|
-
providePersonalDetailsOfOwner: string;
|
|
605
|
-
memberDetails: string;
|
|
606
|
-
good: string;
|
|
607
|
-
notCutOff: string;
|
|
608
|
-
notBlurry: string;
|
|
609
|
-
notExpired: string;
|
|
610
|
-
noGlare: string;
|
|
611
|
-
selectDocumentType: string;
|
|
612
|
-
registrationDocumentSubTitle: string;
|
|
613
|
-
documentIssuedByGovernmentAuthority: string;
|
|
614
|
-
uploadTaxationDocument: string;
|
|
615
|
-
containsNameOfCompany: string;
|
|
616
|
-
documentShowsTaxIdOfCompany: string;
|
|
617
|
-
issuedByTheTaxAuthority: string;
|
|
618
|
-
providePageWithPhotoAndCode: string;
|
|
619
|
-
constitutionalDocument: string;
|
|
620
|
-
constitutionalDocument__header: string;
|
|
621
|
-
constitutionalDocument__headerDescription: string;
|
|
622
|
-
solePropDetails: string;
|
|
623
|
-
soleProprietorDetails: string;
|
|
624
|
-
soleProprietorshipDetails: string;
|
|
625
|
-
selectAccountHolder: string;
|
|
626
|
-
nameOfBankAccountHolder: string;
|
|
627
|
-
whatBestDescribesYourBusinessSetup: string;
|
|
628
|
-
whichLegalArrangementDoesYourBusinessHave: string;
|
|
629
|
-
sorryWeCantSetUpAnAccountForYou: string;
|
|
630
|
-
changeYourBusinessSetup: string;
|
|
631
|
-
someInformationWillNotBeSaved: string;
|
|
632
|
-
yesChange: string;
|
|
633
|
-
youAreNotSoleProprietorAndUseBankAccount: string;
|
|
634
|
-
soleProprietorship: string;
|
|
635
|
-
youAreRegisteredSoleProprietorAndUseBankAccount: string;
|
|
636
|
-
company: string;
|
|
637
|
-
youUseCompanyBankAccount: string;
|
|
638
|
-
trust: string;
|
|
639
|
-
trustPartnershipOrAssociation: string;
|
|
640
|
-
partnershipOrAssociation: string;
|
|
641
|
-
whatTypeOfTrusteeAreYou: string;
|
|
642
|
-
youAreIndividualOrCompanyAndUseBankAccountInNameOfTrustPartnershipOrAssociation: string;
|
|
643
|
-
youAreIndividualOrCompanyAndUseBankAccountInNameOfPartnershipOrAssociation: string;
|
|
644
|
-
individualTrustee: string;
|
|
645
|
-
companyTrustee: string;
|
|
646
|
-
association: string;
|
|
647
|
-
partnership: string;
|
|
648
|
-
youAreTrusteeManagingTheTrustForBeneficiaries: string;
|
|
649
|
-
jointlyOwnedBusinessWhereTwoOrMorePeopleOperateAndShareProfits: string;
|
|
650
|
-
groupOfPeopleActingTogetherForNonCommercialPurpose: string;
|
|
651
|
-
ourFinancialServicesAreNotAvailableYetForPartnershipsAndAssociations: string;
|
|
652
|
-
needHelpYouCanAlwaysReachOutToCustomerSupport: string;
|
|
653
|
-
myName: string;
|
|
654
|
-
setUpYourAccount: string;
|
|
655
|
-
yourBusinessSetup: string;
|
|
656
|
-
myNameDescription: string;
|
|
657
|
-
mySoleProprietorName: string;
|
|
658
|
-
mySoleProprietorNameDescription: string;
|
|
659
|
-
theCompanyIWorkFor: string;
|
|
660
|
-
theCompanyIWorkForDescription: string;
|
|
661
|
-
aTrust: string;
|
|
662
|
-
aTrustDescription: string;
|
|
663
|
-
aPartnership: string;
|
|
664
|
-
aPartnershipDescription: string;
|
|
665
|
-
anAssociation: string;
|
|
666
|
-
anAssociationDescription: string;
|
|
667
|
-
legalNameOfSoleProprietor: string;
|
|
668
|
-
legalNameOfSoleProprietorship: string;
|
|
669
|
-
letUsKnowTheBankAccountToSendReceiveFunds: string;
|
|
670
|
-
bankAccount: string;
|
|
671
|
-
bankAccountDetails: string;
|
|
672
|
-
addExtraBankAccount: string;
|
|
673
|
-
addAndVerifyYourBankDetails: string;
|
|
674
|
-
failedToFetchSoleProp: string;
|
|
675
|
-
uniqueIdentificationCode: string;
|
|
676
|
-
identifikacionenNomerDDS: string;
|
|
677
|
-
MBS: string;
|
|
678
|
-
MBO: string;
|
|
679
|
-
PDVIdBrojOIB: string;
|
|
680
|
-
cyRegistrationNumber: string;
|
|
681
|
-
arithmosEngraphes: string;
|
|
682
|
-
"CVR-nummer": string;
|
|
683
|
-
btwNummer: string;
|
|
684
|
-
momsregistreringsnummerOrStamregister: string;
|
|
685
|
-
momsregistreringsnummerCVR: string;
|
|
686
|
-
stamregister: string;
|
|
687
|
-
registrikood: string;
|
|
688
|
-
kaibemaksukohustuslaseNumber: string;
|
|
689
|
-
YTunnus: string;
|
|
690
|
-
arvonlisaveronumeroMervardesskattenummer: string;
|
|
691
|
-
"GEMI-number": string;
|
|
692
|
-
grTaxId: string;
|
|
693
|
-
huRegistrationNumber: string;
|
|
694
|
-
huTaxId: string;
|
|
695
|
-
lvRegistrationNumber: string;
|
|
696
|
-
lvTaxId: string;
|
|
697
|
-
ltRegistrationNumber: string;
|
|
698
|
-
mcRegistrationNumberSoleProp: string;
|
|
699
|
-
PVMmoketojoKodas: string;
|
|
700
|
-
luRegistrationNumber: string;
|
|
701
|
-
numeroDIdentificationALATaxe: string;
|
|
702
|
-
numarOrdineRegistrulComertului: string;
|
|
703
|
-
codulDeIdentificareFiscala: string;
|
|
704
|
-
skRegistrationNumber: string;
|
|
705
|
-
skTaxId: string;
|
|
706
|
-
siRegistrationNumber: string;
|
|
707
|
-
siTaxId: string;
|
|
708
|
-
chRegistrationNumber: string;
|
|
709
|
-
mcRegistrationNumber: string;
|
|
710
|
-
liRegistrationNumber: string;
|
|
711
|
-
Mehrwertsteuernummer: string;
|
|
712
|
-
enterNDigitsForExample: string;
|
|
713
|
-
enterNCharactersForExample: string;
|
|
714
|
-
enterLastNDigitsForExample: string;
|
|
715
|
-
enterXToYDigitsForExample: string;
|
|
716
|
-
enterXOrYDigitsForExample: string;
|
|
717
|
-
enterXToYCharactersForExample: string;
|
|
718
|
-
enterXOrYCharactersForExample: string;
|
|
719
|
-
enterXToYCharactersWithAMixForExample: string;
|
|
720
|
-
enterAMaximumOfNDigitsForExample: string;
|
|
721
|
-
enterAMaximumOfNMoreDigitsForExample: string;
|
|
722
|
-
enterAMaximumOfNCharactersForExample: string;
|
|
723
|
-
enterAMaximumOfNCharactersWithAMixForExample: string;
|
|
724
|
-
enterNCharactersWithAMixForExample: string;
|
|
725
|
-
enterNDigitsAndThen1LetterForExample: string;
|
|
726
|
-
enter1LetterAndThenNDigitsForExample: string;
|
|
727
|
-
enter1LetterAndThenXToYDigitsForExample: string;
|
|
728
|
-
enterNLettersAndThenXToYDigitsForExample: string;
|
|
729
|
-
enterXToYLettersAndThenWToZDigitsForExample: string;
|
|
730
|
-
enterTheRemainingNDigitsForExample: string;
|
|
731
|
-
enterTheRemainingXToYDigitsForExample: string;
|
|
732
|
-
enterTheRemainingNCharactersForExample: string;
|
|
733
|
-
enterTheRemainingXToYCharactersForExample: string;
|
|
734
|
-
enterTheRemainingNDigitsThenXToYLettersForExample: string;
|
|
735
|
-
provideAllOwners: string;
|
|
736
|
-
ifNoOwnersSpecifyControllingPersons: string;
|
|
737
|
-
provideAtLeastOneSignatory: string;
|
|
738
|
-
provideOneControllingPerson: string;
|
|
739
|
-
textToVerifyAccount: string;
|
|
740
|
-
theBankAccountHolderMustHaveTheSameNameAsYourCompany_: string;
|
|
741
|
-
theBankAccountHolderMustBeInYourName_: string;
|
|
742
|
-
weDoNotYetSupportInstantVerificationForBankAccountsIn_: string;
|
|
743
|
-
youCanOnlyUseABankAccountInTheCountryWhereYourCompanyIsRegistered: string;
|
|
744
|
-
youCanOnlyUseABankAccountInTheCountryWhereYouLive: string;
|
|
745
|
-
mobileApplication: string;
|
|
746
|
-
onOnlineBankingEnvironment: string;
|
|
747
|
-
dontHaveAccessOnlineBanking: string;
|
|
748
|
-
confirmPayoutManually: string;
|
|
749
|
-
noteManualTakesLonger: string;
|
|
750
|
-
accountVerification: string;
|
|
751
|
-
verifyWith: string;
|
|
752
|
-
documentVerification: string;
|
|
753
|
-
youHaveSuccessfullyProvidedTheIdDocument: string;
|
|
754
|
-
submitIdDocumentsAgain: string;
|
|
755
|
-
madeAMistake: string;
|
|
756
|
-
canNotCompleteInstantVerification: string;
|
|
757
|
-
goBackAndProvideDocumentScans: string;
|
|
758
|
-
identityCard: string;
|
|
759
|
-
uploadOneOfTheFollowing: string;
|
|
760
|
-
uploadOneOfTheseDocuments: string;
|
|
761
|
-
documentIssuedWithinLastYear: string;
|
|
762
|
-
learnMore: string;
|
|
763
|
-
doingBusinessAsNameFiling: string;
|
|
764
|
-
doingBusinessAsNameFiling__FR: string;
|
|
765
|
-
doingBusinessAsNameFiling__US: string;
|
|
766
|
-
businessRegistrationDocument__FR: string;
|
|
767
|
-
taxFiling: string;
|
|
768
|
-
taxFiling__US: string;
|
|
769
|
-
einVerificationLetter: string;
|
|
770
|
-
areYouACompany: string;
|
|
771
|
-
singingUpAsIndividualButLooksLikeYouAreACompany: string;
|
|
772
|
-
wouldYouLikeToSignUpAsCompanyInstead: string;
|
|
773
|
-
areYouAnIndividual: string;
|
|
774
|
-
singingUpAsCompanyButLooksLikeYouAreAnIndividual: string;
|
|
775
|
-
wouldYouLikeToSignUpAsIndividualInstead: string;
|
|
776
|
-
continue: string;
|
|
777
|
-
noGoBack: string;
|
|
778
|
-
continueCompany: string;
|
|
779
|
-
continueIndividual: string;
|
|
780
|
-
addManually: string;
|
|
781
|
-
searchAddress: string;
|
|
782
|
-
startTypingTheAddress: string;
|
|
783
|
-
addresses: string;
|
|
784
|
-
loading: string;
|
|
785
|
-
businessIncorporationNumber: string;
|
|
786
|
-
doNotHaveBusinessIncorporationNumber: string;
|
|
787
|
-
verificationMethod: string;
|
|
788
|
-
verifyViaMobileBankAppOrBankWebsite: string;
|
|
789
|
-
provideAccountDetailsAndUploadBankStatement: string;
|
|
790
|
-
instantVerificationDescription: string;
|
|
791
|
-
couldNotEstablishBankConnection: string;
|
|
792
|
-
sorryAnErrorOccurred: string;
|
|
793
|
-
ranIntoTechnicalError: string;
|
|
794
|
-
failedInitializeInstantVerification: string;
|
|
795
|
-
couldNotCompleteAccountCheck: string;
|
|
796
|
-
tryAgainOrManualAccountDetails: string;
|
|
797
|
-
manualVerificationDescription: string;
|
|
798
|
-
poweredBy: string;
|
|
799
|
-
youSuccessfullyVerifiedAccount: string;
|
|
800
|
-
verifyBankAccountAgain: string;
|
|
801
|
-
accountName: string;
|
|
802
|
-
mayTakeAFewHoursOrDays: string;
|
|
803
|
-
instant: string;
|
|
804
|
-
isOurTrustedPartnerHelpingSpeedUpSetup: string;
|
|
805
|
-
howDoesVerificationWithOurPartnerWorks: string;
|
|
806
|
-
selectTheBankToReceivePayouts: string;
|
|
807
|
-
bankAccountFormat: string;
|
|
808
|
-
ibanFormat: string;
|
|
809
|
-
localFormat: string;
|
|
810
|
-
payoutInOnly_: string;
|
|
811
|
-
payoutIn_Or_: string;
|
|
812
|
-
loginIntoYourBankingEnvironment: string;
|
|
813
|
-
yourBankWillConfirmYourAccountDetails: string;
|
|
814
|
-
adyenWillOnlyGetTemporaryAccess: string;
|
|
815
|
-
instantVerification: string;
|
|
816
|
-
xCharactersLeft: string;
|
|
817
|
-
goBack: string;
|
|
818
|
-
doNotHaveBusinessNumber: string;
|
|
819
|
-
enterNameExactlyAsAppearInID: string;
|
|
820
|
-
enterLastNameExactlyAsAppearInID: string;
|
|
821
|
-
takePhotoOriginalDocumentWithPhone: string;
|
|
822
|
-
instantIDVerificationDescription: string;
|
|
823
|
-
manualIDVerificationDescription: string;
|
|
824
|
-
uploadScanOriginalIDDocument: string;
|
|
825
|
-
takesLonger: string;
|
|
826
|
-
howVerificationWithOnfidoWork: string;
|
|
827
|
-
onfidoIsOurTrustedPartner: string;
|
|
828
|
-
usePhoneToScanId: string;
|
|
829
|
-
onfidoWillGiveFeedbackInRealTime: string;
|
|
830
|
-
theIdCheckWillBeAutomaticallyValidated: string;
|
|
831
|
-
adyenKeepsDataAsLongAsLegallyRequired: string;
|
|
832
|
-
requiresSignatory: string;
|
|
833
|
-
requiresDecisionMakers: string;
|
|
834
|
-
definedBeneficiary: string;
|
|
835
|
-
definedBeneficiaryDescription: string;
|
|
836
|
-
undefinedBeneficiary: string;
|
|
837
|
-
undefinedBeneficiaryDescription: string;
|
|
838
|
-
description: string;
|
|
839
|
-
descriptionOptional: string;
|
|
840
|
-
describeWhoIsABeneficiaryInYourTrust: string;
|
|
841
|
-
descriptionUndefinedBeneficiary: string;
|
|
842
|
-
undefinedBeneficiaryGuideDescription: string;
|
|
843
|
-
identityCardBack: string;
|
|
844
|
-
identityCardFront: string;
|
|
845
|
-
drivinglicenseBack: string;
|
|
846
|
-
drivinglicenseFront: string;
|
|
847
|
-
passportPhotoPage: string;
|
|
848
|
-
residencePermitBack: string;
|
|
849
|
-
residencePermitFront: string;
|
|
850
|
-
manualUpload: string;
|
|
851
|
-
missingMultipleDecisionMakers: string;
|
|
852
|
-
legalCompanyName: string;
|
|
853
|
-
legalCompanyName__helperText: string;
|
|
854
|
-
legalCompanyName__helperText__AU: string;
|
|
855
|
-
legalCompanyName__helperText__NL: string;
|
|
856
|
-
legalCompanyName__helperText__US: string;
|
|
857
|
-
legalCompanyName__helperText__SG: string;
|
|
858
|
-
legalCompanyName__helperText__HK: string;
|
|
859
|
-
taxInformationNumber: string;
|
|
860
|
-
taxInformationNumber__HK: string;
|
|
861
|
-
marketIdentifierCodeMIC: string;
|
|
862
|
-
isin: string;
|
|
863
|
-
companyLookupResultsHeader: string;
|
|
864
|
-
companyLookupResultsHeader__searching: string;
|
|
865
|
-
companyLookupResultsHeader__verifying: string;
|
|
866
|
-
companyLookupResultsHeader__noResults: string;
|
|
867
|
-
companyLookupResultsHeader__results: string;
|
|
868
|
-
companyLookupResultsHeader__searchFailure: string;
|
|
869
|
-
companyLookupResultsHeaderDescription__noResults: string;
|
|
870
|
-
companyLookupResultsHeaderDescription__results: string;
|
|
871
|
-
companyLookupResultsHeaderDescription__searchFailure: string;
|
|
872
|
-
companyLookupResultsListAlert__title__verified: string;
|
|
873
|
-
companyLookupResultsListAlert__title__warning: string;
|
|
874
|
-
companyLookupResultsListAlert__title__error: string;
|
|
875
|
-
companyLookupResultsListAlert__description__warning: string;
|
|
876
|
-
companyBasicsFormName: string;
|
|
877
|
-
companyRegistrationAddressFormName: string;
|
|
878
|
-
companyRegistrationAddressFormDescription: string;
|
|
879
|
-
companyStructureFormName: string;
|
|
880
|
-
companyStructureFormDescription: string;
|
|
881
|
-
companyOtherDetailsFormName: string;
|
|
882
|
-
companyRegistrationDocumentFormName: string;
|
|
883
|
-
companyRegistrationDocumentFormDescription: string;
|
|
884
|
-
companyTaxDocumentFormName: string;
|
|
885
|
-
companyTaxDocumentFormDescription: string;
|
|
886
|
-
errorMessage_1_10: string;
|
|
887
|
-
errorMessage_1_11: string;
|
|
888
|
-
errorMessage_1_12: string;
|
|
889
|
-
errorMessage_1_30: string;
|
|
890
|
-
errorMessage_1_31: string;
|
|
891
|
-
errorMessage_1_32: string;
|
|
892
|
-
errorMessage_1_33: string;
|
|
893
|
-
errorMessage_1_34: string;
|
|
894
|
-
errorMessage_1_35: string;
|
|
895
|
-
errorMessage_1_36: string;
|
|
896
|
-
errorMessage_1_37: string;
|
|
897
|
-
errorMessage_1_38: string;
|
|
898
|
-
errorMessage_1_39: string;
|
|
899
|
-
errorMessage_1_40: string;
|
|
900
|
-
errorMessage_1_41: string;
|
|
901
|
-
errorMessage_1_50: string;
|
|
902
|
-
errorMessage_1_51: string;
|
|
903
|
-
errorMessage_1_52: string;
|
|
904
|
-
errorMessage_1_53: string;
|
|
905
|
-
errorMessage_1_54: string;
|
|
906
|
-
errorMessage_1_55: string;
|
|
907
|
-
errorMessage_1_56: string;
|
|
908
|
-
errorMessage_1_57: string;
|
|
909
|
-
errorMessage_1_60: string;
|
|
910
|
-
errorMessage_1_61: string;
|
|
911
|
-
errorMessage_1_62: string;
|
|
912
|
-
errorMessage_1_70: string;
|
|
913
|
-
errorMessage_1_71: string;
|
|
914
|
-
errorMessage_1_72: string;
|
|
915
|
-
errorMessage_1_73: string;
|
|
916
|
-
errorMessage_1_74: string;
|
|
917
|
-
errorMessage_1_75: string;
|
|
918
|
-
errorMessage_1_76: string;
|
|
919
|
-
errorMessage_1_1000: string;
|
|
920
|
-
errorMessage_1_1001: string;
|
|
921
|
-
errorMessage_1_1002: string;
|
|
922
|
-
errorMessage_1_1003: string;
|
|
923
|
-
errorMessage_1_3000: string;
|
|
924
|
-
errorMessage_1_3001: string;
|
|
925
|
-
errorMessage_1_3002: string;
|
|
926
|
-
errorMessage_1_3003: string;
|
|
927
|
-
errorMessage_1_3004: string;
|
|
928
|
-
errorMessage_1_3005: string;
|
|
929
|
-
errorMessage_1_3006: string;
|
|
930
|
-
errorMessage_1_3007: string;
|
|
931
|
-
errorMessage_1_3008: string;
|
|
932
|
-
errorMessage_1_3009: string;
|
|
933
|
-
errorMessage_1_3010: string;
|
|
934
|
-
errorMessage_1_3011: string;
|
|
935
|
-
errorMessage_1_3012: string;
|
|
936
|
-
errorMessage_1_3013: string;
|
|
937
|
-
errorMessage_1_3014: string;
|
|
938
|
-
errorMessage_1_3015: string;
|
|
939
|
-
errorMessage_1_3016: string;
|
|
940
|
-
errorMessage_1_3017: string;
|
|
941
|
-
errorMessage_1_3018: string;
|
|
942
|
-
errorMessage_1_3019: string;
|
|
943
|
-
errorMessage_1_3020: string;
|
|
944
|
-
errorMessage_1_3021: string;
|
|
945
|
-
errorMessage_1_3022: string;
|
|
946
|
-
errorMessage_1_3023: string;
|
|
947
|
-
errorMessage_1_3024: string;
|
|
948
|
-
errorMessage_1_3025: string;
|
|
949
|
-
errorMessage_1_3026: string;
|
|
950
|
-
errorMessage_1_3027: string;
|
|
951
|
-
errorMessage_1_3028: string;
|
|
952
|
-
errorMessage_1_3029: string;
|
|
953
|
-
errorMessage_1_3030: string;
|
|
954
|
-
errorMessage_1_3031: string;
|
|
955
|
-
errorMessage_1_3032: string;
|
|
956
|
-
errorMessage_1_3033: string;
|
|
957
|
-
errorMessage_1_3034: string;
|
|
958
|
-
errorMessage_1_3035: string;
|
|
959
|
-
errorMessage_1_3036: string;
|
|
960
|
-
errorMessage_1_3037: string;
|
|
961
|
-
errorMessage_1_3038: string;
|
|
962
|
-
errorMessage_1_3039: string;
|
|
963
|
-
errorMessage_1_3040: string;
|
|
964
|
-
errorMessage_1_3041: string;
|
|
965
|
-
errorMessage_1_3042: string;
|
|
966
|
-
errorMessage_1_3043: string;
|
|
967
|
-
errorMessage_1_3044: string;
|
|
968
|
-
errorMessage_1_3045: string;
|
|
969
|
-
errorMessage_1_3046: string;
|
|
970
|
-
errorMessage_1_3047: string;
|
|
971
|
-
errorMessage_1_3048: string;
|
|
972
|
-
errorMessage_1_3049: string;
|
|
973
|
-
errorMessage_1_3050: string;
|
|
974
|
-
errorMessage_1_3051: string;
|
|
975
|
-
errorMessage_1_3052: string;
|
|
976
|
-
errorMessage_1_3062: string;
|
|
977
|
-
errorMessage_1_5000: string;
|
|
978
|
-
errorMessage_1_5001: string;
|
|
979
|
-
errorMessage_1_5002: string;
|
|
980
|
-
errorMessage_1_5003: string;
|
|
981
|
-
errorMessage_1_5004: string;
|
|
982
|
-
errorMessage_1_5005: string;
|
|
983
|
-
errorMessage_1_5006: string;
|
|
984
|
-
errorMessage_1_5007: string;
|
|
985
|
-
errorMessage_1_5008: string;
|
|
986
|
-
errorMessage_1_5009: string;
|
|
987
|
-
errorMessage_1_5010: string;
|
|
988
|
-
errorMessage_1_5011: string;
|
|
989
|
-
errorMessage_1_5012: string;
|
|
990
|
-
errorMessage_1_5013: string;
|
|
991
|
-
errorMessage_1_5014: string;
|
|
992
|
-
errorMessage_1_5015: string;
|
|
993
|
-
errorMessage_1_5016: string;
|
|
994
|
-
errorMessage_1_5017: string;
|
|
995
|
-
errorMessage_1_5018: string;
|
|
996
|
-
errorMessage_1_5019: string;
|
|
997
|
-
errorMessage_1_5020: string;
|
|
998
|
-
errorMessage_1_5021: string;
|
|
999
|
-
errorMessage_1_5022: string;
|
|
1000
|
-
errorMessage_1_5023: string;
|
|
1001
|
-
errorMessage_1_5024: string;
|
|
1002
|
-
errorMessage_1_5025: string;
|
|
1003
|
-
errorMessage_1_5026: string;
|
|
1004
|
-
errorMessage_1_5027: string;
|
|
1005
|
-
errorMessage_1_5028: string;
|
|
1006
|
-
errorMessage_1_5029: string;
|
|
1007
|
-
errorMessage_1_5030: string;
|
|
1008
|
-
errorMessage_1_5031: string;
|
|
1009
|
-
errorMessage_1_5032: string;
|
|
1010
|
-
errorMessage_1_5033: string;
|
|
1011
|
-
errorMessage_1_5034: string;
|
|
1012
|
-
errorMessage_1_5035: string;
|
|
1013
|
-
errorMessage_1_5036: string;
|
|
1014
|
-
errorMessage_1_5037: string;
|
|
1015
|
-
errorMessage_1_5038: string;
|
|
1016
|
-
errorMessage_1_5039: string;
|
|
1017
|
-
errorMessage_1_5040: string;
|
|
1018
|
-
errorMessage_1_5041: string;
|
|
1019
|
-
errorMessage_1_5042: string;
|
|
1020
|
-
errorMessage_1_5043: string;
|
|
1021
|
-
errorMessage_1_5044: string;
|
|
1022
|
-
errorMessage_1_5045: string;
|
|
1023
|
-
errorMessage_1_5046: string;
|
|
1024
|
-
errorMessage_1_5047: string;
|
|
1025
|
-
errorMessage_1_5048: string;
|
|
1026
|
-
errorMessage_1_5049: string;
|
|
1027
|
-
errorMessage_1_5050: string;
|
|
1028
|
-
errorMessage_1_5051: string;
|
|
1029
|
-
errorMessage_1_5052: string;
|
|
1030
|
-
errorMessage_1_5053: string;
|
|
1031
|
-
errorMessage_1_5067: string;
|
|
1032
|
-
errorMessage_1_6000: string;
|
|
1033
|
-
errorMessage_1_6001: string;
|
|
1034
|
-
errorMessage_1_6002: string;
|
|
1035
|
-
errorMessage_1_6003: string;
|
|
1036
|
-
errorMessage_1_6004: string;
|
|
1037
|
-
errorMessage_1_6005: string;
|
|
1038
|
-
errorMessage_1_6006: string;
|
|
1039
|
-
errorMessage_1_6007: string;
|
|
1040
|
-
errorMessage_1_6008: string;
|
|
1041
|
-
errorMessage_1_6009: string;
|
|
1042
|
-
errorMessage_1_6010: string;
|
|
1043
|
-
errorMessage_1_6011: string;
|
|
1044
|
-
errorMessage_1_6012: string;
|
|
1045
|
-
errorMessage_1_6013: string;
|
|
1046
|
-
errorMessage_1_6014: string;
|
|
1047
|
-
errorMessage_1_6015: string;
|
|
1048
|
-
errorMessage_1_6016: string;
|
|
1049
|
-
errorMessage_1_6017: string;
|
|
1050
|
-
errorMessage_1_6018: string;
|
|
1051
|
-
errorMessage_1_6019: string;
|
|
1052
|
-
errorMessage_1_6020: string;
|
|
1053
|
-
errorMessage_1_6021: string;
|
|
1054
|
-
errorMessage_1_6022: string;
|
|
1055
|
-
errorMessage_1_6023: string;
|
|
1056
|
-
errorMessage_1_6024: string;
|
|
1057
|
-
errorMessage_1_6025: string;
|
|
1058
|
-
errorMessage_1_6026: string;
|
|
1059
|
-
errorMessage_1_6027: string;
|
|
1060
|
-
errorMessage_1_6028: string;
|
|
1061
|
-
errorMessage_1_6029: string;
|
|
1062
|
-
errorMessage_1_6030: string;
|
|
1063
|
-
errorMessage_1_6031: string;
|
|
1064
|
-
errorMessage_1_6032: string;
|
|
1065
|
-
errorMessage_1_6033: string;
|
|
1066
|
-
errorMessage_1_6034: string;
|
|
1067
|
-
errorMessage_1_6035: string;
|
|
1068
|
-
errorMessage_1_6036: string;
|
|
1069
|
-
errorMessage_1_6037: string;
|
|
1070
|
-
errorMessage_1_6038: string;
|
|
1071
|
-
errorMessage_1_6039: string;
|
|
1072
|
-
errorMessage_1_6040: string;
|
|
1073
|
-
errorMessage_1_6041: string;
|
|
1074
|
-
errorMessage_1_6042: string;
|
|
1075
|
-
errorMessage_1_6044: string;
|
|
1076
|
-
errorMessage_1_6045: string;
|
|
1077
|
-
errorMessage_1_6046: string;
|
|
1078
|
-
errorMessage_1_6047: string;
|
|
1079
|
-
errorMessage_1_6048: string;
|
|
1080
|
-
errorMessage_1_6049: string;
|
|
1081
|
-
errorMessage_1_7000: string;
|
|
1082
|
-
errorMessage_1_7001: string;
|
|
1083
|
-
errorMessage_1_7002: string;
|
|
1084
|
-
errorMessage_1_7003: string;
|
|
1085
|
-
errorMessage_1_7004: string;
|
|
1086
|
-
errorMessage_1_7005: string;
|
|
1087
|
-
errorMessage_1_7006: string;
|
|
1088
|
-
errorMessage_1_7007: string;
|
|
1089
|
-
errorMessage_1_7008: string;
|
|
1090
|
-
errorMessage_1_7009: string;
|
|
1091
|
-
errorMessage_1_7010: string;
|
|
1092
|
-
errorMessage_1_7011: string;
|
|
1093
|
-
errorMessage_1_7012: string;
|
|
1094
|
-
errorMessage_1_7013: string;
|
|
1095
|
-
errorMessage_1_7014: string;
|
|
1096
|
-
errorMessage_1_7015: string;
|
|
1097
|
-
errorMessage_1_7016: string;
|
|
1098
|
-
errorMessage_1_7017: string;
|
|
1099
|
-
errorMessage_1_7018: string;
|
|
1100
|
-
errorMessage_1_7019: string;
|
|
1101
|
-
errorMessage_1_7020: string;
|
|
1102
|
-
errorMessage_1_7021: string;
|
|
1103
|
-
errorMessage_1_7022: string;
|
|
1104
|
-
errorMessage_2_8064: string;
|
|
1105
|
-
errorMessage_2_8067: string;
|
|
1106
|
-
errorMessage_2_8141: string;
|
|
1107
|
-
errorMessage_2_8162: string;
|
|
1108
|
-
errorMessage_2_8189: string;
|
|
1109
|
-
errorMessage_2_8193: string;
|
|
1110
|
-
errorMessage_3_10: string;
|
|
1111
|
-
remediationMessage_1_100: string;
|
|
1112
|
-
remediationMessage_1_101: string;
|
|
1113
|
-
remediationMessage_1_102: string;
|
|
1114
|
-
remediationMessage_2_158: string;
|
|
1115
|
-
remediationMessage_1_300: string;
|
|
1116
|
-
remediationMessage_1_301: string;
|
|
1117
|
-
remediationMessage_1_302: string;
|
|
1118
|
-
remediationMessage_1_303: string;
|
|
1119
|
-
remediationMessage_1_304: string;
|
|
1120
|
-
remediationMessage_1_305: string;
|
|
1121
|
-
remediationMessage_1_306: string;
|
|
1122
|
-
remediationMessage_1_307: string;
|
|
1123
|
-
remediationMessage_1_308: string;
|
|
1124
|
-
remediationMessage_1_309: string;
|
|
1125
|
-
remediationMessage_1_316: string;
|
|
1126
|
-
remediationMessage_1_500: string;
|
|
1127
|
-
remediationMessage_1_501: string;
|
|
1128
|
-
remediationMessage_1_502: string;
|
|
1129
|
-
remediationMessage_1_503: string;
|
|
1130
|
-
remediationMessage_1_504: string;
|
|
1131
|
-
remediationMessage_1_505: string;
|
|
1132
|
-
remediationMessage_1_506: string;
|
|
1133
|
-
remediationMessage_1_507: string;
|
|
1134
|
-
remediationMessage_1_508: string;
|
|
1135
|
-
remediationMessage_1_509: string;
|
|
1136
|
-
remediationMessage_1_510: string;
|
|
1137
|
-
remediationMessage_1_511: string;
|
|
1138
|
-
remediationMessage_1_512: string;
|
|
1139
|
-
remediationMessage_1_513: string;
|
|
1140
|
-
remediationMessage_1_600: string;
|
|
1141
|
-
remediationMessage_1_601: string;
|
|
1142
|
-
remediationMessage_1_602: string;
|
|
1143
|
-
remediationMessage_1_603: string;
|
|
1144
|
-
remediationMessage_1_700: string;
|
|
1145
|
-
remediationMessage_1_701: string;
|
|
1146
|
-
remediationMessage_1_702: string;
|
|
1147
|
-
remediationMessage_1_703: string;
|
|
1148
|
-
remediationMessage_1_704: string;
|
|
1149
|
-
remediationMessage_1_705: string;
|
|
1150
|
-
remediationMessage_2_123: string;
|
|
1151
|
-
remediationMessage_2_124: string;
|
|
1152
|
-
remediationMessage_2_151: string;
|
|
1153
|
-
remediationMessage_2_185: string;
|
|
1154
|
-
remediationMessage_3_100: string;
|
|
1155
|
-
sameNameAsLegalName: string;
|
|
1156
|
-
whereCanIFindTheseNumbersOnMyDriversLicense: string;
|
|
1157
|
-
whereToFindNumbersOnDriversLicense: string;
|
|
1158
|
-
whereToFindNumbersOnDriversLicense__NZ: string;
|
|
1159
|
-
iStillCantFindIt: string;
|
|
1160
|
-
patriotActDisclosureTitle: string;
|
|
1161
|
-
patriotActDisclosureTextParagraph1: string;
|
|
1162
|
-
patriotActDisclosureTextParagraph2: string;
|
|
1163
|
-
trusteeAsTrusteeForTrust: string;
|
|
1164
|
-
trusteeAsTrusteeForTrustDoingBusinessAs: string;
|
|
1165
|
-
trustDeed: string;
|
|
1166
|
-
trustInstrument: string;
|
|
1167
|
-
makeSureToHaveYourTrustDeed: string;
|
|
1168
|
-
maintenanceModeMessage: string;
|
|
1169
|
-
individualTrusteeDetails: string;
|
|
1170
|
-
companyTrusteeDetails: string;
|
|
1171
|
-
trusteePersonalDetails: string;
|
|
1172
|
-
byProceedingToTheNextStepYouConfirmThatYouHaveReadUnderstandAndAcceptTheTerms: string;
|
|
1173
|
-
whichOfTheseApplyToTheSettlor: string;
|
|
1174
|
-
contributionBelowThreshold: string;
|
|
1175
|
-
professionalServiceProvider: string;
|
|
1176
|
-
deceased: string;
|
|
1177
|
-
noneOfTheAbove: string;
|
|
1178
|
-
settlorExemptionReason: string;
|
|
1179
|
-
otherInformation: string;
|
|
1180
|
-
firstNameOfSettlor: string;
|
|
1181
|
-
lastNameOfSettlor: string;
|
|
1182
|
-
enterSettlorsFirstNameExactlyAsItAppearsInID: string;
|
|
1183
|
-
enterSettlorsLastNameExactlyAsItAppearsInID: string;
|
|
1184
|
-
introductionScreenPrologueTitle: string;
|
|
1185
|
-
introductionScreenPrologueDescriptionP1: string;
|
|
1186
|
-
introductionScreenPrologueDescriptionP2: string;
|
|
1187
|
-
introductionScreenCompanyTitle: string;
|
|
1188
|
-
introductionScreenCompanyDescriptionP1: string;
|
|
1189
|
-
introductionScreenCompanyDescriptionP2: string;
|
|
1190
|
-
introductionScreenCompanyDescriptionLI1: string;
|
|
1191
|
-
introductionScreenIndividualTitle: string;
|
|
1192
|
-
introductionScreenIndividualDescriptionP1: string;
|
|
1193
|
-
introductionScreenIndividualDescriptionP2: string;
|
|
1194
|
-
introductionScreenIndividualDescriptionLI1: string;
|
|
1195
|
-
introductionScreenIndividualDescriptionLI2: string;
|
|
1196
|
-
introductionScreenIndividualDescriptionLI3: string;
|
|
1197
|
-
introductionScreenDecisionMakerTitle: string;
|
|
1198
|
-
introductionScreenDecisionMakerDescriptionP1: string;
|
|
1199
|
-
introductionScreenDecisionMakerDescriptionP2: string;
|
|
1200
|
-
introductionScreenDecisionMakerDescriptionLI1: string;
|
|
1201
|
-
introductionScreenDecisionMakerDescriptionLI2: string;
|
|
1202
|
-
introductionScreenDecisionMakerDescriptionLI3: string;
|
|
1203
|
-
introductionScreenSoleProprietorCompanyTitle: string;
|
|
1204
|
-
introductionScreenSoleProprietorCompanyDescriptionP1: string;
|
|
1205
|
-
introductionScreenSoleProprietorCompanyDescriptionP2: string;
|
|
1206
|
-
introductionScreenSoleProprietorCompanyDescriptionLI1: string;
|
|
1207
|
-
introductionScreenTrustTitle: string;
|
|
1208
|
-
introductionScreenTrustDescriptionP1: string;
|
|
1209
|
-
introductionScreenTrustDescriptionP2: string;
|
|
1210
|
-
introductionScreenTrustDescriptionLI1: string;
|
|
1211
|
-
introductionScreenTrustMemberTitle: string;
|
|
1212
|
-
introductionScreenTrustMemberDescriptionP1: string;
|
|
1213
|
-
introductionScreenTrustMemberDescriptionP2: string;
|
|
1214
|
-
introductionScreenTrustMemberDescriptionLI1: string;
|
|
1215
|
-
introductionScreenTrustMemberDescriptionLI2: string;
|
|
1216
|
-
introductionScreenTrustMemberDescriptionLI3: string;
|
|
1217
|
-
introductionScreenAccountTitle: string;
|
|
1218
|
-
introductionScreenAccountDescriptionP1: string;
|
|
1219
|
-
introductionScreenAccountDescriptionP2: string;
|
|
1220
|
-
introductionScreenEpilogueTitle: string;
|
|
1221
|
-
introductionScreenEpilogueDescriptionP1: string;
|
|
1222
|
-
introductionScreenEpilogueDescriptionP2: string;
|
|
1223
|
-
oib: string;
|
|
1224
|
-
onboardingRedirectInitialHeader: string;
|
|
1225
|
-
onboardingRedirectInitialDescriptionP1: string;
|
|
1226
|
-
onboardingRedirectInitialCtaButton: string;
|
|
1227
|
-
onboardingRedirectInProgressHeader: string;
|
|
1228
|
-
onboardingRedirectInProgressDescriptionP1: string;
|
|
1229
|
-
onboardingRedirectInProgressCtaButton: string;
|
|
1230
|
-
onboardingRedirectErrorsHeader: string;
|
|
1231
|
-
onboardingRedirectErrorsDescriptionP1: string;
|
|
1232
|
-
onboardingRedirectErrorsDescriptionP2: string;
|
|
1233
|
-
onboardingRedirectErrorsCtaButton: string;
|
|
1234
|
-
onboardingRedirectFinishedHeader: string;
|
|
1235
|
-
onboardingRedirectFinishedDescriptionP1: string;
|
|
1236
|
-
onboardingRedirectFinishedCtaButton: string;
|
|
1237
|
-
onboardingRedirectLinkError: string;
|
|
1238
|
-
onboardingRedirectOpenError: string;
|
|
1239
|
-
};
|
|
6
|
+
export declare const defaultTranslation: Translations;
|