mirror of
https://github.com/strapi/strapi.git
synced 2025-12-28 07:33:17 +00:00
Fix trads
Signed-off-by: soupette <cyril.lpz@gmail.com>
This commit is contained in:
parent
b297c0a16e
commit
306997c36c
@ -24,16 +24,16 @@ const form = {
|
||||
}),
|
||||
},
|
||||
login: {
|
||||
endPoint: 'local',
|
||||
endPoint: 'login',
|
||||
inputs: [
|
||||
[
|
||||
{
|
||||
label: {
|
||||
id: 'Auth.form.username.label',
|
||||
id: 'Auth.form.email.label',
|
||||
},
|
||||
name: 'identifier',
|
||||
type: 'text',
|
||||
placeholder: 'Auth.form.username.placeholder',
|
||||
name: 'email',
|
||||
type: 'email',
|
||||
placeholder: 'Auth.form.email.placeholder',
|
||||
},
|
||||
],
|
||||
[
|
||||
@ -57,7 +57,10 @@ const form = {
|
||||
],
|
||||
],
|
||||
schema: yup.object({
|
||||
identifier: yup.string().required(translatedErrors.required),
|
||||
email: yup
|
||||
.string()
|
||||
.email(translatedErrors.email)
|
||||
.required(translatedErrors.required),
|
||||
password: yup.string().required(translatedErrors.required),
|
||||
}),
|
||||
},
|
||||
@ -95,11 +98,11 @@ const form = {
|
||||
[
|
||||
{
|
||||
label: {
|
||||
id: 'Auth.form.register.email.label',
|
||||
id: 'Auth.form.email.label',
|
||||
},
|
||||
name: 'email',
|
||||
type: 'email',
|
||||
placeholder: 'Auth.form.register.email.placeholder',
|
||||
placeholder: 'Auth.form.email.placeholder',
|
||||
},
|
||||
],
|
||||
[
|
||||
|
||||
@ -180,8 +180,8 @@
|
||||
"Auth.form.register-success.email.label": "الأيميل ارسل بنجاح الى",
|
||||
"Auth.form.register-success.email.placeholder": "mysuperemail@gmail.com",
|
||||
"Auth.form.register.confirmPassword.label": "تأكيد كلمة السر",
|
||||
"Auth.form.register.email.label": "البريد الإكتروني",
|
||||
"Auth.form.register.email.placeholder": "mysuperemail@example.com",
|
||||
"Auth.form.email.label": "البريد الإكتروني",
|
||||
"Auth.form.email.placeholder": "mysuperemail@example.com",
|
||||
"Auth.form.register.username.label": "اسم المستخدم",
|
||||
"Auth.form.register.username.placeholder": "اكتب اسمك هنا (مثل: خالد سالم)",
|
||||
"Auth.header.register.description": "لإنهاء الإعداد وتأمين تطبيقك ، يرجى إنشاء أول مستخدم (مسؤول أساسي) عن طريق إدخال المعلومات الضرورية أدناه.",
|
||||
|
||||
@ -214,8 +214,8 @@
|
||||
"Auth.form.register-success.email.label": "E-mail byl úspěšně odeslán na",
|
||||
"Auth.form.register-success.email.placeholder": "mujsuperemail@gmail.com",
|
||||
"Auth.form.register.confirmPassword.label": "Potvrzení hesla",
|
||||
"Auth.form.register.email.label": "E-mailová adresa",
|
||||
"Auth.form.register.email.placeholder": "jannovak@gmail.com",
|
||||
"Auth.form.email.label": "E-mailová adresa",
|
||||
"Auth.form.email.placeholder": "jannovak@gmail.com",
|
||||
"Auth.form.register.news.label": "Informujte mě o nových funkcích a připravovaných vylepšeních (tím souhlasíte s {terms} a {policy}).",
|
||||
"Auth.form.register.username.label": "Uživatelské jméno",
|
||||
"Auth.form.register.username.placeholder": "Jan Novák",
|
||||
|
||||
@ -208,8 +208,8 @@
|
||||
"Auth.form.register-success.email.label": "Eine E-Mail wurde erfolgreich verschickt an",
|
||||
"Auth.form.register-success.email.placeholder": "max.mustermann@gmail.com",
|
||||
"Auth.form.register.confirmPassword.label": "Passwort-Bestätigung",
|
||||
"Auth.form.register.email.label": "E-Mail",
|
||||
"Auth.form.register.email.placeholder": "max.mustermann@gmail.com",
|
||||
"Auth.form.email.label": "E-Mail",
|
||||
"Auth.form.email.placeholder": "max.mustermann@gmail.com",
|
||||
"Auth.form.register.news.label": "Halten Sie mich über die neuen Features und anstehenden Verbesserungen auf dem Laufenden (damit akzeptieren Sie die {terms} und die {policy}).",
|
||||
"Auth.form.register.username.label": "Benutzername",
|
||||
"Auth.form.register.username.placeholder": "Max Mustermann",
|
||||
|
||||
@ -232,8 +232,8 @@
|
||||
"Auth.form.register-success.email.label": "Email sent with success to",
|
||||
"Auth.form.register-success.email.placeholder": "mysuperemail@gmail.com",
|
||||
"Auth.form.register.confirmPassword.label": "Confirmation Password",
|
||||
"Auth.form.register.email.label": "Email",
|
||||
"Auth.form.register.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.label": "Email",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.register.news.label": "Keep me updated about the new features and upcoming improvements (by doing this you accept the {terms} and the {policy}).",
|
||||
"Auth.form.register.username.label": "Username",
|
||||
"Auth.form.register.username.placeholder": "John Doe",
|
||||
|
||||
@ -199,8 +199,8 @@
|
||||
"Auth.form.register-success.email.label": "Correo enviado con éxito a",
|
||||
"Auth.form.register-success.email.placeholder": "mysuperemail@gmail.com",
|
||||
"Auth.form.register.confirmPassword.label": "Confirmación de contraseña",
|
||||
"Auth.form.register.email.label": "Correo electrónico",
|
||||
"Auth.form.register.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.label": "Correo electrónico",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.password.label": "Contraseña",
|
||||
"Auth.form.register.username.label": "Nombre de usuario",
|
||||
"Auth.form.register.username.placeholder": "John Doe",
|
||||
|
||||
@ -218,8 +218,8 @@
|
||||
"Auth.form.register-success.email.label": "E-mail envoyé avec succès à",
|
||||
"Auth.form.register-success.email.placeholder": "mysuperemail@gmail.com",
|
||||
"Auth.form.register.confirmPassword.label": "Confirmez le Mot de Passe",
|
||||
"Auth.form.register.email.label": "Email",
|
||||
"Auth.form.register.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.label": "Email",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.register.news.label": "Me tenir au courant des nouvelles fonctionnalités et améliorations à venir (en faisant cela vous acceptez les {terms} et {policy}).",
|
||||
"Auth.form.register.username.label": "Nom d'utilisateur",
|
||||
"Auth.form.register.username.placeholder": "John Doe",
|
||||
|
||||
@ -225,8 +225,8 @@
|
||||
"Auth.form.register-success.email.label": "Email inviata con successo a",
|
||||
"Auth.form.register-success.email.placeholder": "mysuperemail@gmail.com",
|
||||
"Auth.form.register.confirmPassword.label": "Password di conferma",
|
||||
"Auth.form.register.email.label": "Email",
|
||||
"Auth.form.register.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.label": "Email",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.register.news.label": "Tienimi aggiornata in merito a nuove funzionalità e futuri sviluppi (così facendo accetti {terms} e {policy}).",
|
||||
"Auth.form.register.username.label": "Nome utente",
|
||||
"Auth.form.register.username.placeholder": "John Doe",
|
||||
|
||||
@ -210,8 +210,8 @@
|
||||
"Auth.form.register-success.email.label": "메일을 발송했습니다. ",
|
||||
"Auth.form.register-success.email.placeholder": "mysuperemail@gmail.com",
|
||||
"Auth.form.register.confirmPassword.label": "패스워드 확인",
|
||||
"Auth.form.register.email.label": "이메일",
|
||||
"Auth.form.register.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.label": "이메일",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.register.news.label": "새 기능과 향후 개선 사항에 대한 최신 정보를 계속 제공해주세요 (선택시 {terms}과 {policy}에 동의하는 걸로 간주됩니다).",
|
||||
"Auth.form.register.username.label": "아이디",
|
||||
"Auth.form.register.username.placeholder": "JohnDoe",
|
||||
|
||||
@ -37,8 +37,8 @@
|
||||
"Auth.form.register-success.email.label": "E-mail met succes verzonden aan",
|
||||
"Auth.form.register-success.email.placeholder": "mijnsuperemail@gmail.com",
|
||||
"Auth.form.register.confirmPassword.label": "Wachtwoord Bevestigen",
|
||||
"Auth.form.register.email.label": "E-mail",
|
||||
"Auth.form.register.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.label": "E-mail",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.register.news.label": "Houd me op de hoogte van de nieuwe functionaliteiten en aankomende verbeteringen (door dit te doen accepteer je de {terms} en het {policy}).",
|
||||
"Auth.form.register.username.label": "Gebruikersnaam",
|
||||
"Auth.form.register.username.placeholder": "John Doe",
|
||||
|
||||
@ -217,8 +217,8 @@
|
||||
"Auth.form.register-success.email.label": "E-mail wysłany z powodzeniem do",
|
||||
"Auth.form.register-success.email.placeholder": "jannowak@gmail.com",
|
||||
"Auth.form.register.confirmPassword.label": "Potwierdzenie hasła",
|
||||
"Auth.form.register.email.label": "Email",
|
||||
"Auth.form.register.email.placeholder": "jannowak@gmail.com",
|
||||
"Auth.form.email.label": "Email",
|
||||
"Auth.form.email.placeholder": "jannowak@gmail.com",
|
||||
"Auth.form.register.news.label": "Informuj mnie na bieżąco o nowych funkcjach i nadchodzących ulepszeniach (wybór oznacza akceptację {terms} i {policy}).",
|
||||
"Auth.form.register.username.label": "Użytkownik",
|
||||
"Auth.form.register.username.placeholder": "Jan Nowak",
|
||||
|
||||
@ -227,8 +227,8 @@
|
||||
"Auth.form.register-success.email.label": "E-mail enviado com sucesso para",
|
||||
"Auth.form.register-success.email.placeholder": "mysuperemail@gmail.com",
|
||||
"Auth.form.register.confirmPassword.label": "Senha de Confirmação",
|
||||
"Auth.form.register.email.label": "E-mail",
|
||||
"Auth.form.register.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.label": "E-mail",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.register.news.label": "Mantenha-me atualizado sobre os novos recursos e as próximas melhorias (ao fazer isso, você aceita os {terms} e a {policy}).",
|
||||
"Auth.form.register.username.label": "Username",
|
||||
"Auth.form.register.username.placeholder": "John Doe",
|
||||
|
||||
@ -215,8 +215,8 @@
|
||||
"Auth.form.register-success.email.label": "Email bol odoslaný na adresu",
|
||||
"Auth.form.register-success.email.placeholder": "janko.hrasko@gmail.com",
|
||||
"Auth.form.register.confirmPassword.label": "Potvrdenie hesla",
|
||||
"Auth.form.register.email.label": "E-mailová adresa",
|
||||
"Auth.form.register.email.placeholder": "janko.hrasko@gmail.com",
|
||||
"Auth.form.email.label": "E-mailová adresa",
|
||||
"Auth.form.email.placeholder": "janko.hrasko@gmail.com",
|
||||
"Auth.form.register.news.label": "Informujte ma o nových funkciách a pripravovaných vylepšeniach (týmto akceptujete {terms} a {policy}).",
|
||||
"Auth.form.register.username.label": "Používateľské meno",
|
||||
"Auth.form.register.username.placeholder": "Janko Hraško",
|
||||
|
||||
@ -212,8 +212,8 @@
|
||||
"Auth.form.register-success.email.label": "E-posta başarıyla gönderildi, ",
|
||||
"Auth.form.register-success.email.placeholder": "mysuperemail@gmail.com",
|
||||
"Auth.form.register.confirmPassword.label": "Parola Tekrarı",
|
||||
"Auth.form.register.email.label": "E-posta",
|
||||
"Auth.form.register.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.label": "E-posta",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.register.news.label": "Beni gelecekteki özellikler ve geliştirmeler hakkında bilgilendir (bunu seçerek {terms} ve {policy}'leri kabul etmiş sayılırsınız)",
|
||||
"Auth.form.register.username.label": "Kullanıcı Adı",
|
||||
"Auth.form.register.username.placeholder": "John Doe",
|
||||
|
||||
@ -210,8 +210,8 @@
|
||||
"Auth.form.register-success.email.label": "Email đã được gửi thành công đến",
|
||||
"Auth.form.register-success.email.placeholder": "mysuperemail@gmail.com",
|
||||
"Auth.form.register.confirmPassword.label": "Xác nhận mật khẩu",
|
||||
"Auth.form.register.email.label": "Email",
|
||||
"Auth.form.register.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.label": "Email",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.register.news.label": "Cập nhật cho tôi về chức năng mới và những cải thiện sắp tới (thông qua việc này bạn đã chấp nhận {terms} và {policy}).",
|
||||
"Auth.form.register.username.label": "Tên đăng nhập",
|
||||
"Auth.form.register.username.placeholder": "John Doe",
|
||||
|
||||
@ -221,8 +221,8 @@
|
||||
"Auth.form.register-success.email.label": "电子邮件已发送成功到",
|
||||
"Auth.form.register-success.email.placeholder": "mysuperemail@gmail.com",
|
||||
"Auth.form.register.confirmPassword.label": "确认密码",
|
||||
"Auth.form.register.email.label": "邮箱",
|
||||
"Auth.form.register.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.label": "邮箱",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.register.news.label": "让我随时了解新功能和即将进行的改进(如果要这样做,您需要接受 {terms} 和 {policy} )。",
|
||||
"Auth.form.register.username.label": "用户名",
|
||||
"Auth.form.register.username.placeholder": "John Doe",
|
||||
|
||||
@ -182,8 +182,8 @@
|
||||
"Auth.form.register-success.email.label": "郵件成功寄出",
|
||||
"Auth.form.register-success.email.placeholder": "mysuperemail@gmail.com",
|
||||
"Auth.form.register.confirmPassword.label": "確認密碼",
|
||||
"Auth.form.register.email.label": "Email",
|
||||
"Auth.form.register.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.label": "Email",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
|
||||
"Auth.form.register.username.label": "使用者名稱",
|
||||
"Auth.form.register.username.placeholder": "John Doe",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user