diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 7b5df1b..6acb9d4 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -39,5 +39,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.17.19")] -[assembly: AssemblyFileVersion("1.0.17.19")] +[assembly: AssemblyVersion("1.0.17.20")] +[assembly: AssemblyFileVersion("1.0.17.20")] diff --git a/Resources/lang.de-DE.resx b/Resources/lang.de-DE.resx index 7834e9a..552babf 100644 --- a/Resources/lang.de-DE.resx +++ b/Resources/lang.de-DE.resx @@ -181,10 +181,10 @@ Lese das FAQ und wähle anschließend ein root Verzeichniss für die SystemTrayMenu. - Warning + Warnung - Select Folder + Ordner auswählen Dein Hauptordner für die SystemTrayMenu existiert nicht oder ist leer! Pack ein paar Dateien, Ordner oder Verknüpfungen in den Hauptordner oder ändere den Hauptordner. diff --git a/Resources/lang.it-IT.Designer.cs b/Resources/lang.it-IT.Designer.cs new file mode 100644 index 0000000..e69de29 diff --git a/Resources/lang.it-IT.resx b/Resources/lang.it-IT.resx new file mode 100644 index 0000000..a23720f --- /dev/null +++ b/Resources/lang.it-IT.resx @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Di + + + OK + + + Avvio automatico + + + Uscita + + + Cartella + + + Cartella vuota + + + Dettagli + + + Informazioni di sistema + + + Cartella inaccessibile + + + Linguaggio + + + File di registro + + + Ricomincia + + + Impossibile registrare il tasto di scelta rapida. + + + Annulla + + + Generale + + + Hotkey + + + Lancia all'avvio + + + Impostazioni + + + Aiuto / FAQ + + + SystemTrayMenu + + + Leggere le domande frequenti e quindi scegliere una directory principale per SystemTrayMenu. + + + Avvertimento + + + Seleziona cartella + + + La tua cartella principale per SystemTrayMenu non esiste o è vuota! Metti alcuni file, cartelle o collegamenti nella cartella o cambia la cartella principale. + + + Non hai accesso alla cartella principale per SystemTrayMenu. Concedi l'accesso alla cartella o cambia la cartella principale. + + + Esperto + + + Fare clic una volta per aprire un elemento + + + Modalità oscura sempre attiva + + \ No newline at end of file diff --git a/SystemTrayMenu.csproj b/SystemTrayMenu.csproj index 6619114..62448d8 100644 --- a/SystemTrayMenu.csproj +++ b/SystemTrayMenu.csproj @@ -131,6 +131,11 @@ lang.es-ES.resx True True + + + lang.it-IT.resx + True + True True @@ -160,6 +165,10 @@ ResXFileCodeGenerator lang.es-ES.Designer.cs + + + ResXFileCodeGenerator + lang.it-IT.Designer.cs ResXFileCodeGenerator diff --git a/UserInterface/SettingsForm.cs b/UserInterface/SettingsForm.cs index 518d297..5e7c566 100644 --- a/UserInterface/SettingsForm.cs +++ b/UserInterface/SettingsForm.cs @@ -68,6 +68,7 @@ namespace SystemTrayMenu.UserInterface new Language() { Name = "Deutsch", Value = "de" }, new Language() { Name = "Français", Value = "fr" }, new Language() { Name = "Español", Value = "es" }, + new Language() { Name = "Italiano", Value = "it" }, }; comboBoxLanguage.DataSource = dataSource; comboBoxLanguage.DisplayMember = "Name";