Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Italian language #61

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions src/i18n/it/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
import type { Translation } from "../i18n-types";

const eng: Translation = {
pages: {
home: {
homeTitle: "DNS Changer",
connectedHTML: "Connesso a <u>{currentActive}</u>",
connected: "Connesso a {currentActive}",
disconnected: "Disconnesso",
unknownServer: "connesso ad un server sconosciuto.",
},
settings: {
title: "Impostazioni",
autoRunningTitle:
"Esegui automaticamente programma ad avvio del sistema",
langChanger: "Lingua interfaccia",
themeChanger: "Tema",
},
addCustomDns: {
NameOfServer: "Nome server",
serverAddr: "Indirizzo server",
},
},
themeChanger: {
dark: "Chiaro",
light: "Scuro",
},
buttons: {
update: "Aggiorna elenco",
favDnsServer: "Aggiungi server (DNS) personalizzato",
add: "Aggiungi",
flushDns: "Flush",
ping: "Ping",
},
waiting: "Attendi...",
disconnecting: "disconnessione...",
connecting: "connessione...",
successful: "completata",
help_connect: "Clic per connetterti",
help_disconnect: "Clic per disconnetterti",
dialogs: {
fetching_data_from_repo: "recupero dati dal repository...",
removed_server: "{serverName} è stato correttamente rimosso dall'elenco.",
added_server: "Server {serverName} aggiunto correttamente all'elenco.",
flush_successful: "Flush effettuato correttamente.",
flush_failure: "Flush fallito.",
},
errors: {
error_fetching_data: "Errore nella ricezione dei dati da {target}",
},
validator: {
invalid_dns1: "Il valore DNS 1 non è valido.",
invalid_dns2: "Il valore DNS 2 non è valido.",
dns1_dns2_duplicates: "I valori DNS 1 e DNS 2 non devono essere duplicati.",
},
version: "versione",
};

export default eng;