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 #71

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
58 changes: 58 additions & 0 deletions src/i18n/it/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
import type { Translation } from "../i18n-types";

const it: Translation = {
pages: {
home: {
homeTitle: 'DNS Changer',
connectedHTML: 'Connesso a <u>{currentActive}</u>'",

Check failure on line 7 in src/i18n/it/index.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

',' expected.

Check failure on line 7 in src/i18n/it/index.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Unterminated string literal.
connected: 'Connesso a {currentActive}',

Check failure on line 8 in src/i18n/it/index.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

':' expected.

Check failure on line 8 in src/i18n/it/index.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

',' expected.

Check failure on line 8 in src/i18n/it/index.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

':' expected.
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.',

Check failure on line 42 in src/i18n/it/index.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

',' expected.

Check failure on line 42 in src/i18n/it/index.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

',' expected.

Check failure on line 42 in src/i18n/it/index.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Identifier expected.

Check failure on line 42 in src/i18n/it/index.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Unterminated string literal.
added_server: 'Server {serverName} aggiunto correttamente all'elenco.',

Check failure on line 43 in src/i18n/it/index.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

':' expected.
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 it;
Loading