2019-12-03 11:14:29 +01:00
|
|
|
package i18n
|
|
|
|
|
|
|
|
var (
|
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{
|
2020-02-05 10:10:27 +01:00
|
|
|
"it": "Non si è autorizzati ad accedere a questa pagina.",
|
2020-01-23 12:50:50 +01:00
|
|
|
},
|
2020-01-27 08:35:37 +01:00
|
|
|
"schoolExists": map[string]string{
|
|
|
|
"it": "Una scuola con questo codice meccanografico è già presente nella base dati!",
|
|
|
|
},
|
2020-01-27 13:15:51 +01:00
|
|
|
"participantExists": map[string]string{
|
|
|
|
"it": "Un partecipante con questo codice fiscale è già presente nella base dati!",
|
|
|
|
},
|
2020-01-27 11:43:56 +01:00
|
|
|
"contestHasZeroQuestions": map[string]string{
|
|
|
|
"it": "La gara a cui il partecipante è iscritto non contiene alcuna domanda.",
|
|
|
|
},
|
2020-01-28 17:01:24 +01:00
|
|
|
"questionsOrderIsEmpty": map[string]string{
|
|
|
|
"it": "La prova presenta la stringa relativa all'ordine delle domande vuota.",
|
|
|
|
},
|
|
|
|
"categoryExists": map[string]string{
|
|
|
|
"it": "Esiste già un partecipante di questa categoria.",
|
|
|
|
},
|
2020-02-12 09:50:35 +01:00
|
|
|
"wrongCaptcha": map[string]string{
|
|
|
|
"it": "Il numero inserito non corrisponde all'immagine.",
|
|
|
|
},
|
2019-12-29 17:23:50 +01:00
|
|
|
}
|
2019-12-03 11:14:29 +01:00
|
|
|
)
|