Added spanish locale (#560)

* Added spanish locale

* fixed resource directory name

* Added spanish locale to demo

* using spanish local name
This commit is contained in:
Vicente Penades
2025-03-11 16:11:14 +01:00
committed by GitHub
parent ffbd8efef7
commit 8022a80f0e
4 changed files with 42 additions and 0 deletions

View File

@@ -114,6 +114,12 @@ public partial class MainViewModel : ObservableObject
Command = SelectLocaleCommand,
CommandParameter = new CultureInfo("de-de")
},
new MenuItemViewModel
{
Header = "Español",
Command = SelectLocaleCommand,
CommandParameter = new CultureInfo("es-es")
},
]
}
];