Andrew KeepCoding
Andrew KeepCoding
You just switched the Windows display language here, and a re-logged in right? 
I'm not sure why but I can't reproduce the issue on my side. Can you try debugging the WinUI3Localizer sample app and see what is failing? It should around the...
Follow these steps. 1. Clone the repo. 2. On the **WinUI3LocalizerSampleApp** project: - Remove the **WinUI3Localizer** NuGet package. - Add the **WinUI3Localizer** project as reference.
The fix is now available on v2.3.0. Thanks for your contribution!
Thank you for your contribution.🤩 Just one thing. I'd like to leave the version as it is for now. Can you remove the version updates?
Hi @Lioncky! Can you close this PR and create PRs for your changes without the .NET update?
Hi @entrealist! In XAML, you can just assign the `l:Uids.Uid`: ```xml ``` and have resources like: ```xml Yes This is the title. ```
or in C#, you can use the `GetLocalizedString()`: ```cs var localizer = WinUI3Localizer.Localizer.Get(); var dialog = new AboutDialog() { XamlRoot = this.XamlRoot, Title = localizer.GetLocalizedString("AboutDialog_Title"), PrimaryButtonText = localizer.GetLocalizedString("AboutDialog_PrimaryButtonText"), }; await...
Feel free to reopen this if you have further questions about this.
Check my [answer](https://stackoverflow.com/a/79766808/2411960) in StackOverflow.