@intlayer/backend 8.7.11 → 8.7.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +27 -1
- package/dist/assets/utils/AI/askDocQuestion/embeddings/docs/en/benchmark/solid.json +4990 -0
- package/dist/assets/utils/AI/askDocQuestion/embeddings/docs/en/benchmark/svelte.json +4987 -0
- package/dist/assets/utils/AI/askDocQuestion/embeddings/docs/en/benchmark/vue.json +4975 -0
- package/dist/assets/utils/AI/askDocQuestion/embeddings/docs/en/intlayer_with_astro_lit.json +9936 -8930
- package/dist/assets/utils/AI/askDocQuestion/embeddings/docs/en/intlayer_with_astro_vanilla.json +7963 -6949
- package/dist/assets/utils/AI/askDocQuestion/embeddings/docs/en/readme.json +12908 -12288
- package/dist/esm/controllers/oAuth2.controller.mjs +21 -1
- package/dist/esm/controllers/oAuth2.controller.mjs.map +1 -1
- package/dist/esm/controllers/stripe.controller.mjs +86 -2
- package/dist/esm/controllers/stripe.controller.mjs.map +1 -1
- package/dist/esm/controllers/translation.controller.mjs +2 -0
- package/dist/esm/controllers/translation.controller.mjs.map +1 -1
- package/dist/esm/emails/InviteUserEmail.mjs +1541 -1
- package/dist/esm/emails/InviteUserEmail.mjs.map +1 -1
- package/dist/esm/emails/MagicLinkEmail.mjs +1128 -1
- package/dist/esm/emails/MagicLinkEmail.mjs.map +1 -1
- package/dist/esm/emails/OAuthTokenCreatedEmail.mjs +1389 -1
- package/dist/esm/emails/OAuthTokenCreatedEmail.mjs.map +1 -1
- package/dist/esm/emails/PasswordChangeConfirmation.mjs +814 -1
- package/dist/esm/emails/PasswordChangeConfirmation.mjs.map +1 -1
- package/dist/esm/emails/ResetUserPassword.mjs +1132 -1
- package/dist/esm/emails/ResetUserPassword.mjs.map +1 -1
- package/dist/esm/emails/SubscriptionPaymentCancellation.mjs +913 -1
- package/dist/esm/emails/SubscriptionPaymentCancellation.mjs.map +1 -1
- package/dist/esm/emails/SubscriptionPaymentError.mjs +908 -1
- package/dist/esm/emails/SubscriptionPaymentError.mjs.map +1 -1
- package/dist/esm/emails/SubscriptionPaymentSuccess.mjs +935 -1
- package/dist/esm/emails/SubscriptionPaymentSuccess.mjs.map +1 -1
- package/dist/esm/emails/ValidateUserEmail.mjs +1111 -1
- package/dist/esm/emails/ValidateUserEmail.mjs.map +1 -1
- package/dist/esm/emails/Welcome.mjs +1004 -1
- package/dist/esm/emails/Welcome.mjs.map +1 -1
- package/dist/esm/emails/index.mjs +7 -7
- package/dist/esm/index.mjs +8 -2
- package/dist/esm/index.mjs.map +1 -1
- package/dist/esm/middlewares/oAuth2.middleware.mjs +2 -2
- package/dist/esm/middlewares/oAuth2.middleware.mjs.map +1 -1
- package/dist/esm/routes/audit.routes.mjs +5 -4
- package/dist/esm/routes/audit.routes.mjs.map +1 -1
- package/dist/esm/routes/dictionary.routes.mjs +4 -3
- package/dist/esm/routes/dictionary.routes.mjs.map +1 -1
- package/dist/esm/routes/organization.routes.mjs +3 -2
- package/dist/esm/routes/organization.routes.mjs.map +1 -1
- package/dist/esm/routes/paramsSchemas.mjs +67 -0
- package/dist/esm/routes/paramsSchemas.mjs.map +1 -0
- package/dist/esm/routes/project.routes.mjs +2 -1
- package/dist/esm/routes/project.routes.mjs.map +1 -1
- package/dist/esm/routes/showcaseProject.routes.mjs +5 -4
- package/dist/esm/routes/showcaseProject.routes.mjs.map +1 -1
- package/dist/esm/routes/stripe.routes.mjs +19 -1
- package/dist/esm/routes/stripe.routes.mjs.map +1 -1
- package/dist/esm/routes/tags.routes.mjs +3 -2
- package/dist/esm/routes/tags.routes.mjs.map +1 -1
- package/dist/esm/routes/translate.routes.mjs +6 -5
- package/dist/esm/routes/translate.routes.mjs.map +1 -1
- package/dist/esm/routes/user.routes.mjs +5 -4
- package/dist/esm/routes/user.routes.mjs.map +1 -1
- package/dist/esm/schemas/oAuth2.schema.mjs +1 -1
- package/dist/esm/schemas/oAuth2.schema.mjs.map +1 -1
- package/dist/esm/services/email.service.mjs +338 -38
- package/dist/esm/services/email.service.mjs.map +1 -1
- package/dist/esm/services/oAuth2.service.mjs +20 -2
- package/dist/esm/services/oAuth2.service.mjs.map +1 -1
- package/dist/esm/services/subscription.service.mjs +5 -2
- package/dist/esm/services/subscription.service.mjs.map +1 -1
- package/dist/esm/utils/AI/askDocQuestion/embeddings/docs/en/benchmark/solid.json +4990 -0
- package/dist/esm/utils/AI/askDocQuestion/embeddings/docs/en/benchmark/svelte.json +4987 -0
- package/dist/esm/utils/AI/askDocQuestion/embeddings/docs/en/benchmark/vue.json +4975 -0
- package/dist/esm/utils/AI/askDocQuestion/embeddings/docs/en/intlayer_with_astro_lit.json +9936 -8930
- package/dist/esm/utils/AI/askDocQuestion/embeddings/docs/en/intlayer_with_astro_vanilla.json +7963 -6949
- package/dist/esm/utils/AI/askDocQuestion/embeddings/docs/en/readme.json +12908 -12288
- package/dist/esm/utils/auth/getAuth.mjs +6 -0
- package/dist/esm/utils/auth/getAuth.mjs.map +1 -1
- package/dist/esm/utils/errors/errorCodes.mjs +3917 -287
- package/dist/esm/utils/errors/errorCodes.mjs.map +1 -1
- package/dist/esm/utils/mongoDB/connectDB.mjs +5 -0
- package/dist/esm/utils/mongoDB/connectDB.mjs.map +1 -1
- package/dist/esm/utils/oAuth2.mjs +6 -2
- package/dist/esm/utils/oAuth2.mjs.map +1 -1
- package/dist/esm/utils/plan.mjs +13 -1
- package/dist/esm/utils/plan.mjs.map +1 -1
- package/dist/types/controllers/oAuth2.controller.d.ts +11 -1
- package/dist/types/controllers/oAuth2.controller.d.ts.map +1 -1
- package/dist/types/controllers/stripe.controller.d.ts +22 -2
- package/dist/types/controllers/stripe.controller.d.ts.map +1 -1
- package/dist/types/controllers/translation.controller.d.ts.map +1 -1
- package/dist/types/emails/InviteUserEmail.d.ts +181 -1
- package/dist/types/emails/InviteUserEmail.d.ts.map +1 -1
- package/dist/types/emails/MagicLinkEmail.d.ts +106 -1
- package/dist/types/emails/MagicLinkEmail.d.ts.map +1 -1
- package/dist/types/emails/OAuthTokenCreatedEmail.d.ts +166 -1
- package/dist/types/emails/OAuthTokenCreatedEmail.d.ts.map +1 -1
- package/dist/types/emails/PasswordChangeConfirmation.d.ts +91 -1
- package/dist/types/emails/PasswordChangeConfirmation.d.ts.map +1 -1
- package/dist/types/emails/ResetUserPassword.d.ts +106 -1
- package/dist/types/emails/ResetUserPassword.d.ts.map +1 -1
- package/dist/types/emails/SubscriptionPaymentCancellation.d.ts +151 -1
- package/dist/types/emails/SubscriptionPaymentCancellation.d.ts.map +1 -1
- package/dist/types/emails/SubscriptionPaymentError.d.ts +151 -1
- package/dist/types/emails/SubscriptionPaymentError.d.ts.map +1 -1
- package/dist/types/emails/SubscriptionPaymentSuccess.d.ts +151 -1
- package/dist/types/emails/SubscriptionPaymentSuccess.d.ts.map +1 -1
- package/dist/types/emails/ValidateUserEmail.d.ts +106 -1
- package/dist/types/emails/ValidateUserEmail.d.ts.map +1 -1
- package/dist/types/emails/Welcome.d.ts +106 -1
- package/dist/types/emails/Welcome.d.ts.map +1 -1
- package/dist/types/emails/index.d.ts +7 -7
- package/dist/types/export.d.ts +3 -3
- package/dist/types/middlewares/oAuth2.middleware.d.ts.map +1 -1
- package/dist/types/routes/audit.routes.d.ts.map +1 -1
- package/dist/types/routes/dictionary.routes.d.ts.map +1 -1
- package/dist/types/routes/organization.routes.d.ts.map +1 -1
- package/dist/types/routes/paramsSchemas.d.ts +102 -0
- package/dist/types/routes/paramsSchemas.d.ts.map +1 -0
- package/dist/types/routes/project.routes.d.ts.map +1 -1
- package/dist/types/routes/showcaseProject.routes.d.ts.map +1 -1
- package/dist/types/routes/stripe.routes.d.ts +15 -0
- package/dist/types/routes/stripe.routes.d.ts.map +1 -1
- package/dist/types/routes/tags.routes.d.ts.map +1 -1
- package/dist/types/routes/translate.routes.d.ts.map +1 -1
- package/dist/types/routes/user.routes.d.ts.map +1 -1
- package/dist/types/schemas/dictionary.schema.d.ts +6 -6
- package/dist/types/schemas/discussion.schema.d.ts +9 -9
- package/dist/types/schemas/organization.schema.d.ts +9 -9
- package/dist/types/schemas/plans.schema.d.ts +6 -6
- package/dist/types/schemas/project.schema.d.ts +12 -12
- package/dist/types/schemas/session.schema.d.ts +8 -8
- package/dist/types/schemas/showcaseProject.schema.d.ts +19 -19
- package/dist/types/schemas/tag.schema.d.ts +7 -7
- package/dist/types/services/email.service.d.ts.map +1 -1
- package/dist/types/services/oAuth2.service.d.ts +6 -1
- package/dist/types/services/oAuth2.service.d.ts.map +1 -1
- package/dist/types/types/plan.types.d.ts +2 -2
- package/dist/types/utils/errors/errorCodes.d.ts +3634 -4
- package/dist/types/utils/errors/errorCodes.d.ts.map +1 -1
- package/dist/types/utils/mongoDB/connectDB.d.ts.map +1 -1
- package/dist/types/utils/oAuth2.d.ts +3 -1
- package/dist/types/utils/oAuth2.d.ts.map +1 -1
- package/dist/types/utils/plan.d.ts +2 -1
- package/dist/types/utils/plan.d.ts.map +1 -1
- package/package.json +14 -13
|
@@ -224,6 +224,1101 @@ const ValidateUserEmailES = ({ username, validationLink }) => {
|
|
|
224
224
|
}) })
|
|
225
225
|
] });
|
|
226
226
|
};
|
|
227
|
+
const ValidateUserEmailRU = ({ username, validationLink }) => {
|
|
228
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
229
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
230
|
+
/* @__PURE__ */ jsx(Preview, { children: `Подтвердите свой адрес электронной почты для Intlayer` }),
|
|
231
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
232
|
+
className: "m-auto px-2 font-sans",
|
|
233
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
234
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
235
|
+
children: [
|
|
236
|
+
/* @__PURE__ */ jsx(Section, {
|
|
237
|
+
className: "mt-[32px]",
|
|
238
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
239
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
240
|
+
width: "40",
|
|
241
|
+
height: "37",
|
|
242
|
+
alt: "Intlayer",
|
|
243
|
+
className: "mx-auto my-0"
|
|
244
|
+
})
|
|
245
|
+
}),
|
|
246
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
247
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
248
|
+
children: [
|
|
249
|
+
"Подтвердите свой адрес электронной почты для",
|
|
250
|
+
" ",
|
|
251
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" })
|
|
252
|
+
]
|
|
253
|
+
}),
|
|
254
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
255
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
256
|
+
children: [
|
|
257
|
+
"Здравствуйте, ",
|
|
258
|
+
username,
|
|
259
|
+
","
|
|
260
|
+
]
|
|
261
|
+
}),
|
|
262
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
263
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
264
|
+
children: [
|
|
265
|
+
"Пожалуйста, подтвердите свой адрес электронной почты, чтобы завершить регистрацию на ",
|
|
266
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
267
|
+
"."
|
|
268
|
+
]
|
|
269
|
+
}),
|
|
270
|
+
/* @__PURE__ */ jsx(Section, {
|
|
271
|
+
className: "my-[32px] text-center",
|
|
272
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
273
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
274
|
+
href: validationLink,
|
|
275
|
+
children: "Подтвердить почту"
|
|
276
|
+
})
|
|
277
|
+
}),
|
|
278
|
+
/* @__PURE__ */ jsx(Text, {
|
|
279
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
280
|
+
children: "или скопируйте и вставьте этот URL в ваш браузер:"
|
|
281
|
+
}),
|
|
282
|
+
/* @__PURE__ */ jsx(Link, {
|
|
283
|
+
href: validationLink,
|
|
284
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
285
|
+
children: validationLink
|
|
286
|
+
}),
|
|
287
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
288
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
289
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
290
|
+
children: [
|
|
291
|
+
"Это письмо было предназначено для",
|
|
292
|
+
" ",
|
|
293
|
+
/* @__PURE__ */ jsx("span", {
|
|
294
|
+
className: "text-black",
|
|
295
|
+
children: username
|
|
296
|
+
}),
|
|
297
|
+
". Если вы не ожидали этого письма, вы можете проигнорировать его. Если вы обеспокоены безопасностью своего аккаунта, пожалуйста, ответьте на это письмо, чтобы связаться с нами."
|
|
298
|
+
]
|
|
299
|
+
})
|
|
300
|
+
]
|
|
301
|
+
})
|
|
302
|
+
}) })
|
|
303
|
+
] });
|
|
304
|
+
};
|
|
305
|
+
const ValidateUserEmailJA = ({ username, validationLink }) => {
|
|
306
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
307
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
308
|
+
/* @__PURE__ */ jsx(Preview, { children: `Intlayerのメールアドレスを認証してください` }),
|
|
309
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
310
|
+
className: "m-auto px-2 font-sans",
|
|
311
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
312
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
313
|
+
children: [
|
|
314
|
+
/* @__PURE__ */ jsx(Section, {
|
|
315
|
+
className: "mt-[32px]",
|
|
316
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
317
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
318
|
+
width: "40",
|
|
319
|
+
height: "37",
|
|
320
|
+
alt: "Intlayer",
|
|
321
|
+
className: "mx-auto my-0"
|
|
322
|
+
})
|
|
323
|
+
}),
|
|
324
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
325
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
326
|
+
children: [/* @__PURE__ */ jsx("strong", { children: "Intlayer" }), "のメールアドレスを認証する"]
|
|
327
|
+
}),
|
|
328
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
329
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
330
|
+
children: [username, "様、こんにちは。"]
|
|
331
|
+
}),
|
|
332
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
333
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
334
|
+
children: [/* @__PURE__ */ jsx("strong", { children: "Intlayer" }), "への登録を完了するために、メールアドレスを認証してください。"]
|
|
335
|
+
}),
|
|
336
|
+
/* @__PURE__ */ jsx(Section, {
|
|
337
|
+
className: "my-[32px] text-center",
|
|
338
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
339
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
340
|
+
href: validationLink,
|
|
341
|
+
children: "メールを認証する"
|
|
342
|
+
})
|
|
343
|
+
}),
|
|
344
|
+
/* @__PURE__ */ jsx(Text, {
|
|
345
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
346
|
+
children: "または、以下のURLをコピーしてブラウザに貼り付けてください:"
|
|
347
|
+
}),
|
|
348
|
+
/* @__PURE__ */ jsx(Link, {
|
|
349
|
+
href: validationLink,
|
|
350
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
351
|
+
children: validationLink
|
|
352
|
+
}),
|
|
353
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
354
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
355
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
356
|
+
children: [
|
|
357
|
+
"このメールは",
|
|
358
|
+
/* @__PURE__ */ jsx("span", {
|
|
359
|
+
className: "text-black",
|
|
360
|
+
children: username
|
|
361
|
+
}),
|
|
362
|
+
"様宛に送信されました。もしこのメールに心当たりがない場合は、無視していただいて構いません。アカウントのセキュリティについて懸念がある場合は、このメールに返信してご連絡ください。"
|
|
363
|
+
]
|
|
364
|
+
})
|
|
365
|
+
]
|
|
366
|
+
})
|
|
367
|
+
}) })
|
|
368
|
+
] });
|
|
369
|
+
};
|
|
370
|
+
const ValidateUserEmailKO = ({ username, validationLink }) => {
|
|
371
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
372
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
373
|
+
/* @__PURE__ */ jsx(Preview, { children: `Intlayer 이메일 주소를 인증해 주세요` }),
|
|
374
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
375
|
+
className: "m-auto px-2 font-sans",
|
|
376
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
377
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
378
|
+
children: [
|
|
379
|
+
/* @__PURE__ */ jsx(Section, {
|
|
380
|
+
className: "mt-[32px]",
|
|
381
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
382
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
383
|
+
width: "40",
|
|
384
|
+
height: "37",
|
|
385
|
+
alt: "Intlayer",
|
|
386
|
+
className: "mx-auto my-0"
|
|
387
|
+
})
|
|
388
|
+
}),
|
|
389
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
390
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
391
|
+
children: [/* @__PURE__ */ jsx("strong", { children: "Intlayer" }), " 이메일 주소 인증"]
|
|
392
|
+
}),
|
|
393
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
394
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
395
|
+
children: [
|
|
396
|
+
"안녕하세요 ",
|
|
397
|
+
username,
|
|
398
|
+
"님,"
|
|
399
|
+
]
|
|
400
|
+
}),
|
|
401
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
402
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
403
|
+
children: [/* @__PURE__ */ jsx("strong", { children: "Intlayer" }), " 가입을 완료하려면 이메일 주소를 인증해 주세요."]
|
|
404
|
+
}),
|
|
405
|
+
/* @__PURE__ */ jsx(Section, {
|
|
406
|
+
className: "my-[32px] text-center",
|
|
407
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
408
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
409
|
+
href: validationLink,
|
|
410
|
+
children: "이메일 인증하기"
|
|
411
|
+
})
|
|
412
|
+
}),
|
|
413
|
+
/* @__PURE__ */ jsx(Text, {
|
|
414
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
415
|
+
children: "또는 아래 URL을 복사하여 브라우저에 붙여넣으세요:"
|
|
416
|
+
}),
|
|
417
|
+
/* @__PURE__ */ jsx(Link, {
|
|
418
|
+
href: validationLink,
|
|
419
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
420
|
+
children: validationLink
|
|
421
|
+
}),
|
|
422
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
423
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
424
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
425
|
+
children: [
|
|
426
|
+
"이 이메일은 ",
|
|
427
|
+
/* @__PURE__ */ jsx("span", {
|
|
428
|
+
className: "text-black",
|
|
429
|
+
children: username
|
|
430
|
+
}),
|
|
431
|
+
"님에게 발송되었습니다. 이 이메일을 요청하지 않으셨다면 무시하셔도 됩니다. 계정 보안이 우려되신다면 이 이메일에 답장하여 저희에게 문의해 주세요."
|
|
432
|
+
]
|
|
433
|
+
})
|
|
434
|
+
]
|
|
435
|
+
})
|
|
436
|
+
}) })
|
|
437
|
+
] });
|
|
438
|
+
};
|
|
439
|
+
const ValidateUserEmailZH = ({ username, validationLink }) => {
|
|
440
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
441
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
442
|
+
/* @__PURE__ */ jsx(Preview, { children: `验证您的 Intlayer 电子邮件` }),
|
|
443
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
444
|
+
className: "m-auto px-2 font-sans",
|
|
445
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
446
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
447
|
+
children: [
|
|
448
|
+
/* @__PURE__ */ jsx(Section, {
|
|
449
|
+
className: "mt-[32px]",
|
|
450
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
451
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
452
|
+
width: "40",
|
|
453
|
+
height: "37",
|
|
454
|
+
alt: "Intlayer",
|
|
455
|
+
className: "mx-auto my-0"
|
|
456
|
+
})
|
|
457
|
+
}),
|
|
458
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
459
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
460
|
+
children: [
|
|
461
|
+
"验证您的 ",
|
|
462
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
463
|
+
" 电子邮件"
|
|
464
|
+
]
|
|
465
|
+
}),
|
|
466
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
467
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
468
|
+
children: [username, ",您好!"]
|
|
469
|
+
}),
|
|
470
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
471
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
472
|
+
children: [
|
|
473
|
+
"请验证您的电子邮件地址,以完成在 ",
|
|
474
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
475
|
+
" ",
|
|
476
|
+
"的注册。"
|
|
477
|
+
]
|
|
478
|
+
}),
|
|
479
|
+
/* @__PURE__ */ jsx(Section, {
|
|
480
|
+
className: "my-[32px] text-center",
|
|
481
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
482
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
483
|
+
href: validationLink,
|
|
484
|
+
children: "验证电子邮件"
|
|
485
|
+
})
|
|
486
|
+
}),
|
|
487
|
+
/* @__PURE__ */ jsx(Text, {
|
|
488
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
489
|
+
children: "或将此 URL 复制并粘贴到您的浏览器中:"
|
|
490
|
+
}),
|
|
491
|
+
/* @__PURE__ */ jsx(Link, {
|
|
492
|
+
href: validationLink,
|
|
493
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
494
|
+
children: validationLink
|
|
495
|
+
}),
|
|
496
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
497
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
498
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
499
|
+
children: [
|
|
500
|
+
"此电子邮件发送给 ",
|
|
501
|
+
/* @__PURE__ */ jsx("span", {
|
|
502
|
+
className: "text-black",
|
|
503
|
+
children: username
|
|
504
|
+
}),
|
|
505
|
+
"。如果您没有预料到收到此邮件,可以忽略它。如果您担心帐户安全,请回复此邮件与我们联系。"
|
|
506
|
+
]
|
|
507
|
+
})
|
|
508
|
+
]
|
|
509
|
+
})
|
|
510
|
+
}) })
|
|
511
|
+
] });
|
|
512
|
+
};
|
|
513
|
+
const ValidateUserEmailDE = ({ username, validationLink }) => {
|
|
514
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
515
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
516
|
+
/* @__PURE__ */ jsx(Preview, { children: `Bestätigen Sie Ihre E-Mail für Intlayer` }),
|
|
517
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
518
|
+
className: "m-auto px-2 font-sans",
|
|
519
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
520
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
521
|
+
children: [
|
|
522
|
+
/* @__PURE__ */ jsx(Section, {
|
|
523
|
+
className: "mt-[32px]",
|
|
524
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
525
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
526
|
+
width: "40",
|
|
527
|
+
height: "37",
|
|
528
|
+
alt: "Intlayer",
|
|
529
|
+
className: "mx-auto my-0"
|
|
530
|
+
})
|
|
531
|
+
}),
|
|
532
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
533
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
534
|
+
children: ["Bestätigen Sie Ihre E-Mail für ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
535
|
+
}),
|
|
536
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
537
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
538
|
+
children: [
|
|
539
|
+
"Hallo ",
|
|
540
|
+
username,
|
|
541
|
+
","
|
|
542
|
+
]
|
|
543
|
+
}),
|
|
544
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
545
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
546
|
+
children: [
|
|
547
|
+
"bitte bestätigen Sie Ihre E-Mail-Adresse, um Ihre Registrierung bei ",
|
|
548
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
549
|
+
" abzuschließen."
|
|
550
|
+
]
|
|
551
|
+
}),
|
|
552
|
+
/* @__PURE__ */ jsx(Section, {
|
|
553
|
+
className: "my-[32px] text-center",
|
|
554
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
555
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
556
|
+
href: validationLink,
|
|
557
|
+
children: "E-Mail bestätigen"
|
|
558
|
+
})
|
|
559
|
+
}),
|
|
560
|
+
/* @__PURE__ */ jsx(Text, {
|
|
561
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
562
|
+
children: "oder kopieren Sie diese URL und fügen Sie sie in Ihren Browser ein:"
|
|
563
|
+
}),
|
|
564
|
+
/* @__PURE__ */ jsx(Link, {
|
|
565
|
+
href: validationLink,
|
|
566
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
567
|
+
children: validationLink
|
|
568
|
+
}),
|
|
569
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
570
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
571
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
572
|
+
children: [
|
|
573
|
+
"Diese E-Mail war für",
|
|
574
|
+
" ",
|
|
575
|
+
/* @__PURE__ */ jsx("span", {
|
|
576
|
+
className: "text-black",
|
|
577
|
+
children: username
|
|
578
|
+
}),
|
|
579
|
+
" bestimmt. Wenn Sie diese E-Mail nicht erwartet haben, können Sie sie ignorieren. Wenn Sie um die Sicherheit Ihres Kontos besorgt sind, antworten Sie bitte auf diese E-Mail, um mit uns in Kontakt zu treten."
|
|
580
|
+
]
|
|
581
|
+
})
|
|
582
|
+
]
|
|
583
|
+
})
|
|
584
|
+
}) })
|
|
585
|
+
] });
|
|
586
|
+
};
|
|
587
|
+
const ValidateUserEmailAR = ({ username, validationLink }) => {
|
|
588
|
+
return /* @__PURE__ */ jsxs(Html, {
|
|
589
|
+
dir: "rtl",
|
|
590
|
+
children: [
|
|
591
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
592
|
+
/* @__PURE__ */ jsx(Preview, { children: `تأكيد بريدك الإلكتروني لـ Intlayer` }),
|
|
593
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
594
|
+
className: "m-auto px-2 font-sans",
|
|
595
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
596
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
597
|
+
children: [
|
|
598
|
+
/* @__PURE__ */ jsx(Section, {
|
|
599
|
+
className: "mt-[32px]",
|
|
600
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
601
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
602
|
+
width: "40",
|
|
603
|
+
height: "37",
|
|
604
|
+
alt: "Intlayer",
|
|
605
|
+
className: "mx-auto my-0"
|
|
606
|
+
})
|
|
607
|
+
}),
|
|
608
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
609
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
610
|
+
children: ["تأكيد بريدك الإلكتروني لـ ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
611
|
+
}),
|
|
612
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
613
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
614
|
+
children: [
|
|
615
|
+
"أهلاً ",
|
|
616
|
+
username,
|
|
617
|
+
"،"
|
|
618
|
+
]
|
|
619
|
+
}),
|
|
620
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
621
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
622
|
+
children: [
|
|
623
|
+
"يرجى تأكيد عنوان بريدك الإلكتروني لإكمال تسجيلك في",
|
|
624
|
+
" ",
|
|
625
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
626
|
+
"."
|
|
627
|
+
]
|
|
628
|
+
}),
|
|
629
|
+
/* @__PURE__ */ jsx(Section, {
|
|
630
|
+
className: "my-[32px] text-center",
|
|
631
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
632
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
633
|
+
href: validationLink,
|
|
634
|
+
children: "تأكيد البريد الإلكتروني"
|
|
635
|
+
})
|
|
636
|
+
}),
|
|
637
|
+
/* @__PURE__ */ jsx(Text, {
|
|
638
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
639
|
+
children: "أو انسخ هذا الرابط وألصقه في متصفحك:"
|
|
640
|
+
}),
|
|
641
|
+
/* @__PURE__ */ jsx(Link, {
|
|
642
|
+
href: validationLink,
|
|
643
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
644
|
+
children: validationLink
|
|
645
|
+
}),
|
|
646
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
647
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
648
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
649
|
+
children: [
|
|
650
|
+
"تم إرسال هذا البريد الإلكتروني إلى",
|
|
651
|
+
" ",
|
|
652
|
+
/* @__PURE__ */ jsx("span", {
|
|
653
|
+
className: "text-black",
|
|
654
|
+
children: username
|
|
655
|
+
}),
|
|
656
|
+
". إذا لم تكن تتوقع هذا البريد، يمكنك تجاهله. إذا كنت قلقاً بشأن أمان حسابك، يرجى الرد على هذا البريد للتواصل معنا."
|
|
657
|
+
]
|
|
658
|
+
})
|
|
659
|
+
]
|
|
660
|
+
})
|
|
661
|
+
}) })
|
|
662
|
+
]
|
|
663
|
+
});
|
|
664
|
+
};
|
|
665
|
+
const ValidateUserEmailIT = ({ username, validationLink }) => {
|
|
666
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
667
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
668
|
+
/* @__PURE__ */ jsx(Preview, { children: `Conferma la tua email per Intlayer` }),
|
|
669
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
670
|
+
className: "m-auto px-2 font-sans",
|
|
671
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
672
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
673
|
+
children: [
|
|
674
|
+
/* @__PURE__ */ jsx(Section, {
|
|
675
|
+
className: "mt-[32px]",
|
|
676
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
677
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
678
|
+
width: "40",
|
|
679
|
+
height: "37",
|
|
680
|
+
alt: "Intlayer",
|
|
681
|
+
className: "mx-auto my-0"
|
|
682
|
+
})
|
|
683
|
+
}),
|
|
684
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
685
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
686
|
+
children: ["Conferma la tua email per ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
687
|
+
}),
|
|
688
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
689
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
690
|
+
children: [
|
|
691
|
+
"Ciao ",
|
|
692
|
+
username,
|
|
693
|
+
","
|
|
694
|
+
]
|
|
695
|
+
}),
|
|
696
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
697
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
698
|
+
children: [
|
|
699
|
+
"Conferma il tuo indirizzo email per completare la tua registrazione su ",
|
|
700
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
701
|
+
"."
|
|
702
|
+
]
|
|
703
|
+
}),
|
|
704
|
+
/* @__PURE__ */ jsx(Section, {
|
|
705
|
+
className: "my-[32px] text-center",
|
|
706
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
707
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
708
|
+
href: validationLink,
|
|
709
|
+
children: "Conferma Email"
|
|
710
|
+
})
|
|
711
|
+
}),
|
|
712
|
+
/* @__PURE__ */ jsx(Text, {
|
|
713
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
714
|
+
children: "o copia e incolla questo URL nel tuo browser:"
|
|
715
|
+
}),
|
|
716
|
+
/* @__PURE__ */ jsx(Link, {
|
|
717
|
+
href: validationLink,
|
|
718
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
719
|
+
children: validationLink
|
|
720
|
+
}),
|
|
721
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
722
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
723
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
724
|
+
children: [
|
|
725
|
+
"Questa email è stata inviata a",
|
|
726
|
+
" ",
|
|
727
|
+
/* @__PURE__ */ jsx("span", {
|
|
728
|
+
className: "text-black",
|
|
729
|
+
children: username
|
|
730
|
+
}),
|
|
731
|
+
". Se non ti aspettavi questa email, puoi ignorarla. Se sei preoccupato per la sicurezza del tuo account, rispondi a questa email per metterti in contatto con noi."
|
|
732
|
+
]
|
|
733
|
+
})
|
|
734
|
+
]
|
|
735
|
+
})
|
|
736
|
+
}) })
|
|
737
|
+
] });
|
|
738
|
+
};
|
|
739
|
+
const ValidateUserEmailEN_GB = ({ username, validationLink }) => {
|
|
740
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
741
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
742
|
+
/* @__PURE__ */ jsx(Preview, { children: `Validate your email for Intlayer` }),
|
|
743
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
744
|
+
className: "m-auto px-2 font-sans",
|
|
745
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
746
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
747
|
+
children: [
|
|
748
|
+
/* @__PURE__ */ jsx(Section, {
|
|
749
|
+
className: "mt-[32px]",
|
|
750
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
751
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
752
|
+
width: "40",
|
|
753
|
+
height: "37",
|
|
754
|
+
alt: "Intlayer",
|
|
755
|
+
className: "mx-auto my-0"
|
|
756
|
+
})
|
|
757
|
+
}),
|
|
758
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
759
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
760
|
+
children: ["Validate your email for ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
761
|
+
}),
|
|
762
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
763
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
764
|
+
children: [
|
|
765
|
+
"Hello ",
|
|
766
|
+
username,
|
|
767
|
+
","
|
|
768
|
+
]
|
|
769
|
+
}),
|
|
770
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
771
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
772
|
+
children: [
|
|
773
|
+
"Please validate your email address to complete your registration on ",
|
|
774
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
775
|
+
"."
|
|
776
|
+
]
|
|
777
|
+
}),
|
|
778
|
+
/* @__PURE__ */ jsx(Section, {
|
|
779
|
+
className: "my-[32px] text-center",
|
|
780
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
781
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
782
|
+
href: validationLink,
|
|
783
|
+
children: "Validate Email"
|
|
784
|
+
})
|
|
785
|
+
}),
|
|
786
|
+
/* @__PURE__ */ jsx(Text, {
|
|
787
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
788
|
+
children: "or copy and paste this URL into your browser:"
|
|
789
|
+
}),
|
|
790
|
+
/* @__PURE__ */ jsx(Link, {
|
|
791
|
+
href: validationLink,
|
|
792
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
793
|
+
children: validationLink
|
|
794
|
+
}),
|
|
795
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
796
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
797
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
798
|
+
children: [
|
|
799
|
+
"This email was intended for",
|
|
800
|
+
" ",
|
|
801
|
+
/* @__PURE__ */ jsx("span", {
|
|
802
|
+
className: "text-black",
|
|
803
|
+
children: username
|
|
804
|
+
}),
|
|
805
|
+
". If you were not expecting this email, you can ignore it. If you are concerned about your account's safety, please reply to this email to get in touch with us."
|
|
806
|
+
]
|
|
807
|
+
})
|
|
808
|
+
]
|
|
809
|
+
})
|
|
810
|
+
}) })
|
|
811
|
+
] });
|
|
812
|
+
};
|
|
813
|
+
const ValidateUserEmailPT = ({ username, validationLink }) => {
|
|
814
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
815
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
816
|
+
/* @__PURE__ */ jsx(Preview, { children: `Valide seu e-mail para Intlayer` }),
|
|
817
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
818
|
+
className: "m-auto px-2 font-sans",
|
|
819
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
820
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
821
|
+
children: [
|
|
822
|
+
/* @__PURE__ */ jsx(Section, {
|
|
823
|
+
className: "mt-[32px]",
|
|
824
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
825
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
826
|
+
width: "40",
|
|
827
|
+
height: "37",
|
|
828
|
+
alt: "Intlayer",
|
|
829
|
+
className: "mx-auto my-0"
|
|
830
|
+
})
|
|
831
|
+
}),
|
|
832
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
833
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
834
|
+
children: ["Valide seu e-mail para ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
835
|
+
}),
|
|
836
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
837
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
838
|
+
children: [
|
|
839
|
+
"Olá ",
|
|
840
|
+
username,
|
|
841
|
+
","
|
|
842
|
+
]
|
|
843
|
+
}),
|
|
844
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
845
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
846
|
+
children: [
|
|
847
|
+
"Por favor, valide seu endereço de e-mail para concluir seu registro no ",
|
|
848
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
849
|
+
"."
|
|
850
|
+
]
|
|
851
|
+
}),
|
|
852
|
+
/* @__PURE__ */ jsx(Section, {
|
|
853
|
+
className: "my-[32px] text-center",
|
|
854
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
855
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
856
|
+
href: validationLink,
|
|
857
|
+
children: "Validar E-mail"
|
|
858
|
+
})
|
|
859
|
+
}),
|
|
860
|
+
/* @__PURE__ */ jsx(Text, {
|
|
861
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
862
|
+
children: "ou copie e cole este URL no seu navegador:"
|
|
863
|
+
}),
|
|
864
|
+
/* @__PURE__ */ jsx(Link, {
|
|
865
|
+
href: validationLink,
|
|
866
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
867
|
+
children: validationLink
|
|
868
|
+
}),
|
|
869
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
870
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
871
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
872
|
+
children: [
|
|
873
|
+
"Este e-mail foi enviado para",
|
|
874
|
+
" ",
|
|
875
|
+
/* @__PURE__ */ jsx("span", {
|
|
876
|
+
className: "text-black",
|
|
877
|
+
children: username
|
|
878
|
+
}),
|
|
879
|
+
". Se você não esperava este e-mail, pode ignorá-lo. Se estiver preocupado com a segurança da sua conta, responda a este e-mail para entrar em contato conosco."
|
|
880
|
+
]
|
|
881
|
+
})
|
|
882
|
+
]
|
|
883
|
+
})
|
|
884
|
+
}) })
|
|
885
|
+
] });
|
|
886
|
+
};
|
|
887
|
+
const ValidateUserEmailHI = ({ username, validationLink }) => {
|
|
888
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
889
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
890
|
+
/* @__PURE__ */ jsx(Preview, { children: `Intlayer के लिए अपना ईमेल सत्यापित करें` }),
|
|
891
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
892
|
+
className: "m-auto px-2 font-sans",
|
|
893
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
894
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
895
|
+
children: [
|
|
896
|
+
/* @__PURE__ */ jsx(Section, {
|
|
897
|
+
className: "mt-[32px]",
|
|
898
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
899
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
900
|
+
width: "40",
|
|
901
|
+
height: "37",
|
|
902
|
+
alt: "Intlayer",
|
|
903
|
+
className: "mx-auto my-0"
|
|
904
|
+
})
|
|
905
|
+
}),
|
|
906
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
907
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
908
|
+
children: [/* @__PURE__ */ jsx("strong", { children: "Intlayer" }), " के लिए अपना ईमेल सत्यापित करें"]
|
|
909
|
+
}),
|
|
910
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
911
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
912
|
+
children: [
|
|
913
|
+
"नमस्ते ",
|
|
914
|
+
username,
|
|
915
|
+
","
|
|
916
|
+
]
|
|
917
|
+
}),
|
|
918
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
919
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
920
|
+
children: [/* @__PURE__ */ jsx("strong", { children: "Intlayer" }), " पर अपना पंजीकरण पूरा करने के लिए कृपया अपना ईमेल पता सत्यापित करें।"]
|
|
921
|
+
}),
|
|
922
|
+
/* @__PURE__ */ jsx(Section, {
|
|
923
|
+
className: "my-[32px] text-center",
|
|
924
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
925
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
926
|
+
href: validationLink,
|
|
927
|
+
children: "ईमेल सत्यापित करें"
|
|
928
|
+
})
|
|
929
|
+
}),
|
|
930
|
+
/* @__PURE__ */ jsx(Text, {
|
|
931
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
932
|
+
children: "या इस URL को कॉपी करके अपने ब्राउज़र में पेस्ट करें:"
|
|
933
|
+
}),
|
|
934
|
+
/* @__PURE__ */ jsx(Link, {
|
|
935
|
+
href: validationLink,
|
|
936
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
937
|
+
children: validationLink
|
|
938
|
+
}),
|
|
939
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
940
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
941
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
942
|
+
children: [
|
|
943
|
+
"यह ईमेल ",
|
|
944
|
+
/* @__PURE__ */ jsx("span", {
|
|
945
|
+
className: "text-black",
|
|
946
|
+
children: username
|
|
947
|
+
}),
|
|
948
|
+
" के लिए था। यदि आप इस ईमेल की प्रतीक्षा नहीं कर रहे थे, तो आप इसे अनदेखा कर सकते हैं। यदि आप अपने खाते की सुरक्षा के बारे में चिंतित हैं, तो कृपया हमसे संपर्क करने के लिए इस ईमेल का उत्तर दें।"
|
|
949
|
+
]
|
|
950
|
+
})
|
|
951
|
+
]
|
|
952
|
+
})
|
|
953
|
+
}) })
|
|
954
|
+
] });
|
|
955
|
+
};
|
|
956
|
+
const ValidateUserEmailTR = ({ username, validationLink }) => {
|
|
957
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
958
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
959
|
+
/* @__PURE__ */ jsx(Preview, { children: `Intlayer için e-postanızı doğrulayın` }),
|
|
960
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
961
|
+
className: "m-auto px-2 font-sans",
|
|
962
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
963
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
964
|
+
children: [
|
|
965
|
+
/* @__PURE__ */ jsx(Section, {
|
|
966
|
+
className: "mt-[32px]",
|
|
967
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
968
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
969
|
+
width: "40",
|
|
970
|
+
height: "37",
|
|
971
|
+
alt: "Intlayer",
|
|
972
|
+
className: "mx-auto my-0"
|
|
973
|
+
})
|
|
974
|
+
}),
|
|
975
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
976
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
977
|
+
children: [/* @__PURE__ */ jsx("strong", { children: "Intlayer" }), " için e-postanızı doğrulayın"]
|
|
978
|
+
}),
|
|
979
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
980
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
981
|
+
children: [
|
|
982
|
+
"Merhaba ",
|
|
983
|
+
username,
|
|
984
|
+
","
|
|
985
|
+
]
|
|
986
|
+
}),
|
|
987
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
988
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
989
|
+
children: [/* @__PURE__ */ jsx("strong", { children: "Intlayer" }), " kaydınızı tamamlamak için lütfen e-posta adresinizi doğrulayın."]
|
|
990
|
+
}),
|
|
991
|
+
/* @__PURE__ */ jsx(Section, {
|
|
992
|
+
className: "my-[32px] text-center",
|
|
993
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
994
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
995
|
+
href: validationLink,
|
|
996
|
+
children: "E-postayı Doğrula"
|
|
997
|
+
})
|
|
998
|
+
}),
|
|
999
|
+
/* @__PURE__ */ jsx(Text, {
|
|
1000
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1001
|
+
children: "veya bu URL'yi kopyalayıp tarayıcınıza yapıştırın:"
|
|
1002
|
+
}),
|
|
1003
|
+
/* @__PURE__ */ jsx(Link, {
|
|
1004
|
+
href: validationLink,
|
|
1005
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
1006
|
+
children: validationLink
|
|
1007
|
+
}),
|
|
1008
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
1009
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
1010
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
1011
|
+
children: [
|
|
1012
|
+
"Bu e-posta ",
|
|
1013
|
+
/* @__PURE__ */ jsx("span", {
|
|
1014
|
+
className: "text-black",
|
|
1015
|
+
children: username
|
|
1016
|
+
}),
|
|
1017
|
+
" için gönderilmiştir. Bu e-postayı beklemiyorsanız görmezden gelebilirsiniz. Hesabınızın güvenliği konusunda endişeniz varsa, lütfen bizimle iletişime geçmek için bu e-postayı yanıtlayın."
|
|
1018
|
+
]
|
|
1019
|
+
})
|
|
1020
|
+
]
|
|
1021
|
+
})
|
|
1022
|
+
}) })
|
|
1023
|
+
] });
|
|
1024
|
+
};
|
|
1025
|
+
const ValidateUserEmailPL = ({ username, validationLink }) => {
|
|
1026
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
1027
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
1028
|
+
/* @__PURE__ */ jsx(Preview, { children: `Zweryfikuj swój e-mail dla Intlayer` }),
|
|
1029
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
1030
|
+
className: "m-auto px-2 font-sans",
|
|
1031
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
1032
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
1033
|
+
children: [
|
|
1034
|
+
/* @__PURE__ */ jsx(Section, {
|
|
1035
|
+
className: "mt-[32px]",
|
|
1036
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
1037
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
1038
|
+
width: "40",
|
|
1039
|
+
height: "37",
|
|
1040
|
+
alt: "Intlayer",
|
|
1041
|
+
className: "mx-auto my-0"
|
|
1042
|
+
})
|
|
1043
|
+
}),
|
|
1044
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
1045
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
1046
|
+
children: ["Zweryfikuj swój e-mail dla ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
1047
|
+
}),
|
|
1048
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
1049
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1050
|
+
children: [
|
|
1051
|
+
"Witaj ",
|
|
1052
|
+
username,
|
|
1053
|
+
","
|
|
1054
|
+
]
|
|
1055
|
+
}),
|
|
1056
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
1057
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1058
|
+
children: [
|
|
1059
|
+
"Zweryfikuj swój adres e-mail, aby dokończyć rejestrację w",
|
|
1060
|
+
" ",
|
|
1061
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
1062
|
+
"."
|
|
1063
|
+
]
|
|
1064
|
+
}),
|
|
1065
|
+
/* @__PURE__ */ jsx(Section, {
|
|
1066
|
+
className: "my-[32px] text-center",
|
|
1067
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
1068
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
1069
|
+
href: validationLink,
|
|
1070
|
+
children: "Zweryfikuj E-mail"
|
|
1071
|
+
})
|
|
1072
|
+
}),
|
|
1073
|
+
/* @__PURE__ */ jsx(Text, {
|
|
1074
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1075
|
+
children: "lub skopiuj i wklej ten URL do swojej przeglądarki:"
|
|
1076
|
+
}),
|
|
1077
|
+
/* @__PURE__ */ jsx(Link, {
|
|
1078
|
+
href: validationLink,
|
|
1079
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
1080
|
+
children: validationLink
|
|
1081
|
+
}),
|
|
1082
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
1083
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
1084
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
1085
|
+
children: [
|
|
1086
|
+
"Ta wiadomość była przeznaczona dla",
|
|
1087
|
+
" ",
|
|
1088
|
+
/* @__PURE__ */ jsx("span", {
|
|
1089
|
+
className: "text-black",
|
|
1090
|
+
children: username
|
|
1091
|
+
}),
|
|
1092
|
+
". Jeśli nie oczekiwałeś tej wiadomości, możesz ją zignorować. Jeśli obawiasz się o bezpieczeństwo swojego konta, odpowiedz na ten e-mail, aby się z nami skontaktować."
|
|
1093
|
+
]
|
|
1094
|
+
})
|
|
1095
|
+
]
|
|
1096
|
+
})
|
|
1097
|
+
}) })
|
|
1098
|
+
] });
|
|
1099
|
+
};
|
|
1100
|
+
const ValidateUserEmailID = ({ username, validationLink }) => {
|
|
1101
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
1102
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
1103
|
+
/* @__PURE__ */ jsx(Preview, { children: `Validasi email Anda per Intlayer` }),
|
|
1104
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
1105
|
+
className: "m-auto px-2 font-sans",
|
|
1106
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
1107
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
1108
|
+
children: [
|
|
1109
|
+
/* @__PURE__ */ jsx(Section, {
|
|
1110
|
+
className: "mt-[32px]",
|
|
1111
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
1112
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
1113
|
+
width: "40",
|
|
1114
|
+
height: "37",
|
|
1115
|
+
alt: "Intlayer",
|
|
1116
|
+
className: "mx-auto my-0"
|
|
1117
|
+
})
|
|
1118
|
+
}),
|
|
1119
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
1120
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
1121
|
+
children: ["Validasi email Anda per ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
1122
|
+
}),
|
|
1123
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
1124
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1125
|
+
children: [
|
|
1126
|
+
"Halo ",
|
|
1127
|
+
username,
|
|
1128
|
+
","
|
|
1129
|
+
]
|
|
1130
|
+
}),
|
|
1131
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
1132
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1133
|
+
children: [
|
|
1134
|
+
"Harap validasi alamat email Anda untuk menyelesaikan pendaftaran Anda di ",
|
|
1135
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
1136
|
+
"."
|
|
1137
|
+
]
|
|
1138
|
+
}),
|
|
1139
|
+
/* @__PURE__ */ jsx(Section, {
|
|
1140
|
+
className: "my-[32px] text-center",
|
|
1141
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
1142
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
1143
|
+
href: validationLink,
|
|
1144
|
+
children: "Validasi Email"
|
|
1145
|
+
})
|
|
1146
|
+
}),
|
|
1147
|
+
/* @__PURE__ */ jsx(Text, {
|
|
1148
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1149
|
+
children: "atau salin dan tempel URL ini ke browser Anda:"
|
|
1150
|
+
}),
|
|
1151
|
+
/* @__PURE__ */ jsx(Link, {
|
|
1152
|
+
href: validationLink,
|
|
1153
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
1154
|
+
children: validationLink
|
|
1155
|
+
}),
|
|
1156
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
1157
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
1158
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
1159
|
+
children: [
|
|
1160
|
+
"Email ini ditujukan untuk",
|
|
1161
|
+
" ",
|
|
1162
|
+
/* @__PURE__ */ jsx("span", {
|
|
1163
|
+
className: "text-black",
|
|
1164
|
+
children: username
|
|
1165
|
+
}),
|
|
1166
|
+
". Jika Anda tidak mengharapkan email ini, Anda dapat mengabaikannya. Jika Anda khawatir tentang keamanan akun Anda, harap balas email ini untuk menghubungi kami."
|
|
1167
|
+
]
|
|
1168
|
+
})
|
|
1169
|
+
]
|
|
1170
|
+
})
|
|
1171
|
+
}) })
|
|
1172
|
+
] });
|
|
1173
|
+
};
|
|
1174
|
+
const ValidateUserEmailVI = ({ username, validationLink }) => {
|
|
1175
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
1176
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
1177
|
+
/* @__PURE__ */ jsx(Preview, { children: `Xác thực email của bạn cho Intlayer` }),
|
|
1178
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
1179
|
+
className: "m-auto px-2 font-sans",
|
|
1180
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
1181
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
1182
|
+
children: [
|
|
1183
|
+
/* @__PURE__ */ jsx(Section, {
|
|
1184
|
+
className: "mt-[32px]",
|
|
1185
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
1186
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
1187
|
+
width: "40",
|
|
1188
|
+
height: "37",
|
|
1189
|
+
alt: "Intlayer",
|
|
1190
|
+
className: "mx-auto my-0"
|
|
1191
|
+
})
|
|
1192
|
+
}),
|
|
1193
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
1194
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
1195
|
+
children: ["Xác thực email của bạn cho ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
1196
|
+
}),
|
|
1197
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
1198
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1199
|
+
children: [
|
|
1200
|
+
"Xin chào ",
|
|
1201
|
+
username,
|
|
1202
|
+
","
|
|
1203
|
+
]
|
|
1204
|
+
}),
|
|
1205
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
1206
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1207
|
+
children: [
|
|
1208
|
+
"Vui lòng xác thực địa chỉ email của bạn để hoàn tất đăng ký trên",
|
|
1209
|
+
" ",
|
|
1210
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
1211
|
+
"."
|
|
1212
|
+
]
|
|
1213
|
+
}),
|
|
1214
|
+
/* @__PURE__ */ jsx(Section, {
|
|
1215
|
+
className: "my-[32px] text-center",
|
|
1216
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
1217
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
1218
|
+
href: validationLink,
|
|
1219
|
+
children: "Xác thực Email"
|
|
1220
|
+
})
|
|
1221
|
+
}),
|
|
1222
|
+
/* @__PURE__ */ jsx(Text, {
|
|
1223
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1224
|
+
children: "hoặc sao chép và dán URL này vào trình duyệt của bạn:"
|
|
1225
|
+
}),
|
|
1226
|
+
/* @__PURE__ */ jsx(Link, {
|
|
1227
|
+
href: validationLink,
|
|
1228
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
1229
|
+
children: validationLink
|
|
1230
|
+
}),
|
|
1231
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
1232
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
1233
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
1234
|
+
children: [
|
|
1235
|
+
"Email này dành cho ",
|
|
1236
|
+
/* @__PURE__ */ jsx("span", {
|
|
1237
|
+
className: "text-black",
|
|
1238
|
+
children: username
|
|
1239
|
+
}),
|
|
1240
|
+
". Nếu bạn không mong đợi email này, bạn có thể bỏ qua nó. Nếu bạn lo lắng về tính bảo mật của tài khoản, vui lòng trả lời email này để liên hệ với chúng tôi."
|
|
1241
|
+
]
|
|
1242
|
+
})
|
|
1243
|
+
]
|
|
1244
|
+
})
|
|
1245
|
+
}) })
|
|
1246
|
+
] });
|
|
1247
|
+
};
|
|
1248
|
+
const ValidateUserEmailUK = ({ username, validationLink }) => {
|
|
1249
|
+
return /* @__PURE__ */ jsxs(Html, { children: [
|
|
1250
|
+
/* @__PURE__ */ jsx(Head, {}),
|
|
1251
|
+
/* @__PURE__ */ jsx(Preview, { children: `Підтвердьте свою електронну пошту для Intlayer` }),
|
|
1252
|
+
/* @__PURE__ */ jsx(Tailwind, { children: /* @__PURE__ */ jsx(Body, {
|
|
1253
|
+
className: "m-auto px-2 font-sans",
|
|
1254
|
+
children: /* @__PURE__ */ jsxs(Container, {
|
|
1255
|
+
className: "mx-auto my-[40px] max-w-[465px] rounded-xl border border-[#eaeaea] border-solid bg-white p-[20px]",
|
|
1256
|
+
children: [
|
|
1257
|
+
/* @__PURE__ */ jsx(Section, {
|
|
1258
|
+
className: "mt-[32px]",
|
|
1259
|
+
children: /* @__PURE__ */ jsx(Img, {
|
|
1260
|
+
src: "https://intlayer.org/apple-touch-icon.png",
|
|
1261
|
+
width: "40",
|
|
1262
|
+
height: "37",
|
|
1263
|
+
alt: "Intlayer",
|
|
1264
|
+
className: "mx-auto my-0"
|
|
1265
|
+
})
|
|
1266
|
+
}),
|
|
1267
|
+
/* @__PURE__ */ jsxs(Heading, {
|
|
1268
|
+
className: "mx-0 my-[30px] p-0 text-center font-normal text-[24px] text-black",
|
|
1269
|
+
children: ["Підтвердьте свою електронну пошту для ", /* @__PURE__ */ jsx("strong", { children: "Intlayer" })]
|
|
1270
|
+
}),
|
|
1271
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
1272
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1273
|
+
children: [
|
|
1274
|
+
"Вітаємо, ",
|
|
1275
|
+
username,
|
|
1276
|
+
","
|
|
1277
|
+
]
|
|
1278
|
+
}),
|
|
1279
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
1280
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1281
|
+
children: [
|
|
1282
|
+
"Будь ласка, підтвердьте свою адресу електронної пошти, щоб завершити реєстрацію на ",
|
|
1283
|
+
/* @__PURE__ */ jsx("strong", { children: "Intlayer" }),
|
|
1284
|
+
"."
|
|
1285
|
+
]
|
|
1286
|
+
}),
|
|
1287
|
+
/* @__PURE__ */ jsx(Section, {
|
|
1288
|
+
className: "my-[32px] text-center",
|
|
1289
|
+
children: /* @__PURE__ */ jsx(Button, {
|
|
1290
|
+
className: "rounded-md bg-[#000000] px-5 py-3 text-center font-semibold text-[12px] text-white no-underline",
|
|
1291
|
+
href: validationLink,
|
|
1292
|
+
children: "Підтвердити пошту"
|
|
1293
|
+
})
|
|
1294
|
+
}),
|
|
1295
|
+
/* @__PURE__ */ jsx(Text, {
|
|
1296
|
+
className: "text-[14px] text-black leading-[24px]",
|
|
1297
|
+
children: "або скопіюйте та вставте цю URL-адресу у ваш браузер:"
|
|
1298
|
+
}),
|
|
1299
|
+
/* @__PURE__ */ jsx(Link, {
|
|
1300
|
+
href: validationLink,
|
|
1301
|
+
className: "text-[#8a8a8a] text-[10px] no-underline",
|
|
1302
|
+
children: validationLink
|
|
1303
|
+
}),
|
|
1304
|
+
/* @__PURE__ */ jsx(Hr, { className: "mx-0 my-[26px] w-full border border-[#eaeaea] border-solid" }),
|
|
1305
|
+
/* @__PURE__ */ jsxs(Text, {
|
|
1306
|
+
className: "text-[#666666] text-[12px] leading-[24px]",
|
|
1307
|
+
children: [
|
|
1308
|
+
"Цей електронний лист призначений для",
|
|
1309
|
+
" ",
|
|
1310
|
+
/* @__PURE__ */ jsx("span", {
|
|
1311
|
+
className: "text-black",
|
|
1312
|
+
children: username
|
|
1313
|
+
}),
|
|
1314
|
+
". Якщо ви не очікували цього листа, ви можете проігнорувати його. Якщо ви турбуєтеся про безпеку свого облікового запису, будь ласка, дайте відповідь на цей лист, щоб зв'язатися з нами."
|
|
1315
|
+
]
|
|
1316
|
+
})
|
|
1317
|
+
]
|
|
1318
|
+
})
|
|
1319
|
+
}) })
|
|
1320
|
+
] });
|
|
1321
|
+
};
|
|
227
1322
|
const previewProps = {
|
|
228
1323
|
username: "alanturing",
|
|
229
1324
|
validationLink: "https://intlayer.org/validate/foo"
|
|
@@ -231,7 +1326,22 @@ const previewProps = {
|
|
|
231
1326
|
ValidateUserEmailEN.PreviewProps = previewProps;
|
|
232
1327
|
ValidateUserEmailFR.PreviewProps = previewProps;
|
|
233
1328
|
ValidateUserEmailES.PreviewProps = previewProps;
|
|
1329
|
+
ValidateUserEmailRU.PreviewProps = previewProps;
|
|
1330
|
+
ValidateUserEmailJA.PreviewProps = previewProps;
|
|
1331
|
+
ValidateUserEmailKO.PreviewProps = previewProps;
|
|
1332
|
+
ValidateUserEmailZH.PreviewProps = previewProps;
|
|
1333
|
+
ValidateUserEmailDE.PreviewProps = previewProps;
|
|
1334
|
+
ValidateUserEmailAR.PreviewProps = previewProps;
|
|
1335
|
+
ValidateUserEmailIT.PreviewProps = previewProps;
|
|
1336
|
+
ValidateUserEmailEN_GB.PreviewProps = previewProps;
|
|
1337
|
+
ValidateUserEmailPT.PreviewProps = previewProps;
|
|
1338
|
+
ValidateUserEmailHI.PreviewProps = previewProps;
|
|
1339
|
+
ValidateUserEmailTR.PreviewProps = previewProps;
|
|
1340
|
+
ValidateUserEmailPL.PreviewProps = previewProps;
|
|
1341
|
+
ValidateUserEmailID.PreviewProps = previewProps;
|
|
1342
|
+
ValidateUserEmailVI.PreviewProps = previewProps;
|
|
1343
|
+
ValidateUserEmailUK.PreviewProps = previewProps;
|
|
234
1344
|
|
|
235
1345
|
//#endregion
|
|
236
|
-
export { ValidateUserEmailEN, ValidateUserEmailES, ValidateUserEmailFR };
|
|
1346
|
+
export { ValidateUserEmailAR, ValidateUserEmailDE, ValidateUserEmailEN, ValidateUserEmailEN_GB, ValidateUserEmailES, ValidateUserEmailFR, ValidateUserEmailHI, ValidateUserEmailID, ValidateUserEmailIT, ValidateUserEmailJA, ValidateUserEmailKO, ValidateUserEmailPL, ValidateUserEmailPT, ValidateUserEmailRU, ValidateUserEmailTR, ValidateUserEmailUK, ValidateUserEmailVI, ValidateUserEmailZH };
|
|
237
1347
|
//# sourceMappingURL=ValidateUserEmail.mjs.map
|