Files
Wand-Enhancer-k1tbyte/WandEnhancer/Locale/lang.es-ES.xaml
T
kitbyte e04e313fa3 refactor(wpf): decouple the view model from the window and localize its output
Introduce IShellView and IFileDialogs so MainWindowVm no longer holds the
concrete window or reaches through MainWindow.Instance, and file pickers are
injectable.

Run Restore off the UI thread like Patch and gate both buttons on IsBusy.
Gate the log commands on a non-empty log.

Move runtime log messages into the locale dictionaries and add the 14 new keys
to all 12 languages.
Track the injected locale dictionary so switching language replaces it instead
of appending a new one each time.

Remove the unused InfoItem control, ToVisibilityInvertedConverter, mw_title and
the popup placeholder title.
2026-08-29 16:56:36 +03:00

59 lines
3.5 KiB
XML

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="clr-namespace:System;assembly=mscorlib">
<!--#region Language Metadata -->
<s:String x:Key="language_display_name">Español</s:String>
<!--#endregion -->
<!--#region MainWindow -->
<s:String x:Key="mw_folder_path">Ruta de la carpeta</s:String>
<s:String x:Key="mw_folder_not_found">Carpeta no encontrada</s:String>
<s:String x:Key="mw_patch">Aplicar</s:String>
<s:String x:Key="mw_restore">Restaurar</s:String>
<s:String x:Key="mw_source_code">Código fuente</s:String>
<s:String x:Key="mw_made_by">Hecho con ❤️ por k1tbyte</s:String>
<s:String x:Key="mw_star_hint">Pon una estrella si te fue útil ;)</s:String>
<s:String x:Key="mw_copy_logs">Copiar registros al portapapeles</s:String>
<s:String x:Key="mw_export_logs">Exportar registros a un archivo</s:String>
<!--#endregion -->
<!--#region Settings -->
<s:String x:Key="settings_title">Configuración</s:String>
<s:String x:Key="settings_language">Idioma</s:String>
<s:String x:Key="settings_save">Guardar</s:String>
<!--#endregion -->
<!--#region EnhanceVectorsPopup -->
<s:String x:Key="pv_activate_pro">Activar WeMod Pro</s:String>
<s:String x:Key="pv_devtools">DevTools en F12</s:String>
<s:String x:Key="pv_disable_updates">Desactivar actualizaciones</s:String>
<s:String x:Key="pv_remote_web_panel_preview">Habilitar acceso remoto (beta)</s:String>
<s:String x:Key="pv_custom_scripts">Scripts personalizados</s:String>
<s:String x:Key="pv_add_js_scripts">Agregar .js</s:String>
<s:String x:Key="pv_custom_scripts_hint">Los archivos .js seleccionados se empaquetan en Wand y se cargan en el renderer.</s:String>
<s:String x:Key="pv_no_custom_scripts">No hay scripts seleccionados</s:String>
<s:String x:Key="pv_start">Iniciar</s:String>
<s:String x:Key="pv_auto_apply">Aplicar automáticamente tras actualizar</s:String>
<s:String x:Key="pv_popup_title">¿Qué vamos a mejorar?</s:String>
<!--#endregion -->
<!--#region Runtime log -->
<s:String x:Key="log_install_found">Directorio de WeMod encontrado en {0} ({1})</s:String>
<s:String x:Key="log_already_patched">WeMod ya está parcheado. Si quieres parchear de nuevo, restaura la copia de seguridad primero.</s:String>
<s:String x:Key="log_ready">Listo para parchear.</s:String>
<s:String x:Key="log_install_not_found">Directorio de WeMod no encontrado.</s:String>
<s:String x:Key="log_no_directory">No se puede realizar. Por favor, especifica el directorio primero.</s:String>
<s:String x:Key="log_invalid_directory">La carpeta seleccionada {0} no es un directorio de WeMod válido.</s:String>
<s:String x:Key="log_restore_failed">Error al restaurar la copia de seguridad: {0}</s:String>
<s:String x:Key="log_patch_failed">Error al parchear: {0}</s:String>
<s:String x:Key="log_copied">Registros copiados al portapapeles.</s:String>
<s:String x:Key="log_copy_failed">Error al copiar los registros: {0}</s:String>
<s:String x:Key="log_exported">Registros exportados a {0}.</s:String>
<s:String x:Key="log_export_failed">Error al exportar los registros: {0}</s:String>
<s:String x:Key="log_open_link_failed">No se pudo abrir {0} en un navegador.</s:String>
<s:String x:Key="dialog_pick_install">Selecciona el directorio de WeMod</s:String>
<!--#endregion -->
</ResourceDictionary>