mirror of
https://github.com/strapi/strapi.git
synced 2025-12-27 15:13:21 +00:00
Replace John Doe by Kai Doe (#8738)
Signed-off-by: Pierre Burgy <pierre.burgy@gmail.com>
This commit is contained in:
parent
3c4e6bd34a
commit
30ed3985c6
@ -35,11 +35,11 @@ Filters are used as a suffix of a field name:
|
||||
|
||||
### Examples
|
||||
|
||||
#### Find users having `John` as first name.
|
||||
#### Find users having `Kai` as first name.
|
||||
|
||||
`GET /users?firstName=John`
|
||||
`GET /users?firstName=Kai`
|
||||
or
|
||||
`GET /users?firstName_eq=John`
|
||||
`GET /users?firstName_eq=Kai`
|
||||
|
||||
#### Find restaurants having a price equal or greater than `3`.
|
||||
|
||||
|
||||
@ -118,7 +118,7 @@ query {
|
||||
|
||||
```graphql
|
||||
mutation {
|
||||
createUser(input: { data: { username: "John", email: "john@doe.com" } }) {
|
||||
createUser(input: { data: { username: "Kai", email: "kai@doe.com" } }) {
|
||||
user {
|
||||
username
|
||||
email
|
||||
@ -134,8 +134,8 @@ mutation {
|
||||
createUser(
|
||||
input: {
|
||||
data: {
|
||||
username: "John"
|
||||
email: "john@doe.com"
|
||||
username: "Kai"
|
||||
email: "kai@doe.com"
|
||||
restaurants: ["5b51e3949db573a586ad22de", "5b5b26619b0820c1c2fb79c9"]
|
||||
}
|
||||
}
|
||||
@ -164,7 +164,7 @@ mutation {
|
||||
updateUser(
|
||||
input: {
|
||||
where: { id: "5b28f1747c739e4afb48605c" }
|
||||
data: { username: "John", email: "john@doe.com" }
|
||||
data: { username: "Kai", email: "kai@doe.com" }
|
||||
}
|
||||
) {
|
||||
user {
|
||||
|
||||
@ -41,11 +41,11 @@ Filters are used as a suffix of a field name:
|
||||
|
||||
### Examples
|
||||
|
||||
#### Find users having `John` as first name.
|
||||
#### Find users having `Kai` as first name.
|
||||
|
||||
`GET /users?firstName=John`
|
||||
`GET /users?firstName=Kai`
|
||||
or
|
||||
`GET /users?firstName_eq=John`
|
||||
`GET /users?firstName_eq=Kai`
|
||||
|
||||
#### Find restaurants having a price equal or greater than `3`.
|
||||
|
||||
|
||||
@ -134,7 +134,7 @@ query {
|
||||
|
||||
```graphql
|
||||
mutation {
|
||||
createUser(input: { data: { username: "John", email: "john@doe.com" } }) {
|
||||
createUser(input: { data: { username: "Kai", email: "kai@doe.com" } }) {
|
||||
user {
|
||||
username
|
||||
email
|
||||
@ -150,8 +150,8 @@ mutation {
|
||||
createUser(
|
||||
input: {
|
||||
data: {
|
||||
username: "John"
|
||||
email: "john@doe.com"
|
||||
username: "Kai"
|
||||
email: "kai@doe.com"
|
||||
restaurants: ["5b51e3949db573a586ad22de", "5b5b26619b0820c1c2fb79c9"]
|
||||
}
|
||||
}
|
||||
@ -180,7 +180,7 @@ mutation {
|
||||
updateUser(
|
||||
input: {
|
||||
where: { id: "5b28f1747c739e4afb48605c" }
|
||||
data: { username: "John", email: "john@doe.com" }
|
||||
data: { username: "Kai", email: "kai@doe.com" }
|
||||
}
|
||||
) {
|
||||
user {
|
||||
|
||||
@ -15,9 +15,9 @@ describe('ADMIN | COMPONENTS | USERS | MODALCREATEBODY | reducer', () => {
|
||||
it('should change the data correctly', () => {
|
||||
const initialState = {
|
||||
modifiedData: {
|
||||
firstname: 'john',
|
||||
firstname: 'kai',
|
||||
lastname: '',
|
||||
email: 'john@strapi.io',
|
||||
email: 'kai@strapi.io',
|
||||
roles: [1],
|
||||
},
|
||||
test: true,
|
||||
@ -29,9 +29,9 @@ describe('ADMIN | COMPONENTS | USERS | MODALCREATEBODY | reducer', () => {
|
||||
};
|
||||
const expected = {
|
||||
modifiedData: {
|
||||
firstname: 'john',
|
||||
firstname: 'kai',
|
||||
lastname: 'doe',
|
||||
email: 'john@strapi.io',
|
||||
email: 'kai@strapi.io',
|
||||
roles: [1],
|
||||
},
|
||||
test: true,
|
||||
|
||||
@ -2,7 +2,7 @@ const form = {
|
||||
firstname: {
|
||||
autoFocus: true,
|
||||
label: 'Settings.permissions.users.form.firstname',
|
||||
placeholder: 'e.g. John',
|
||||
placeholder: 'e.g. Kai',
|
||||
type: 'text',
|
||||
validations: {
|
||||
required: true,
|
||||
@ -18,7 +18,7 @@ const form = {
|
||||
},
|
||||
email: {
|
||||
label: 'Settings.permissions.users.form.email',
|
||||
placeholder: 'e.g. john.doe@strapi.io',
|
||||
placeholder: 'e.g. kai.doe@strapi.io',
|
||||
type: 'email',
|
||||
validations: {
|
||||
required: true,
|
||||
|
||||
@ -15,7 +15,7 @@ describe('ADMIN | CONTAINERS | AUTH | reducer', () => {
|
||||
it('should change the data correctly', () => {
|
||||
const initialState = {
|
||||
modifiedData: {
|
||||
email: 'john@strapi.io',
|
||||
email: 'kai@strapi.io',
|
||||
password: null,
|
||||
},
|
||||
};
|
||||
@ -26,7 +26,7 @@ describe('ADMIN | CONTAINERS | AUTH | reducer', () => {
|
||||
};
|
||||
const expected = {
|
||||
modifiedData: {
|
||||
email: 'john@strapi.io',
|
||||
email: 'kai@strapi.io',
|
||||
password: 'test123',
|
||||
},
|
||||
};
|
||||
|
||||
@ -2,7 +2,7 @@ const form = {
|
||||
firstname: {
|
||||
autoFocus: true,
|
||||
label: 'Settings.permissions.users.form.firstname',
|
||||
placeholder: 'e.g. John',
|
||||
placeholder: 'e.g. Kai',
|
||||
type: 'text',
|
||||
validations: {
|
||||
required: true,
|
||||
@ -18,7 +18,7 @@ const form = {
|
||||
},
|
||||
email: {
|
||||
label: 'Settings.permissions.users.form.email',
|
||||
placeholder: 'e.g. john.doe@strapi.io',
|
||||
placeholder: 'e.g. kai.doe@strapi.io',
|
||||
type: 'email',
|
||||
validations: {
|
||||
required: true,
|
||||
@ -26,7 +26,7 @@ const form = {
|
||||
},
|
||||
username: {
|
||||
label: 'Auth.form.username.label',
|
||||
placeholder: 'e.g. John_Doe',
|
||||
placeholder: 'e.g. Kai_Doe',
|
||||
type: 'text',
|
||||
autoComplete: 'no',
|
||||
validations: {},
|
||||
|
||||
@ -2,7 +2,7 @@ const form = {
|
||||
firstname: {
|
||||
autoFocus: true,
|
||||
label: 'Settings.permissions.users.form.firstname',
|
||||
placeholder: 'e.g. John',
|
||||
placeholder: 'e.g. Kai',
|
||||
type: 'text',
|
||||
validations: {
|
||||
required: true,
|
||||
@ -18,7 +18,7 @@ const form = {
|
||||
},
|
||||
email: {
|
||||
label: 'Settings.permissions.users.form.email',
|
||||
placeholder: 'e.g. john.doe@strapi.io',
|
||||
placeholder: 'e.g. kai.doe@strapi.io',
|
||||
type: 'email',
|
||||
validations: {
|
||||
required: true,
|
||||
@ -26,7 +26,7 @@ const form = {
|
||||
},
|
||||
username: {
|
||||
label: 'Auth.form.username.label',
|
||||
placeholder: 'e.g. John_Doe',
|
||||
placeholder: 'e.g. Kai_Doe',
|
||||
type: 'text',
|
||||
autoComplete: 'no',
|
||||
validations: {},
|
||||
|
||||
@ -63,11 +63,11 @@ describe('ADMIN | HOOKS | useUsersForm | reducer', () => {
|
||||
ok: true,
|
||||
},
|
||||
initialData: {
|
||||
email: 'john@strapi.io',
|
||||
email: 'kai@strapi.io',
|
||||
firstname: '',
|
||||
},
|
||||
modifiedData: {
|
||||
email: 'john@strapi.io',
|
||||
email: 'kai@strapi.io',
|
||||
firstname: 'test',
|
||||
},
|
||||
};
|
||||
@ -78,11 +78,11 @@ describe('ADMIN | HOOKS | useUsersForm | reducer', () => {
|
||||
fieldsToPick: ['email', 'firstname', 'username', 'lastname'],
|
||||
formErrors: {},
|
||||
initialData: {
|
||||
email: 'john@strapi.io',
|
||||
email: 'kai@strapi.io',
|
||||
firstname: '',
|
||||
},
|
||||
modifiedData: {
|
||||
email: 'john@strapi.io',
|
||||
email: 'kai@strapi.io',
|
||||
firstname: '',
|
||||
},
|
||||
};
|
||||
@ -95,7 +95,7 @@ describe('ADMIN | HOOKS | useUsersForm | reducer', () => {
|
||||
it('should change the data correctly if the inputType is not password', () => {
|
||||
const initialState = {
|
||||
modifiedData: {
|
||||
email: 'john@strapi.io',
|
||||
email: 'kai@strapi.io',
|
||||
firstname: null,
|
||||
},
|
||||
};
|
||||
@ -118,7 +118,7 @@ describe('ADMIN | HOOKS | useUsersForm | reducer', () => {
|
||||
it('should change the data correctly if the inputType is password', () => {
|
||||
const initialState = {
|
||||
modifiedData: {
|
||||
email: 'john@strapi.io',
|
||||
email: 'kai@strapi.io',
|
||||
password: 'pwd123',
|
||||
},
|
||||
};
|
||||
@ -130,7 +130,7 @@ describe('ADMIN | HOOKS | useUsersForm | reducer', () => {
|
||||
};
|
||||
const expected = {
|
||||
modifiedData: {
|
||||
email: 'john@strapi.io',
|
||||
email: 'kai@strapi.io',
|
||||
password: 'pwd1234',
|
||||
},
|
||||
};
|
||||
@ -141,7 +141,7 @@ describe('ADMIN | HOOKS | useUsersForm | reducer', () => {
|
||||
it('should change the data correctly if the inputType is password and the value is empty', () => {
|
||||
const initialState = {
|
||||
modifiedData: {
|
||||
email: 'john@strapi.io',
|
||||
email: 'kai@strapi.io',
|
||||
password: 'pwd123',
|
||||
},
|
||||
};
|
||||
@ -153,7 +153,7 @@ describe('ADMIN | HOOKS | useUsersForm | reducer', () => {
|
||||
};
|
||||
const expected = {
|
||||
modifiedData: {
|
||||
email: 'john@strapi.io',
|
||||
email: 'kai@strapi.io',
|
||||
},
|
||||
};
|
||||
|
||||
@ -163,7 +163,7 @@ describe('ADMIN | HOOKS | useUsersForm | reducer', () => {
|
||||
it('should set the username value to null if the value is empty', () => {
|
||||
const initialState = {
|
||||
modifiedData: {
|
||||
email: 'john@strapi.io',
|
||||
email: 'kai@strapi.io',
|
||||
password: 'pwd123',
|
||||
username: 'test',
|
||||
},
|
||||
@ -176,7 +176,7 @@ describe('ADMIN | HOOKS | useUsersForm | reducer', () => {
|
||||
};
|
||||
const expected = {
|
||||
modifiedData: {
|
||||
email: 'john@strapi.io',
|
||||
email: 'kai@strapi.io',
|
||||
password: 'pwd123',
|
||||
username: null,
|
||||
},
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
"Auth.form.button.reset-password": "Change password",
|
||||
"Auth.form.confirmPassword.label": "Confirmation Password",
|
||||
"Auth.form.email.label": "Email",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.placeholder": "kai@doe.com",
|
||||
"Auth.form.error.blocked": "Your account has been blocked by the administrator.",
|
||||
"Auth.form.error.code.provide": "Incorrect code provided.",
|
||||
"Auth.form.error.confirmed": "Your account email is not confirmed.",
|
||||
@ -26,7 +26,7 @@
|
||||
"Auth.form.error.user.not-exist": "This email does not exist.",
|
||||
"Auth.form.error.username.taken": "Username is already taken.",
|
||||
"Auth.form.firstname.label": "First name",
|
||||
"Auth.form.firstname.placeholder": "John",
|
||||
"Auth.form.firstname.placeholder": "Kai",
|
||||
"Auth.form.forgot-password.email.label": "Enter your email",
|
||||
"Auth.form.forgot-password.email.label.success": "Email successfully sent to",
|
||||
"Auth.form.lastname.label": "Last name",
|
||||
@ -35,7 +35,7 @@
|
||||
"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.rememberMe.label": "Remember me",
|
||||
"Auth.form.username.label": "Username",
|
||||
"Auth.form.username.placeholder": "John Doe",
|
||||
"Auth.form.username.placeholder": "Kai Doe",
|
||||
"Auth.link.forgot-password": "Forgot your password?",
|
||||
"Auth.link.ready": "Ready to sign in?",
|
||||
"Auth.link.signin": "Sign in",
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
"Auth.form.button.reset-password": "Cambiar contraseña",
|
||||
"Auth.form.confirmPassword.label": "Confirmación de contraseña",
|
||||
"Auth.form.email.label": "Correo electrónico",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.placeholder": "kai@doe.com",
|
||||
"Auth.form.error.blocked": "Su cuenta ha sido bloqueada por el administrador.",
|
||||
"Auth.form.error.code.provide": "Código incorrecto proporcionado.",
|
||||
"Auth.form.error.confirmed": "Su cuenta de correo no ha sido confirmada.",
|
||||
@ -35,7 +35,7 @@
|
||||
"Auth.form.register.news.label": "Mantenerme informado sobre las nuevas funciones y las próximas mejoras (al hacer esto, acepta las {terms} y la {policy}).",
|
||||
"Auth.form.rememberMe.label": "Recuérdame",
|
||||
"Auth.form.username.label": "Usuario",
|
||||
"Auth.form.username.placeholder": "John Doe",
|
||||
"Auth.form.username.placeholder": "Kai Doe",
|
||||
"Auth.link.forgot-password": "¿Olvidó su contraseña?",
|
||||
"Auth.link.ready": "¿Listo para iniciar sesión?",
|
||||
"Auth.link.signin": "Registrarse",
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
"Auth.form.button.reset-password": "Changez votre mot de passe",
|
||||
"Auth.form.confirmPassword.label": "Confirmation du mot de passe",
|
||||
"Auth.form.email.label": "Email",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.placeholder": "kai@doe.com",
|
||||
"Auth.form.error.blocked": "Votre compte a été bloqué par l'administrateur.",
|
||||
"Auth.form.error.code.provide": "Le code est incorrect.",
|
||||
"Auth.form.error.confirmed": "L'e-mail de votre compte n'est pas confirmé.",
|
||||
@ -32,7 +32,7 @@
|
||||
"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.rememberMe.label": "Se souvenir de moi",
|
||||
"Auth.form.username.label": "Nom d'utilisateur",
|
||||
"Auth.form.username.placeholder": "John Doe",
|
||||
"Auth.form.username.placeholder": "Kai Doe",
|
||||
"Auth.link.forgot-password": "Mot de passe oublié ?",
|
||||
"Auth.link.ready": "Prêt à vous connecter ?",
|
||||
"Auth.link.signin": "Connexion",
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
"Auth.form.button.reset-password": "שינוי סיסמה",
|
||||
"Auth.form.confirmPassword.label": "אישור סיסמה",
|
||||
"Auth.form.email.label": "דוא\"ל",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.placeholder": "kai@doe.com",
|
||||
"Auth.form.error.blocked": "החשבון נחסם על ידי מנהל המערכת.",
|
||||
"Auth.form.error.code.provide": "סופק קוד שגוי.",
|
||||
"Auth.form.error.confirmed": "הדוא\"ל של החשבון לא אושר.",
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
"Auth.form.button.reset-password": "Ganti kata sandi",
|
||||
"Auth.form.confirmPassword.label": "Konfirmasi Kata sandi",
|
||||
"Auth.form.email.label": "Email",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.placeholder": "kai@doe.com",
|
||||
"Auth.form.error.blocked": "Akun anda diblokir administator.",
|
||||
"Auth.form.error.code.provide": "Kode yang anda masukkan salah.",
|
||||
"Auth.form.error.confirmed": "Email anda belum dikonfirmasi.",
|
||||
@ -26,7 +26,7 @@
|
||||
"Auth.form.error.user.not-exist": "Email ini tidak terdaftar.",
|
||||
"Auth.form.error.username.taken": "Nama pengguna sudah dipakai.",
|
||||
"Auth.form.firstname.label": "Nama depan",
|
||||
"Auth.form.firstname.placeholder": "John",
|
||||
"Auth.form.firstname.placeholder": "Kai",
|
||||
"Auth.form.forgot-password.email.label": "Masukkan email Anda",
|
||||
"Auth.form.forgot-password.email.label.success": "Email berhasil dikirim ke",
|
||||
"Auth.form.lastname.label": "Nama belakang",
|
||||
@ -35,7 +35,7 @@
|
||||
"Auth.form.register.news.label": "Terus kabari saya tentang fitur baru dan peningkatan yang akan datang (dengan melakukan ini, Anda menerima {syarat} dan {kebijakan}).",
|
||||
"Auth.form.rememberMe.label": "Ingat saya",
|
||||
"Auth.form.username.label": "Nama pengguna",
|
||||
"Auth.form.username.placeholder": "John Doe",
|
||||
"Auth.form.username.placeholder": "Kai Doe",
|
||||
"Auth.link.forgot-password": "Lupa kata sandi?",
|
||||
"Auth.link.ready": "Siap masuk?",
|
||||
"Auth.link.signin": "Masuk",
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
"Auth.form.button.reset-password": "Cambia password",
|
||||
"Auth.form.confirmPassword.label": "Conferma Password",
|
||||
"Auth.form.email.label": "Email",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.placeholder": "kai@doe.com",
|
||||
"Auth.form.error.blocked": "Il tuo account è stato bloccato dall'amministratore.",
|
||||
"Auth.form.error.code.provide": "Codice fornito non corretto.",
|
||||
"Auth.form.error.confirmed": "La mail del tuo account non è stata confermata.",
|
||||
@ -26,7 +26,7 @@
|
||||
"Auth.form.error.user.not-exist": "Questa email non esiste.",
|
||||
"Auth.form.error.username.taken": "Nome utente già utilizzato.",
|
||||
"Auth.form.firstname.label": "Nome",
|
||||
"Auth.form.firstname.placeholder": "John",
|
||||
"Auth.form.firstname.placeholder": "Kai",
|
||||
"Auth.form.forgot-password.email.label": "Inserisci la tua email",
|
||||
"Auth.form.forgot-password.email.label.success": "Email inviata correttamente",
|
||||
"Auth.form.lastname.label": "Cognome",
|
||||
@ -35,7 +35,7 @@
|
||||
"Auth.form.register.news.label": "Tienimi aggiornata in merito a nuove funzionalità e futuri sviluppi (così facendo accetti {terms} e {policy}).",
|
||||
"Auth.form.rememberMe.label": "Ricordami",
|
||||
"Auth.form.username.label": "Nome utente",
|
||||
"Auth.form.username.placeholder": "John Doe",
|
||||
"Auth.form.username.placeholder": "Kai Doe",
|
||||
"Auth.link.forgot-password": "Password dimenticata?",
|
||||
"Auth.link.ready": "Sei pronto per accedere?",
|
||||
"Auth.link.signin": "Accedi",
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
"Auth.form.button.register": "등록",
|
||||
"Auth.form.button.reset-password": "패스워드 변경",
|
||||
"Auth.form.email.label": "이메일",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.placeholder": "kai@doe.com",
|
||||
"Auth.form.error.blocked": "관리자에 의해 접근이 제한된 계정입니다.",
|
||||
"Auth.form.error.code.provide": "유효하지 않은 코드입니다.",
|
||||
"Auth.form.error.confirmed": "이메일 인증이 필요합니다.",
|
||||
@ -27,7 +27,7 @@
|
||||
"Auth.form.register.news.label": "새 기능과 향후 개선 사항에 대한 최신 정보를 계속 제공해주세요 (선택시 {terms}과 {policy}에 동의하는 걸로 간주됩니다).",
|
||||
"Auth.form.rememberMe.label": "로그인 상태 저장",
|
||||
"Auth.form.username.label": "아이디",
|
||||
"Auth.form.username.placeholder": "JohnDoe",
|
||||
"Auth.form.username.placeholder": "KaiDoe",
|
||||
"Auth.link.forgot-password": "패스워드 재설정",
|
||||
"Auth.link.ready": "로그인 하시겠습니까?",
|
||||
"Auth.privacy-policy-agreement.policy": "개인정보 보호정책",
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
"Auth.form.button.register": "Klaar om te beginnen",
|
||||
"Auth.form.button.reset-password": "Wachtwoord wijzigen",
|
||||
"Auth.form.email.label": "E-mail",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.placeholder": "kai@doe.com",
|
||||
"Auth.form.error.blocked": "Uw account werd geblokkeerd door de administrator.",
|
||||
"Auth.form.error.code.provide": "Incorrecte code ingevoerd.",
|
||||
"Auth.form.error.confirmed": "Het e-mailadres voor uw account is nog niet bevestigd.",
|
||||
@ -27,7 +27,7 @@
|
||||
"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.rememberMe.label": "Onthoudt mij",
|
||||
"Auth.form.username.label": "Gebruikersnaam",
|
||||
"Auth.form.username.placeholder": "John Doe",
|
||||
"Auth.form.username.placeholder": "Kai Doe",
|
||||
"Auth.link.forgot-password": "Wachtwoord vergeten?",
|
||||
"Auth.link.ready": "Klaar om in te loggen?",
|
||||
"Auth.privacy-policy-agreement.policy": "privacybeleid",
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
"Auth.form.button.register": "Pronto para começar",
|
||||
"Auth.form.button.reset-password": "Alterar senha",
|
||||
"Auth.form.email.label": "E-mail",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.placeholder": "kai@doe.com",
|
||||
"Auth.form.error.blocked": "Sua conta foi bloqueada pelo administrador.",
|
||||
"Auth.form.error.code.provide": "Código incorreto fornecido.",
|
||||
"Auth.form.error.confirmed": "O email da sua conta não foi confirmado.",
|
||||
@ -27,7 +27,7 @@
|
||||
"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.rememberMe.label": "Lembre-se de mim",
|
||||
"Auth.form.username.label": "Nome de usuário",
|
||||
"Auth.form.username.placeholder": "John Doe",
|
||||
"Auth.form.username.placeholder": "Kai Doe",
|
||||
"Auth.link.forgot-password": "Esqueceu sua senha?",
|
||||
"Auth.link.ready": "Pronto para logar?",
|
||||
"Auth.privacy-policy-agreement.policy": "política de privacidade",
|
||||
|
||||
@ -26,7 +26,7 @@
|
||||
"Auth.form.register.news.label": "Manter-me atualizado sobre novas funcionalidades e futuras melhorias (ao fazê-lo, estás a aceitar os {terms} e a {policy}).",
|
||||
"Auth.form.rememberMe.label": "Lembrar-me",
|
||||
"Auth.form.username.label": "Nome de utilizador",
|
||||
"Auth.form.username.placeholder": "John Doe",
|
||||
"Auth.form.username.placeholder": "Kai Doe",
|
||||
"Auth.link.forgot-password": "Esqueceu-se da palavra-passe?",
|
||||
"Auth.link.ready": "Pronto para entrar?",
|
||||
"Auth.privacy-policy-agreement.policy": "política de privacidade",
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
"Auth.form.button.reset-password": "Сменить пароль",
|
||||
"Auth.form.confirmPassword.label": "Подтверждение пароля",
|
||||
"Auth.form.email.label": "Email",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.placeholder": "kai@doe.com",
|
||||
"Auth.form.error.blocked": "Ваш аккаунт был заблокирован администратором.",
|
||||
"Auth.form.error.code.provide": "Указан неверный код.",
|
||||
"Auth.form.error.confirmed": "Ваш e-mail не подтвержден.",
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
"Auth.form.button.reset-password": "เปลี่ยนรหัสผ่าน",
|
||||
"Auth.form.confirmPassword.label": "ยืนยันรหัสผ่าน",
|
||||
"Auth.form.email.label": "อีเมล",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.placeholder": "kai@doe.com",
|
||||
"Auth.form.error.blocked": "แอคเคาต์ของคุณถูกบล็อกโดยผู้ดูแลระบบ",
|
||||
"Auth.form.error.code.provide": "มีโค้ดที่ไม่ถูกต้อง",
|
||||
"Auth.form.error.confirmed": "อีเมลแอคเคาต์ของคุณไม่ได้รับการยืนยัน",
|
||||
@ -26,7 +26,7 @@
|
||||
"Auth.form.error.user.not-exist": "ไม่มีอีเมลนี้อยู่",
|
||||
"Auth.form.error.username.taken": "ชื่อผู้ใช้ถูกใช้อยู่แล้ว",
|
||||
"Auth.form.firstname.label": "ชื่อ",
|
||||
"Auth.form.firstname.placeholder": "John",
|
||||
"Auth.form.firstname.placeholder": "Kai",
|
||||
"Auth.form.forgot-password.email.label": "ป้อนอีเมลของคุณ",
|
||||
"Auth.form.forgot-password.email.label.success": "ส่งอีเมลไปยัง",
|
||||
"Auth.form.lastname.label": "นามสกุล",
|
||||
@ -35,7 +35,7 @@
|
||||
"Auth.form.register.news.label": "อัพเดตให้ฉันเกี่ยวกับคุณลักษณะใหม่และการปรับปรุงที่กำลังจะเกิดขึ้น (โดยการทำสิ่งนี้คุณยอมรับ {terms} และ {policy})",
|
||||
"Auth.form.rememberMe.label": "จำฉันไว้",
|
||||
"Auth.form.username.label": "ชื่อผู้ใช้",
|
||||
"Auth.form.username.placeholder": "John Doe",
|
||||
"Auth.form.username.placeholder": "Kai Doe",
|
||||
"Auth.link.forgot-password": "ลืมรหัสผ่านของคุณ?",
|
||||
"Auth.link.ready": "พร้อมที่จะลงชื่อเข้าใช้?",
|
||||
"Auth.link.signin": "ลงชื่อเข้าใช้",
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
"Auth.form.button.register": "Başlamaya hazır",
|
||||
"Auth.form.button.reset-password": "Şifre değiştir",
|
||||
"Auth.form.email.label": "E-posta",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.placeholder": "kai@doe.com",
|
||||
"Auth.form.error.blocked": "Hesabınız yönetici tarafından engellendi.",
|
||||
"Auth.form.error.code.provide": "Geçersiz sağlanmış kod.",
|
||||
"Auth.form.error.confirmed": "Tanımladığınız e-posta onaylanmadı.",
|
||||
@ -28,7 +28,7 @@
|
||||
"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.rememberMe.label": "Beni hatırla",
|
||||
"Auth.form.username.label": "Kullanıcı Adı",
|
||||
"Auth.form.username.placeholder": "John Doe",
|
||||
"Auth.form.username.placeholder": "Kai Doe",
|
||||
"Auth.link.forgot-password": "Parolanızı mı unuttunuz ?",
|
||||
"Auth.link.ready": "Zaten kayıtlı mısınız?",
|
||||
"Auth.privacy-policy-agreement.policy": "gizlilik sözleşmesi",
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
"Auth.form.button.register": "Sẵn sàng để bắt đầu",
|
||||
"Auth.form.button.reset-password": "Đổi mật khẩu",
|
||||
"Auth.form.email.label": "Email",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.placeholder": "kai@doe.com",
|
||||
"Auth.form.error.blocked": "Tài khoản của bạn bị khóa bởi người quản trị",
|
||||
"Auth.form.error.code.provide": "Mã sai đã được cung cấp.",
|
||||
"Auth.form.error.confirmed": "Email của tài khoản của bạn chưa được xác nhận.",
|
||||
@ -27,7 +27,7 @@
|
||||
"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.rememberMe.label": "Nhớ tôi",
|
||||
"Auth.form.username.label": "Tên đăng nhập",
|
||||
"Auth.form.username.placeholder": "John Doe",
|
||||
"Auth.form.username.placeholder": "Kai Doe",
|
||||
"Auth.link.forgot-password": "Quên mật khẩu của bạn?",
|
||||
"Auth.link.ready": "Sẵn sàng đăng nhập?",
|
||||
"Auth.privacy-policy-agreement.policy": "chính sách bảo mật",
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
"Auth.form.button.register": "准备开始",
|
||||
"Auth.form.button.reset-password": "修改密码",
|
||||
"Auth.form.email.label": "邮箱",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.placeholder": "kai@doe.com",
|
||||
"Auth.form.error.blocked": "您的帐户已被管理员禁用。",
|
||||
"Auth.form.error.code.provide": "提供代码的代码不正确。",
|
||||
"Auth.form.error.confirmed": "您的帐户电子邮件还未得到确认。",
|
||||
@ -27,7 +27,7 @@
|
||||
"Auth.form.register.news.label": "让我随时了解新功能和即将进行的改进(如果要这样做,您需要接受 {terms} 和 {policy} )。",
|
||||
"Auth.form.rememberMe.label": "记住我",
|
||||
"Auth.form.username.label": "用户名",
|
||||
"Auth.form.username.placeholder": "John Doe",
|
||||
"Auth.form.username.placeholder": "Kai Doe",
|
||||
"Auth.link.forgot-password": "忘记密码了吗?",
|
||||
"Auth.link.ready": "准备好登录?",
|
||||
"Auth.privacy-policy-agreement.policy": "隐私政策",
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
"Auth.form.button.register": "準備開始",
|
||||
"Auth.form.button.reset-password": "更改密碼",
|
||||
"Auth.form.email.label": "Email",
|
||||
"Auth.form.email.placeholder": "johndoe@gmail.com",
|
||||
"Auth.form.email.placeholder": "kai@doe.com",
|
||||
"Auth.form.error.blocked": "您的帳號已經被系統管理員停用。",
|
||||
"Auth.form.error.code.provide": "提供的令符不正確",
|
||||
"Auth.form.error.confirmed": "您的電子郵件地址尚未經過認證。",
|
||||
@ -26,7 +26,7 @@
|
||||
"Auth.form.password.label": "密碼",
|
||||
"Auth.form.rememberMe.label": "記住我",
|
||||
"Auth.form.username.label": "使用者名稱",
|
||||
"Auth.form.username.placeholder": "John Doe",
|
||||
"Auth.form.username.placeholder": "Kai Doe",
|
||||
"Auth.link.forgot-password": "忘記密碼了嗎?",
|
||||
"Auth.link.ready": "準備登入了嗎?",
|
||||
"Content Manager": "資料管理",
|
||||
|
||||
@ -6,9 +6,9 @@ const userController = require('../user');
|
||||
describe('User Controller', () => {
|
||||
describe('Create User', () => {
|
||||
const body = {
|
||||
firstname: 'John',
|
||||
firstname: 'Kai',
|
||||
lastname: 'Doe',
|
||||
email: 'johndoe@email.com',
|
||||
email: 'kaidoe@email.com',
|
||||
roles: [1, 2],
|
||||
};
|
||||
|
||||
@ -66,9 +66,9 @@ describe('User Controller', () => {
|
||||
describe('Find a user by its ID', () => {
|
||||
const user = {
|
||||
id: 1,
|
||||
firstname: 'John',
|
||||
firstname: 'Kai',
|
||||
lastname: 'Doe',
|
||||
email: 'johndoe@email.com',
|
||||
email: 'kaidoe@email.com',
|
||||
roles: [1, 2],
|
||||
};
|
||||
|
||||
@ -117,16 +117,16 @@ describe('User Controller', () => {
|
||||
const users = [
|
||||
{
|
||||
id: 1,
|
||||
firstname: 'John',
|
||||
firstname: 'Kai',
|
||||
lastname: 'Doe',
|
||||
email: 'johndoe@email.com',
|
||||
email: 'kaidoe@email.com',
|
||||
roles: [1, 2],
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
firstname: 'Doe',
|
||||
lastname: 'John',
|
||||
email: 'doejohn@email.com',
|
||||
lastname: 'Kai',
|
||||
email: 'doekai@email.com',
|
||||
roles: [3],
|
||||
},
|
||||
];
|
||||
@ -185,9 +185,9 @@ describe('User Controller', () => {
|
||||
describe('Update user', () => {
|
||||
const user = {
|
||||
id: 1,
|
||||
firstname: 'John',
|
||||
firstname: 'Kai',
|
||||
lastname: 'Doe',
|
||||
email: 'johndoe@email.com',
|
||||
email: 'kaidoe@email.com',
|
||||
roles: [1, 2],
|
||||
};
|
||||
|
||||
|
||||
@ -14,10 +14,10 @@ describe('Permissions Manager', () => {
|
||||
});
|
||||
|
||||
test('It should returns a valid query from the ability', () => {
|
||||
const ability = defineAbility(can => can('read', 'foo', ['bar'], { john: 'doe' }));
|
||||
const ability = defineAbility(can => can('read', 'foo', ['bar'], { kai: 'doe' }));
|
||||
const pm = createPermissionsManager(ability, 'read', 'foo');
|
||||
|
||||
const expected = { _or: [{ john: 'doe' }] };
|
||||
const expected = { _or: [{ kai: 'doe' }] };
|
||||
|
||||
expect(pm.query).toStrictEqual(expected);
|
||||
});
|
||||
@ -67,7 +67,7 @@ describe('Permissions Manager', () => {
|
||||
describe('pickPermittedFieldsOf', () => {
|
||||
const ability = defineAbility(can => {
|
||||
can('read', 'article', ['title'], { title: 'foo' });
|
||||
can('edit', 'article', ['title'], { title: { $in: ['john', 'doe'] } });
|
||||
can('edit', 'article', ['title'], { title: { $in: ['kai', 'doe'] } });
|
||||
});
|
||||
const pm = createPermissionsManager(ability, 'read', 'article');
|
||||
|
||||
@ -105,7 +105,7 @@ describe('Permissions Manager', () => {
|
||||
});
|
||||
|
||||
test('Sanitize an array of objects', () => {
|
||||
const input = [{ title: 'foo' }, { title: 'john' }];
|
||||
const input = [{ title: 'foo' }, { title: 'kai' }];
|
||||
const expected = [{ title: 'foo' }, {}];
|
||||
|
||||
const res = pm.pickPermittedFieldsOf(input);
|
||||
|
||||
@ -15,7 +15,7 @@ describe('Condition Provider', () => {
|
||||
handler: jest.fn(() => true),
|
||||
},
|
||||
{
|
||||
name: 'john',
|
||||
name: 'kai',
|
||||
plugin: 'test',
|
||||
category: 'default',
|
||||
handler: jest.fn(() => false),
|
||||
@ -79,16 +79,16 @@ describe('Condition Provider', () => {
|
||||
provider.registerMany(conditions);
|
||||
|
||||
const resFoo = provider.get('foo', 'test');
|
||||
const resJohn = provider.get('john', 'test');
|
||||
const resKai = provider.get('kai', 'test');
|
||||
|
||||
expect(provider.register).toHaveBeenCalledTimes(2);
|
||||
expect(provider.has).toHaveBeenCalledTimes(2);
|
||||
|
||||
expect(resFoo).toMatchObject(createCondition(conditions[0]));
|
||||
expect(resJohn).toMatchObject(createCondition(conditions[1]));
|
||||
expect(resKai).toMatchObject(createCondition(conditions[1]));
|
||||
|
||||
expect(resFoo.handler()).toBe(true);
|
||||
expect(resJohn.handler()).toBe(false);
|
||||
expect(resKai.handler()).toBe(false);
|
||||
|
||||
expect(conditions[0].handler).toHaveBeenCalled();
|
||||
expect(conditions[1].handler).toHaveBeenCalled();
|
||||
@ -110,7 +110,7 @@ describe('Condition Provider', () => {
|
||||
test('Returns an array of all the conditions key', () => {
|
||||
const conditions = localTestData.conditions;
|
||||
|
||||
const expected = ['plugins::test.foo', 'plugins::test.john'];
|
||||
const expected = ['plugins::test.foo', 'plugins::test.kai'];
|
||||
|
||||
provider.registerMany(conditions);
|
||||
|
||||
|
||||
@ -21,8 +21,8 @@ describe('Permissions Engine', () => {
|
||||
title: 'admin',
|
||||
roles: [{ id: 1 }],
|
||||
},
|
||||
john: {
|
||||
firstname: 'John',
|
||||
kai: {
|
||||
firstname: 'Kai',
|
||||
title: 'admin',
|
||||
roles: [{ id: 3 }],
|
||||
},
|
||||
@ -225,7 +225,7 @@ describe('Permissions Engine', () => {
|
||||
let ability;
|
||||
|
||||
beforeAll(async () => {
|
||||
const user = getUser('john');
|
||||
const user = getUser('kai');
|
||||
ability = await engine.generateUserAbility(user);
|
||||
});
|
||||
|
||||
|
||||
@ -48,7 +48,7 @@ describe('User', () => {
|
||||
},
|
||||
};
|
||||
|
||||
const input = { firstname: 'John', lastname: 'Doe', email: 'johndoe@email.com' };
|
||||
const input = { firstname: 'Kai', lastname: 'Doe', email: 'kaidoe@email.com' };
|
||||
const expected = { ...input, isActive: false, roles: [], registrationToken: 'token' };
|
||||
|
||||
const result = await userService.create(input);
|
||||
@ -78,9 +78,9 @@ describe('User', () => {
|
||||
};
|
||||
|
||||
const input = {
|
||||
firstname: 'John',
|
||||
firstname: 'Kai',
|
||||
lastname: 'Doe',
|
||||
email: 'johndoe@email.com',
|
||||
email: 'kaidoe@email.com',
|
||||
password: 'Pcw123',
|
||||
};
|
||||
const expected = {
|
||||
@ -120,9 +120,9 @@ describe('User', () => {
|
||||
};
|
||||
|
||||
const input = {
|
||||
firstname: 'John',
|
||||
firstname: 'Kai',
|
||||
lastname: 'Doe',
|
||||
email: 'johndoe@email.com',
|
||||
email: 'kaidoe@email.com',
|
||||
roles: [2],
|
||||
isActive: true,
|
||||
registrationToken: 'another-token',
|
||||
@ -387,7 +387,7 @@ describe('User', () => {
|
||||
});
|
||||
|
||||
describe('Fetch user', () => {
|
||||
const user = { firstname: 'John', lastname: 'Doe', email: 'johndoe@email.com' };
|
||||
const user = { firstname: 'Kai', lastname: 'Doe', email: 'kaidoe@email.com' };
|
||||
|
||||
beforeEach(() => {
|
||||
const findOne = jest.fn(({ id }) =>
|
||||
|
||||
@ -22,19 +22,13 @@ describe('Testing Content Manager createPages', function() {
|
||||
.wait(1000);
|
||||
|
||||
Cypress.Commands.add('ctmTagLink', () => {
|
||||
return cy.get(
|
||||
'a[href="/admin/plugins/content-manager/tag?source=content-manager"]'
|
||||
);
|
||||
return cy.get('a[href="/admin/plugins/content-manager/tag?source=content-manager"]');
|
||||
});
|
||||
Cypress.Commands.add('ctmProductLink', () => {
|
||||
return cy.get(
|
||||
'a[href="/admin/plugins/content-manager/product?source=content-manager"]'
|
||||
);
|
||||
return cy.get('a[href="/admin/plugins/content-manager/product?source=content-manager"]');
|
||||
});
|
||||
Cypress.Commands.add('ctmCategoryLink', () => {
|
||||
return cy.get(
|
||||
'a[href="/admin/plugins/content-manager/category?source=content-manager"]'
|
||||
);
|
||||
return cy.get('a[href="/admin/plugins/content-manager/category?source=content-manager"]');
|
||||
});
|
||||
Cypress.Commands.add('ctmAddButton', () => {
|
||||
return cy.get('button#addEntry');
|
||||
@ -338,9 +332,7 @@ describe('Testing Content Manager createPages', function() {
|
||||
.get('tbody > tr:nth-child(2)')
|
||||
.click()
|
||||
.wait(1000)
|
||||
.get(
|
||||
'ul#sortableListOfproducts > li:nth-child(1) > div:nth-child(2) > img'
|
||||
)
|
||||
.get('ul#sortableListOfproducts > li:nth-child(1) > div:nth-child(2) > img')
|
||||
.click()
|
||||
.submitForm()
|
||||
.ctmProductLink()
|
||||
@ -369,7 +361,7 @@ describe('Testing Content Manager createPages', function() {
|
||||
name: 'MacBook',
|
||||
description: 'A laptop',
|
||||
price: 2000,
|
||||
email: 'john@strapi.io',
|
||||
email: 'kai@strapi.io',
|
||||
};
|
||||
const product2 = {
|
||||
name: 'Dell',
|
||||
@ -403,9 +395,7 @@ describe('Testing Content Manager createPages', function() {
|
||||
expect(children).to.have.length(1);
|
||||
expect(children[0].innerText.trim()).to.equal('product1');
|
||||
})
|
||||
.get(
|
||||
'ul#sortableListOfproducts > li:nth-child(1) > div:nth-child(2) > img'
|
||||
)
|
||||
.get('ul#sortableListOfproducts > li:nth-child(1) > div:nth-child(2) > img')
|
||||
.click()
|
||||
.get('input#products')
|
||||
.type('mac', { force: true })
|
||||
|
||||
@ -25,13 +25,13 @@
|
||||
"Policies.header.title": "إعدادات متقدمة",
|
||||
"PopUpForm.Email.email_templates.inputDescription": "إذا كنت غير متأكد من كيفية استخدام المتغيرات ، {link}",
|
||||
"PopUpForm.Email.options.from.email.label": "البريد الإلكتروني للشاحن",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "أسم المورد",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "الرسالة",
|
||||
"PopUpForm.Email.options.object.label": "موضوع",
|
||||
"PopUpForm.Email.options.response_email.label": "البريد الإلكتروني للاستجابة",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "في حالة التعطيل ، لن يتمكن المستخدمون من استخدام هذا الموفر.",
|
||||
"PopUpForm.Providers.enabled.label": "مفعل",
|
||||
"PopUpForm.Providers.key.label": "معرف العميل",
|
||||
|
||||
@ -29,13 +29,13 @@
|
||||
"Policies.header.title": "Fortgeschrittene Einstellungen",
|
||||
"PopUpForm.Email.email_templates.inputDescription": "Für mehr Informationen, {link}",
|
||||
"PopUpForm.Email.options.from.email.label": "E-Mail-Adresse des Absenders",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "Name des Absenders",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "Nachricht",
|
||||
"PopUpForm.Email.options.object.label": "Betreff",
|
||||
"PopUpForm.Email.options.response_email.label": "Antwort E-Mail-Adresse",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "Wenn deaktiviert, kann diese Methode nicht verwendet werden.",
|
||||
"PopUpForm.Providers.enabled.label": "Aktivieren",
|
||||
"PopUpForm.Providers.key.label": "Client ID",
|
||||
|
||||
@ -34,14 +34,14 @@
|
||||
"PopUpForm.Email.email_templates.inputDescription": "If you're unsure how to use variables, {link}",
|
||||
"PopUpForm.Email.link.documentation": "check out our documentation.",
|
||||
"PopUpForm.Email.options.from.email.label": "Shipper email",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "Shipper name",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "Message",
|
||||
"PopUpForm.Email.options.object.label": "Subject",
|
||||
"PopUpForm.Email.options.object.placeholder": "Please confirm your email address for %APP_NAME%",
|
||||
"PopUpForm.Email.options.response_email.label": "Response email",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "If disabled, users won't be able to use this provider.",
|
||||
"PopUpForm.Providers.enabled.label": "Enable",
|
||||
"PopUpForm.Providers.key.label": "Client ID",
|
||||
|
||||
@ -36,14 +36,14 @@
|
||||
"PopUpForm.Email.email_templates.inputDescription": "Si no estás seguro de cómo usar las variables, {link}",
|
||||
"PopUpForm.Email.link.documentation": "consulte nuestra documentación.",
|
||||
"PopUpForm.Email.options.from.email.label": "Email del remitente",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "Nombre del remitente",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "Mensaje",
|
||||
"PopUpForm.Email.options.object.label": "Tema",
|
||||
"PopUpForm.Email.options.object.placeholder": "Confirma tu dirección de correo electrónico para %APP_NAME%",
|
||||
"PopUpForm.Email.options.response_email.label": "Email de respuesta",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "Si está desactivado, los usuarios no podrán utilizar este proveedor.",
|
||||
"PopUpForm.Providers.enabled.label": "Habilitar",
|
||||
"PopUpForm.Providers.key.label": "ID de cliente",
|
||||
|
||||
@ -34,14 +34,14 @@
|
||||
"PopUpForm.Email.email_templates.inputDescription": "Jika Anda tidak yakin bagaimana menggunakan variabel, {link}",
|
||||
"PopUpForm.Email.link.documentation": "lihat dokumentasi kami.",
|
||||
"PopUpForm.Email.options.from.email.label": "Email pengirim",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "Nama pengirim",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "Pesan",
|
||||
"PopUpForm.Email.options.object.label": "Subyek",
|
||||
"PopUpForm.Email.options.object.placeholder": "Harap konfirmasi alamat email Anda untuk% APP_NAME%",
|
||||
"PopUpForm.Email.options.response_email.label": "Email tanggapan",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "Jika dinonaktifkan, pengguna tidak akan dapat menggunakan penyedia ini.",
|
||||
"PopUpForm.Providers.enabled.label": "Memungkinkan",
|
||||
"PopUpForm.Providers.key.label": "ID Klien",
|
||||
|
||||
@ -24,13 +24,13 @@
|
||||
"Policies.header.title": "Impostazioni avanzate",
|
||||
"PopUpForm.Email.email_templates.inputDescription": "Se non sai bene come usare le variabili, {link}",
|
||||
"PopUpForm.Email.options.from.email.label": "Email del mittente",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "Nome del mittente",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "Messaggio",
|
||||
"PopUpForm.Email.options.object.label": "Soggetto",
|
||||
"PopUpForm.Email.options.response_email.label": "Email di risposta",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "Se disabilitato, gli utenti non potranno usare questo provider.",
|
||||
"PopUpForm.Providers.enabled.label": "Abilita",
|
||||
"PopUpForm.Providers.key.placeholder": "TEXT",
|
||||
|
||||
@ -29,13 +29,13 @@
|
||||
"Policies.header.title": "高度な設定",
|
||||
"PopUpForm.Email.email_templates.inputDescription": "変数の使用方法がわからない場合は、{link}",
|
||||
"PopUpForm.Email.options.from.email.label": "送信者Eメール",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "送信者名",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "メッセージ",
|
||||
"PopUpForm.Email.options.object.label": "件名",
|
||||
"PopUpForm.Email.options.response_email.label": "応答メール",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "無効にすると、ユーザーはこのプロバイダを使用できなくなります。",
|
||||
"PopUpForm.Providers.enabled.label": "有効にする",
|
||||
"PopUpForm.Providers.key.label": "クライアントID",
|
||||
|
||||
@ -31,13 +31,13 @@
|
||||
"Policies.header.title": "고급 설정",
|
||||
"PopUpForm.Email.email_templates.inputDescription": "이메일 템플릿 문법은 이 {link}를 확인하세요.",
|
||||
"PopUpForm.Email.options.from.email.label": "보내는 이메일",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "보내는 사람",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "내용",
|
||||
"PopUpForm.Email.options.object.label": "제목",
|
||||
"PopUpForm.Email.options.response_email.label": "응답받을 이메일",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "사용하지 않을 경우 이 프로바이더(provider) 기능을 이용할 수 없습니다.",
|
||||
"PopUpForm.Providers.enabled.label": "사용",
|
||||
"PopUpForm.Providers.key.label": "클라이언트 ID(Client ID)",
|
||||
|
||||
@ -31,13 +31,13 @@
|
||||
"Policies.header.title": "Tetapan lanjut",
|
||||
"PopUpForm.Email.email_templates.inputDescription": "Sekiranya anda tidak pasti cara menggunakan pemboleh ubah, {link} ",
|
||||
"PopUpForm.Email.options.from.email.label": "E-mel penghantar",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "Nama pengirim",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "Mesej",
|
||||
"PopUpForm.Email.options.object.label": "Subjek",
|
||||
"PopUpForm.Email.options.response_email.label": "E-mel jawapan",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "Sekiranya dinyahaktifkan, pengguna tidak akan dapat menggunakan pembekal ini.",
|
||||
"PopUpForm.Providers.enabled.label": "Aktifkan",
|
||||
"PopUpForm.Providers.key.label": "ID Pelanggan",
|
||||
|
||||
@ -29,13 +29,13 @@
|
||||
"Policies.header.title": "Geavanceerde instellingen",
|
||||
"PopUpForm.Email.email_templates.inputDescription": "Als je niet zeker weet hoe je variabelen moet gebruiken, {link}",
|
||||
"PopUpForm.Email.options.from.email.label": "Afzender e-mail",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "Afzender naam",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "Bericht",
|
||||
"PopUpForm.Email.options.object.label": "Onderwerp",
|
||||
"PopUpForm.Email.options.response_email.label": "Antwoord e-mail",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "Als deze uitgeschakeld is kunnen gebruikers geen gebruik maken van deze leverancier.",
|
||||
"PopUpForm.Providers.enabled.label": "Inschakelen",
|
||||
"PopUpForm.Providers.key.label": "Client ID",
|
||||
|
||||
@ -25,13 +25,13 @@
|
||||
"Policies.header.title": "Configurações avançadas",
|
||||
"PopUpForm.Email.email_templates.inputDescription": "Se não tiver certeza de como usar variáveis, {link}",
|
||||
"PopUpForm.Email.options.from.email.label": "Email do remetente",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "Nome do remetente",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "Mensagem",
|
||||
"PopUpForm.Email.options.object.label": "Assunto",
|
||||
"PopUpForm.Email.options.response_email.label": "Email de resposta",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "Se desativado, os usuários não poderão usar este provedor",
|
||||
"PopUpForm.Providers.enabled.label": "Ativar",
|
||||
"PopUpForm.Providers.key.label": "ID do cliente",
|
||||
|
||||
@ -29,13 +29,13 @@
|
||||
"Policies.header.title": "Configurações avançadas",
|
||||
"PopUpForm.Email.email_templates.inputDescription": "Se não tem a certeza de como usar as variáveis, {link}",
|
||||
"PopUpForm.Email.options.from.email.label": "Shipper email",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "Shipper name",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "Mensagem",
|
||||
"PopUpForm.Email.options.object.label": "Assunto",
|
||||
"PopUpForm.Email.options.response_email.label": "Email de resposta",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "Se desativado, os utilizadores não conseguirão utilizar este serviço de autenticação.",
|
||||
"PopUpForm.Providers.enabled.label": "Ativar",
|
||||
"PopUpForm.Providers.key.label": "ID de Client",
|
||||
|
||||
@ -34,14 +34,14 @@
|
||||
"PopUpForm.Email.email_templates.inputDescription": "Если вы не уверены как использовать переменные, {link}",
|
||||
"PopUpForm.Email.link.documentation": "ознакомьтесь с нашей документацией.",
|
||||
"PopUpForm.Email.options.from.email.label": "Адрес отправителя",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "Имя отправителя",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "Сообщение",
|
||||
"PopUpForm.Email.options.object.label": "Тема",
|
||||
"PopUpForm.Email.options.object.placeholder": "Пожалуйста, подтвердите свой адрес электронной почты для %APP_NAME%",
|
||||
"PopUpForm.Email.options.response_email.label": "Адрес для ответа",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "Если отключено, пользователи не смогут использовать этот провайдер.",
|
||||
"PopUpForm.Providers.enabled.label": "Включить",
|
||||
"PopUpForm.Providers.key.label": "Client ID",
|
||||
|
||||
@ -34,14 +34,14 @@
|
||||
"PopUpForm.Email.email_templates.inputDescription": "Om du är osäker på hur du använder variabler, {link}",
|
||||
"PopUpForm.Email.link.documentation": "Kolla in vår dokumentation.",
|
||||
"PopUpForm.Email.options.from.email.label": "Avsändarens e-postadress",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "Avsändarens namn",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "Meddelande",
|
||||
"PopUpForm.Email.options.object.label": "Ämne",
|
||||
"PopUpForm.Email.options.object.placeholder": "Bekräfta din e-postadress för %APP_NAME%",
|
||||
"PopUpForm.Email.options.response_email.label": "Svarsmail",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "Om inaktiverat kan användarna inte använda den här leverantören.",
|
||||
"PopUpForm.Providers.enabled.label": "Tillåt",
|
||||
"PopUpForm.Providers.key.label": "Klient ID",
|
||||
|
||||
@ -35,14 +35,14 @@
|
||||
"PopUpForm.Email.email_templates.inputDescription": "ถ้าคุณไม่แน่ใจว่าจะใช้ตัวแปรอย่างไร {link}",
|
||||
"PopUpForm.Email.link.documentation": "ดูเอกสารของเราสิ",
|
||||
"PopUpForm.Email.options.from.email.label": "อีเมล Shipper",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "ชื่อ Shipper",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "ข้อความ",
|
||||
"PopUpForm.Email.options.object.label": "เรื่อง",
|
||||
"PopUpForm.Email.options.object.placeholder": "โปรดยืนยันอีเมลแอดเดรสของคุณสำหรับ % APP _ NAME %",
|
||||
"PopUpForm.Email.options.response_email.label": "อีเมลตอบกลับ",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "ถ้าปิดใช้งาน, ผู้ใช้จะไม่สามารถใช้ผู้ให้บริการนี้ได้",
|
||||
"PopUpForm.Providers.enabled.label": "เปิดใช้งาน",
|
||||
"PopUpForm.Providers.key.label": "ID ไคลเอ็นต์",
|
||||
|
||||
@ -29,13 +29,13 @@
|
||||
"Policies.header.title": "Gelişmiş Ayarlar",
|
||||
"PopUpForm.Email.email_templates.inputDescription": "Değişkenleri nasıl kullanacağınızdan emin değilseniz, {link}",
|
||||
"PopUpForm.Email.options.from.email.label": "Gönderenin E-posta",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "Gönderenin adı",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "Mesaj",
|
||||
"PopUpForm.Email.options.object.label": "Konu",
|
||||
"PopUpForm.Email.options.response_email.label": "Yanıt e-postası",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "Devre dışı bırakıldıysa kullanıcılar bu sağlayıcıyı kullanamaz.",
|
||||
"PopUpForm.Providers.enabled.label": "Etkinleştirme",
|
||||
"PopUpForm.Providers.key.label": "Web istemcisi ID",
|
||||
|
||||
@ -31,13 +31,13 @@
|
||||
"Policies.header.title": "Розширені налашрування",
|
||||
"PopUpForm.Email.email_templates.inputDescription": "Якщо ви не впевнені, як використовувати змінні, {link}",
|
||||
"PopUpForm.Email.options.from.email.label": "Email відправника",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "Ім'я відправника",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "Повідомлення",
|
||||
"PopUpForm.Email.options.object.label": "Тема",
|
||||
"PopUpForm.Email.options.response_email.label": "Email для відповіді",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "Якщо вимкнуто, користувачі не зможуть вікористати цей провайдер.",
|
||||
"PopUpForm.Providers.enabled.label": "Увімкнути",
|
||||
"PopUpForm.Providers.key.label": "Client ID",
|
||||
|
||||
@ -31,13 +31,13 @@
|
||||
"Policies.header.title": "Các cài đặt nâng cao",
|
||||
"PopUpForm.Email.email_templates.inputDescription": "Nếu bạn không chắc sử dụng các biến như thế nào, {link}",
|
||||
"PopUpForm.Email.options.from.email.label": "Email người gửi",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "Tên người gửi",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "Thông điệp",
|
||||
"PopUpForm.Email.options.object.label": "Chủ đề",
|
||||
"PopUpForm.Email.options.response_email.label": "Email phản hồi",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "Nếu không kích hoạt, người dùng sẽ không thể dùng nhà cung cấp này.",
|
||||
"PopUpForm.Providers.enabled.label": "Kích hoạt",
|
||||
"PopUpForm.Providers.key.label": "Client ID",
|
||||
|
||||
@ -31,13 +31,13 @@
|
||||
"Policies.header.title": "高级设置",
|
||||
"PopUpForm.Email.email_templates.inputDescription": "如果你不确定如何使用变量, {link}",
|
||||
"PopUpForm.Email.options.from.email.label": "Shipper 电子邮件地址",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "Shipper 名称",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "消息",
|
||||
"PopUpForm.Email.options.object.label": "主题",
|
||||
"PopUpForm.Email.options.response_email.label": "回复电子邮件",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "如果禁用,用户将无法使用此供应商。",
|
||||
"PopUpForm.Providers.enabled.label": "启用",
|
||||
"PopUpForm.Providers.key.label": "Client ID",
|
||||
|
||||
@ -29,13 +29,13 @@
|
||||
"Policies.header.title": "進階設定",
|
||||
"PopUpForm.Email.email_templates.inputDescription": "如果您不確定要怎麼使用變數,請 {link}",
|
||||
"PopUpForm.Email.options.from.email.label": "寄件人地址",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.from.email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Email.options.from.name.label": "寄件人名稱",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "John Doe",
|
||||
"PopUpForm.Email.options.from.name.placeholder": "Kai Doe",
|
||||
"PopUpForm.Email.options.message.label": "訊息",
|
||||
"PopUpForm.Email.options.object.label": "主旨",
|
||||
"PopUpForm.Email.options.response_email.label": "回覆地址",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
|
||||
"PopUpForm.Email.options.response_email.placeholder": "kai@doe.com",
|
||||
"PopUpForm.Providers.enabled.description": "如果停用,使用者將無法使用這個驗證方式",
|
||||
"PopUpForm.Providers.enabled.label": "啟用",
|
||||
"PopUpForm.Providers.key.label": "客戶端 ID",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user