forked from samuelmeuli/mini-diary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
it.ts
137 lines (123 loc) · 4.28 KB
/
it.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import { Translations } from "../../../shared/types";
const translationsIt: Partial<Translations> = {
// Menu (defined by macOS)
"about-app": "Informazioni su {appName}",
"bring-all-to-front": "Porta tutto in primo piano",
close: "Chiudi",
copy: "Copia",
cut: "Taglia",
edit: "Modifica",
file: "File",
help: "Aiuto",
"hide-app": "Nascondi {appName}",
"hide-others": "Nascondi altri",
minimize: "Contrai",
paste: "Incolla",
preferences: "Preferenze",
"quit-app": "Esci da {appName}",
redo: "Ripristina originale",
"select-all": "Seleziona tutto",
"show-all": "Mostra tutto",
speech: "Voce",
"start-speaking": "Avvia riproduzione vocale",
"stop-speaking": "Interrompi riproduzione",
undo: "Annulla",
view: "Vista",
window: "Finestra",
zoom: "Ridimensiona",
// Menu (app-specific)
export: "Esporta",
"export-to-format": "Esporta come {format}",
"go-to-date": "Vai al giorno",
"go-to-today": "Vai a oggi",
import: "Importa",
"import-from-format": "Importa da {format}",
license: "Licenza",
"lock-diary": "Blocca diario",
"next-day": "Giorno successivo",
"next-month": "Mese successivo",
"previous-day": "Giorno precedente",
"previous-month": "Mese precedente",
"privacy-policy": "Informativa sulla privacy",
statistics: "Statistiche",
website: "Sito Web",
// Weekdays
sunday: "Domenica",
monday: "Lunedì",
tuesday: "Martedì",
wednesday: "Mercoledì",
thursday: "Giovedì",
friday: "Venerdì",
saturday: "Sabato",
// Theme
dark: "Scuro",
light: "Chiaro",
theme: "Tema",
// Calendar
today: "Oggi",
// Editor
"add-a-title": "Aggiungi un titolo",
bold: "Grassetto",
bullets: "Elenco puntato",
italic: "Corsivo",
list: "Elenco numerato",
"write-something": "Scrivi qualcosa",
// Search
clear: "Cancella ricerca",
"no-results": "Nessun risultato",
"no-title": "Nessun titolo",
search: "Cerca",
// Preferences
"allow-future-entries": "Consenti l'inserimento di note nel futuro",
auto: "Auto",
"diary-entries": "Note",
"first-day-of-week": "Primo giorno della settimana",
no: "No",
ok: "OK",
"reset-diary": "Reset diario",
"reset-diary-confirm": "Si, sono sicuro",
"reset-diary-msg":
"Sei sicuro di voler eseguire il reset del diario? Questa operazione eliminerà tutti i tuoi contenuti. I dati non potranno essere recuperati.",
// Password and directory
"change-directory": "Cambia cartella",
"change-password": "Cambia password",
"choose-password": "Scegli una password per il tuo diario.",
"decryption-error": "Errore nel decriptare il file del diario",
"diary-file": "File",
"file-exists": "Un altro file è presente nel percorso di destinazione",
"move-error-msg": "Si è verificato un errore nello spostamento del file",
"move-error-title": "Errore di spostamento",
"move-file": "Sposta file",
"new-password": "Nuova password",
password: "Password",
"passwords-no-match": "Le password non corrispondono",
"repeat-new-password": "Reinserisci la nuova password",
"repeat-password": "Reinserisci password",
"select-directory": "Seleziona cartella",
"set-password": "Imposta password",
unlock: "Sblocca",
"wrong-password": "Password sbagliata",
// Statistics
"total-entries": "Totale note inserite ",
"entries-per-week": "Note per settimana",
"streak-best": "N. di note consecutive (serie record)",
"streak-current": "N. di note consecutive (ultima serie)",
"total-words": "Totale parole",
"words-per-entry": "Parole per nota",
// Import
"import-error-msg": "Si è verificato un errore durante l'import",
"import-error-title": "Errore di import",
"import-instructions-day-one":
"Apri l'app Day One ed esporta il tuo diario cliccando su File → Export → {format}. Decomprimi il file generato. Al passo successivo seleziona il file {format} ottenuto per importarlo in {appName}.",
"import-instructions-jrnl":
"Per esportare il tuo diario jrnl, lancia il comando {command}. Al passo successivo seleziona il file JSON ottenuto per importarlo in {appName}.",
"import-instructions-mini-diary":
"Puoi importare i tuoi dati da un {appName} JSON precedentemente esportato o da un altro file JSON formattato allo stesso modo.",
"start-import": "Inizia l'import",
// Export
"export-error-msg": "Si è verificato un errore durante l'export",
"export-error-title": "Errore di export",
// Other
loading: "Caricamento in corso",
};
export default translationsIt;