2019-12-03 11:14:29 +01:00
|
|
|
package i18n
|
|
|
|
|
|
|
|
var (
|
|
|
|
FlashMessages = map[string]map[string]string{
|
|
|
|
"participantExists": map[string]string{
|
|
|
|
"it": "Un partecipante con questo codice fiscale è già presente nella base dati!",
|
|
|
|
},
|
2019-12-03 12:21:28 +01:00
|
|
|
"schoolExists": map[string]string{
|
|
|
|
"it": "Una scuola con questo codice meccanografico è già presente nella base dati!",
|
|
|
|
},
|
2019-12-09 14:18:31 +01:00
|
|
|
"categoryExists": map[string]string{
|
|
|
|
"it": "Un partecipante della stessa categoria è già stato iscritto dalla scuola.",
|
|
|
|
},
|
2019-12-04 10:11:18 +01:00
|
|
|
"notAuthorized": map[string]string{
|
|
|
|
"it": "L'utente non dispone delle autorizzazioni necessarie a visualizzare questa pagina.",
|
|
|
|
},
|
2019-12-03 11:14:29 +01:00
|
|
|
}
|
2019-12-13 12:55:11 +01:00
|
|
|
|
2019-12-07 08:58:30 +01:00
|
|
|
Formats = map[string]map[string]string{
|
|
|
|
"dateTime": map[string]string{
|
|
|
|
"it": "il %02d/%02d/%d alle ore %02d:%02d",
|
|
|
|
},
|
|
|
|
}
|
2019-12-13 12:55:11 +01:00
|
|
|
|
2019-12-07 11:44:19 +01:00
|
|
|
Authorization = map[string]map[string]string{
|
|
|
|
"notAuthorized": map[string]string{
|
|
|
|
"it": "Non si è autorizzati ad accedere a questa pagina",
|
|
|
|
},
|
|
|
|
}
|
2019-12-13 12:55:11 +01:00
|
|
|
|
|
|
|
Text = map[string]map[string]string{
|
|
|
|
"answerCorrect": map[string]string{
|
|
|
|
"it": "Corretta",
|
|
|
|
},
|
|
|
|
"alwaysActiveContest": map[string]string{
|
|
|
|
"it": "sempre attiva",
|
|
|
|
},
|
|
|
|
}
|
2019-12-29 17:23:50 +01:00
|
|
|
|
|
|
|
Errors = map[string]map[string]string{
|
|
|
|
"outOfTime": map[string]string{
|
|
|
|
"it": "Il tempo utile per consegnare la prova è scaduto.",
|
|
|
|
},
|
2020-01-23 12:50:50 +01:00
|
|
|
"notAuthorized": map[string]string{
|
|
|
|
"it": "Non si è autorizzati ad accedere a questa pagina",
|
|
|
|
},
|
|
|
|
|
2019-12-29 17:23:50 +01:00
|
|
|
}
|
2019-12-03 11:14:29 +01:00
|
|
|
)
|