2018-10-12 16:42:54 +02:00
|
|
|
const messages = {
|
2018-10-14 22:10:00 +02:00
|
|
|
it: {
|
|
|
|
|
msg: {
|
|
|
|
|
hello: 'Buongiorno!',
|
|
|
|
|
myAppName: 'FreePlanet',
|
|
|
|
|
myDescriz: 'La prima App Libera e per Tutti'
|
|
|
|
|
},
|
|
|
|
|
reg: {
|
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',
|
2018-10-15 21:58:29 +02:00
|
|
|
repeatPassword: 'Ripeti password',
|
2018-10-14 22:10:00 +02:00
|
|
|
terms: "Accetti i termini e le condizioni?",
|
2018-10-16 18:55:30 +02:00
|
|
|
submit: "Registrati",
|
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',
|
2018-10-15 21:58:29 +02:00
|
|
|
duplicate_username: 'L\'Username è stato già utilizzato',
|
|
|
|
|
sameaspassword: 'Le password devono essere identiche',
|
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-20 18:56:31 +02:00
|
|
|
richiesto: 'Field Required',
|
2018-10-14 22:10:00 +02:00
|
|
|
email: 'Email',
|
|
|
|
|
username : 'Username',
|
|
|
|
|
password: 'Password',
|
2018-10-15 21:58:29 +02:00
|
|
|
repeatPassword: 'Repeat password',
|
2018-10-14 22:10:00 +02:00
|
|
|
terms: "Do you agree with the terms & conditions?",
|
2018-10-16 18:55:30 +02:00
|
|
|
submit: "Submit",
|
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',
|
2018-10-15 21:58:29 +02:00
|
|
|
duplicate_username: 'Username is already taken',
|
|
|
|
|
sameaspassword: 'Passwords must be identical',
|
2018-10-14 22:10:00 +02:00
|
|
|
}
|
|
|
|
|
},
|
2018-10-12 16:42:54 +02:00
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default messages;
|