Files
freeplanet/src/i18n.js

55 lines
1.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: {
hello: 'Buongiorno!',
myAppName: 'FreePlanet',
myDescriz: 'La prima App Libera e per Tutti'
},
reg: {
richiesto: '* Richiesto',
email: 'Email',
username : 'Nome Utente',
password: 'Password',
confirmpassword: 'Ripeti password',
terms: "Accetti i termini e le condizioni?",
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.',
duplicate_email: 'l\'Email è già stata registrata'
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: {
richiesto: '* Required',
email: 'Email',
username : 'Username',
password: 'Password',
confirmpassword: 'Repeat password',
terms: "Do you agree with the terms & conditions?",
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-14 22:10:00 +02:00
}
},
2018-10-12 16:42:54 +02:00
},
};
export default messages;