feat(i18n): add Italian language support

This commit is contained in:
Federico
2025-06-20 17:44:28 +02:00
parent 71c4bd26d2
commit db48d98da7
3 changed files with 99 additions and 1 deletions
+2 -1
View File
@@ -1,7 +1,7 @@
// @ts-nocheck
import { format, formatDistance, formatDistanceToNow, formatDuration } from "date-fns";
import { ru, enUS, hi, de, zhCN, vi, ja, nl, da, fr, ko, ptBR, tr, nb, pl, es } from "date-fns/locale";
import { ru, enUS, hi, de, zhCN, vi, ja, nl, da, fr, ko, ptBR, tr, nb, pl, es, it } from "date-fns/locale";
import { formatInTimeZone } from "date-fns-tz";
const locales = {
@@ -21,6 +21,7 @@ const locales = {
"nb-NO": nb,
pl,
es,
it,
};
const f = function (date, formatStr, locale, tz) {
+93
View File
@@ -0,0 +1,93 @@
{
"%status for %duration": "%status per %duration",
"120 Days": "120 Giorni",
"14 Days": "14 Giorni",
"150 Days": "150 Giorni",
"180 Days": "180 Giorni",
"30 Days": "30 Giorni",
"60 Days": "60 Giorni",
"7 Days": "7 Giorni",
"90 Days": "90 Giorni",
"Availability per Component": "Disponibilità per componente",
"All Systems are Degraded": "Tutti i sistemi sono degradati",
"All Systems are Down": "Tutti i sistemi sono inattivi",
"All Systems are Operational": "Tutti i sistemi sono operativi",
"All Systems are in Maintenance": "Tutti i sistemi sono in manutenzione",
"Back": "Indietro",
"Badge Copied": "Badge copiato",
"Badge": "Badge",
"Browse Events": "Sfoglia eventi",
"Change Email": "Cambia email",
"Code Copied": "Codice copiato",
"Confirm Login": "Conferma accesso",
"Copy Code": "Copia codice",
"Copy Link": "Copia link",
"DEGRADED": "DEGRADATO",
"DOWN": "NON DISPONIBILE",
"Dark": "Scuro",
"Days": "Giorni",
"Embed this monitor using &#x3C;script&#x3E; or &#x3C;iframe&#x3E; in your app.": "Incorpora questo monitor usando <script> o <iframe> nella tua app.",
"Embed": "Incorpora",
"Enter the code": "Inserisci il codice",
"Enter your email": "Inserisci la tua email",
"Enter your email to log in. If you are not subscribed, you will be prompted to subscribe.": "Inserisci la tua email per accedere. Se non sei iscritto, ti verrà chiesto di iscriverti.",
"Get SVG badge for this monitor": "Ottieni badge SVG per questo monitor",
"Get a LIVE Status for this monitor": "Ottieni lo stato LIVE per questo monitor",
"IDENTIFIED": "IDENTIFICATO",
"INVESTIGATING": "IN ANALISI",
"Incident Updates": "Aggiornamenti incidenti",
"LIVE Status": "Stato LIVE",
"Lasted for about %lastedFor": "Durato circa %lastedFor",
"Light": "Chiaro",
"Link Copied": "Link copiato",
"Login": "Accedi",
"MAINTENANCE": "MANUTENZIONE",
"MONITORING": "MONITORAGGIO",
"Maintenance Completed": "Manutenzione completata",
"Maintenance in Progress": "Manutenzione in corso",
"Manage Subscription": "Gestisci iscrizione",
"Mode": "Modalità",
"No Data": "Nessun dato",
"No Incident in %date": "Nessun incidente in %date",
"No Incidents": "Nessun incidente",
"No Monitor Found": "Nessun monitor trovato",
"No Updates Yet": "Nessun aggiornamento ancora",
"Ongoing Incidents": "Incidenti in corso",
"Pinging": "Ping in corso",
"Please select specific monitors to receive updates from.": "Seleziona i monitor specifici da cui ricevere aggiornamenti.",
"RESOLVED": "RISOLTO",
"Recent Incidents": "Incidenti recenti",
"Recent Maintenances": "Manutenzioni recenti",
"Share this monitor using a link with others": "Condividi questo monitor tramite un link con altri",
"Share": "Condividi",
"Some Systems are not working as expected": "Alcuni sistemi non funzionano come previsto",
"Some Systems Degraded": "Alcuni sistemi degradati",
"Some Systems Down": "Alcuni sistemi inattivi",
"Some Systems in Maintenance": "Alcuni sistemi in manutenzione",
"Standard": "Standard",
"Started %startedAt, lasted for %lastedFor": "Iniziato il %startedAt, durato %lastedFor",
"Started %startedAt, still ongoing": "Iniziato il %startedAt, ancora in corso",
"Started %startedAt, will last for %lastedFor more": "Iniziato il %startedAt, durerà ancora %lastedFor",
"Starts %startedAt, will last for %lastedFor": "Inizia il %startedAt, durerà %lastedFor",
"Starts %startedAt": "Inizia il %startedAt",
"Status OK": "Stato OK",
"Status": "Stato",
"Subscribe": "Iscriviti",
"Subscribe to Updates": "Iscriviti agli aggiornamenti",
"Subscribe to all monitors": "Iscriviti a tutti i monitor",
"Switch to your timezone": "Passa al tuo fuso orario",
"Theme": "Tema",
"There are no upcoming maintenances": "Non ci sono manutenzioni imminenti",
"Timezone set to %tz": "Fuso orario impostato su %tz",
"Today": "Oggi",
"UP": "ATTIVO",
"Update Subscription": "Aggiorna iscrizione",
"Upcoming Maintenance": "Manutenzione imminente",
"Upcoming Maintenances": "Manutenzioni imminenti",
"Updates": "Aggiornamenti",
"Uptime": "Tempo di attività",
"View in detail": "Visualizza nel dettaglio",
"We have sent a code to your email. Please enter it below to confirm your login": "Abbiamo inviato un codice alla tua email. Inseriscilo qui sotto per confermare l'accesso",
"You are logged in as %email": "Sei connesso come %email"
}
+4
View File
@@ -62,5 +62,9 @@
{
"code": "es",
"name": "Español"
},
{
"code": "it",
"name": "Italiano"
}
]