added polish locale

This commit is contained in:
krebso
2025-05-16 16:36:33 +02:00
parent ac03334b19
commit d3b9d4225e
4 changed files with 42 additions and 0 deletions

View File

@@ -120,6 +120,12 @@ public partial class MainViewModel : ObservableObject
Command = SelectLocaleCommand,
CommandParameter = new CultureInfo("es-es")
},
new MenuItemViewModel
{
Header = "Polski",
Command = SelectLocaleCommand,
CommandParameter = new CultureInfo("pl-pl")
},
]
}
];