Files
freeplanet/src/i18n.js

107 lines
3.5 KiB
JavaScript
Raw Normal View History

2018-10-12 16:42:54 +02:00
const messages = {
2018-10-14 22:10:00 +02:00
it: {
msg: {
2018-10-26 00:30:10 +02:00
hello: 'Buongiorno',
2018-10-14 22:10:00 +02:00
myAppName: 'FreePlanet',
myDescriz: 'La prima App Libera e per Tutti'
},
reg: {
2018-10-26 22:25:35 +02:00
incorso: 'Registrazione in corso...',
2018-10-20 18:56:31 +02:00
richiesto: 'Campo Richiesto',
2018-10-14 22:10:00 +02:00
email: 'Email',
username : 'Nome Utente',
password: 'Password',
repeatPassword: 'Ripeti password',
2018-10-26 22:25:35 +02:00
terms: "Accetto i termini e le condizioni",
submit: "Registrati",
2018-10-25 01:51:29 +02:00
title_verif_reg: "Verifica Registrazione",
2018-10-26 22:25:35 +02:00
verificato: "Verificato",
non_verificato: "Non Verificato",
forgetpassword:"Password dimenticata?",
2018-10-14 22:10:00 +02:00
err: {
required: 'è richiesto',
email: 'dev\'essere una email valida',
errore_generico: 'Si prega di compilare correttamente i campi',
atleast: 'dev\'essere lungo almeno di',
notmore: 'non dev\'essere lungo più di',
char: 'caratteri',
2018-10-15 02:50:06 +02:00
terms: 'Devi accettare le condizioni, per continuare.',
2018-10-15 21:04:28 +02:00
duplicate_email: 'l\'Email è già stata registrata',
duplicate_username: 'L\'Username è stato già utilizzato',
sameaspassword: 'Le password devono essere identiche',
2018-10-14 22:10:00 +02:00
}
},
2018-10-26 00:30:10 +02:00
login:{
2018-10-26 22:25:35 +02:00
incorso: 'Login in corso',
2018-10-26 00:30:10 +02:00
enter: 'Login',
errato: "Username o password errata. Riprovare",
2018-10-26 22:25:35 +02:00
completato: 'Login effettuato!',
},
reset: {
title_reset_pwd: "Reimposta la tua Password",
send_reset_pwd: 'Invia Reimposta la password',
incorso: 'Richiesta Nuova Email...',
email_sent:'Email inviata',
check_email: 'Controlla la tua email, ti arriverà un messaggio con un link per reimpostare la tua password. Questo link, per sicurezza, scadrà dopo 4 ore.',
title_update_pwd: 'Aggiorna la tua password',
update_password: 'Aggiorna Password',
},
2018-10-26 22:25:35 +02:00
logout:{
uscito: 'Sei Uscito',
},
2018-10-14 22:10:00 +02:00
},
2018-10-12 16:42:54 +02:00
enUs: {
msg: {
hello: 'Hello!',
myAppName: 'FreePlanet',
myDescriz: 'The first Free app for Everyone'
2018-10-14 22:10:00 +02:00
},
reg: {
2018-10-26 22:25:35 +02:00
incorso: 'Registration please wait...',
2018-10-20 18:56:31 +02:00
richiesto: 'Field Required',
2018-10-14 22:10:00 +02:00
email: 'Email',
username : 'Username',
password: 'Password',
repeatPassword: 'Repeat password',
2018-10-26 22:25:35 +02:00
terms: "I agree with the terms and conditions",
submit: "Submit",
2018-10-25 01:51:29 +02:00
title_verif_reg: "Verify Registration",
2018-10-26 22:25:35 +02:00
verificato: "Verified",
non_verificato: "Not Verified",
forgetpassword:"Forget Password?",
2018-10-14 22:10:00 +02:00
err: {
required: 'is required',
email: 'must be a valid email',
errore_generico: 'Please review fields again',
atleast: 'must be at least',
notmore: 'must not be more than',
char: 'characters long',
2018-10-15 02:50:06 +02:00
terms: 'You need to agree with the terms & conditions.',
duplicate_email: 'Email was already registered',
duplicate_username: 'Username is already taken',
sameaspassword: 'Passwords must be identical',
2018-10-14 22:10:00 +02:00
}
},
2018-10-26 00:30:10 +02:00
login:{
2018-10-26 22:25:35 +02:00
incorso: 'Login...',
2018-10-26 00:30:10 +02:00
enter: 'Login',
errato: "Username or password wrong. Please retry again",
2018-10-26 22:25:35 +02:00
completato: 'Login successfully!',
},
reset: {
title_reset_pwd: "Reset your Password",
send_reset_pwd: 'Send password request',
incorso: 'Request New Email...',
email_sent:'Email sent',
check_email: 'Check your email for a message with a link to update your password. This link will expire in 4 hours for security reasons.',
title_update_pwd: 'Update your password',
update_password: 'Update Password',
},
2018-10-26 22:25:35 +02:00
logout:{
uscito: 'Logout successfully',
},
2018-10-12 16:42:54 +02:00
},
};
export default messages;