Files
freeplanet/src/i18n.js

87 lines
2.6 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",
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!',
},
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",
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!',
},
logout:{
uscito: 'Logout successfully',
},
2018-10-12 16:42:54 +02:00
},
};
export default messages;