From 9aa75c72b819096a600fdcd95a6acedd574e8ee9 Mon Sep 17 00:00:00 2001 From: Markus Hofknecht Date: Thu, 15 Apr 2021 19:01:23 +0200 Subject: [PATCH] [Feature] Add Spanish (#150), version 1.0.17.11 --- Properties/AssemblyInfo.cs | 4 +- Resources/lang.es-ES.Designer.cs | 0 Resources/lang.es-ES.resx | 204 +++++++++++++++++++++++++++++++ SystemTrayMenu.csproj | 9 ++ UserInterface/SettingsForm.cs | 1 + 5 files changed, 216 insertions(+), 2 deletions(-) create mode 100644 Resources/lang.es-ES.Designer.cs create mode 100644 Resources/lang.es-ES.resx diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 799f079..45d3a62 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.10")] -[assembly: AssemblyFileVersion("1.0.17.10")] +[assembly: AssemblyVersion("1.0.17.11")] +[assembly: AssemblyFileVersion("1.0.17.11")] diff --git a/Resources/lang.es-ES.Designer.cs b/Resources/lang.es-ES.Designer.cs new file mode 100644 index 0000000..e69de29 diff --git a/Resources/lang.es-ES.resx b/Resources/lang.es-ES.resx new file mode 100644 index 0000000..5e11268 --- /dev/null +++ b/Resources/lang.es-ES.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 + + + Acerca de + + + OK + + + Autoencendido + + + Salida + + + Carpeta + + + Carpeta vacía + + + Detalles + + + Información del sistema + + + Carpeta inaccesible + + + Idioma + + + Archivo de registro + + + Reanudar + + + No se pudo registrar la tecla de acceso rápido. + + + Cancelar + + + General + + + Tecla de acceso rápido + + + Lanzamiento al inicio + + + Ajustes + + + Ayudar / FAQ + + + SystemTrayMenu + + + Lea las preguntas frecuentes y luego elija un directorio raíz para SystemTrayMenu. + + + Advertencia + + + Seleccione la carpeta + + + ¡Su carpeta raíz para SystemTrayMenu no existe o está vacía! Coloque algunos archivos, carpetas o accesos directos en la carpeta o cambie la carpeta raíz. + + + No tiene acceso a la carpeta raíz del SystemTrayMenu. Otorgue acceso a la carpeta o cambie la carpeta raíz. + + + Experta + + + Un solo clic para iniciar el artículo + + + Modo oscuro siempre activa + + \ No newline at end of file diff --git a/SystemTrayMenu.csproj b/SystemTrayMenu.csproj index 155d8c5..b4bfc13 100644 --- a/SystemTrayMenu.csproj +++ b/SystemTrayMenu.csproj @@ -127,6 +127,11 @@ True True + + lang.es-ES.resx + True + True + True True @@ -152,6 +157,10 @@ ResXFileCodeGenerator lang.fr-FR.Designer.cs + + ResXFileCodeGenerator + lang.es-ES.Designer.cs + ResXFileCodeGenerator lang.Designer.cs diff --git a/UserInterface/SettingsForm.cs b/UserInterface/SettingsForm.cs index 6398b24..d0dd9e6 100644 --- a/UserInterface/SettingsForm.cs +++ b/UserInterface/SettingsForm.cs @@ -68,6 +68,7 @@ namespace SystemTrayMenu.UserInterface new Language() { Name = "English", Value = "en" }, new Language() { Name = "Deutsch", Value = "de" }, new Language() { Name = "Français", Value = "fr" }, + new Language() { Name = "Español", Value = "es" }, }; comboBoxLanguage.DataSource = dataSource; comboBoxLanguage.DisplayMember = "Name";