51 lines
1.4 KiB
Go
51 lines
1.4 KiB
Go
package i18n
|
|
|
|
var (
|
|
Formats = map[string]map[string]string{
|
|
"dateTime": map[string]string{
|
|
"it": "il %02d/%02d/%d alle ore %02d:%02d",
|
|
},
|
|
}
|
|
|
|
Authorization = map[string]map[string]string{
|
|
"notAuthorized": map[string]string{
|
|
"it": "Non si è autorizzati ad accedere a questa pagina",
|
|
},
|
|
}
|
|
|
|
Text = map[string]map[string]string{
|
|
"answerCorrect": map[string]string{
|
|
"it": "Corretta",
|
|
},
|
|
"alwaysActiveContest": map[string]string{
|
|
"it": "sempre attiva",
|
|
},
|
|
}
|
|
|
|
Errors = map[string]map[string]string{
|
|
"outOfTime": map[string]string{
|
|
"it": "Il tempo utile per consegnare la prova è scaduto.",
|
|
},
|
|
"notAuthorized": map[string]string{
|
|
"it": "Non si è autorizzati ad accedere a questa pagina.",
|
|
},
|
|
"schoolExists": map[string]string{
|
|
"it": "Una scuola con questo codice meccanografico è già presente nella base dati!",
|
|
},
|
|
"participantExists": map[string]string{
|
|
"it": "Un partecipante con questo codice fiscale è già presente nella base dati!",
|
|
},
|
|
"contestHasZeroQuestions": map[string]string{
|
|
"it": "La gara a cui il partecipante è iscritto non contiene alcuna domanda.",
|
|
},
|
|
"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.",
|
|
},
|
|
"wrongCaptcha": map[string]string{
|
|
"it": "Il numero inserito non corrisponde all'immagine.",
|
|
},
|
|
}
|
|
)
|