LocalizableString in Core dll
See original GitHub issueI try to localize a UserFriendlyException
but in Core dll is not possibile.
I think that is a good option extend UserFriendlyException or AbpException to do it.
Mat
Issue Analytics
- State:
- Created 8 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Globalization and localization in ASP.NET Core
Provide localized resources for the cultures the app supports. Implement a strategy to select the culture for each request.
Read more >publishing - .net core build produces localization folders
In ASP.NET Core 6, why language folders needed in Published output for System.Private.ServiceModel.resources.dll and how to eliminate them? 1.
Read more >Class LocalizableString | Azure SDK for Net - Microsoft .NET
Assembly: Microsoft.Azure.Management.Monitor.dll ... Initializes a new instance of the LocalizableString class. ... public LocalizableString (string value,
Read more >ASP.NET Core Localization Deep Dive - Joonas W's blog
This article covers pretty much all the important things about localization in ASP.NET Core and MVC Core. It's quite long, but I tried...
Read more >LocalizedStrings.dll - Download and Fix DLL Errors
Dynamic Link Library files, like LocalizedStrings.dll, are essentially a "guide book" that stores information and instructions for executable ( ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Statics can not inject dependencies. This is a general programming issue. We introduced LocalizationHelper for this purpose. Use this:
LocalizationHelper.GetString("tmkRequestIsInThePast", tmkConsts.LocalizationSourceName)
Great!
Thks a lot!