parent
5c1f89df60
commit
5ce834bbe7
14
README.md
14
README.md
|
|
@ -14,7 +14,7 @@ Localization abstractions and implementations for ASP.NET Core applications.
|
|||
|
||||
This project is part of ASP.NET Core. You can find samples, documentation and getting started instructions for ASP.NET Core at the [Home](https://github.com/aspnet/home) repo.
|
||||
|
||||
### Samples
|
||||
### Localization Samples
|
||||
|
||||
Here are a few samples that demonstrate different localization features including: localized views, localized strings in data annotations, creating custom localization resources ... etc.
|
||||
|
||||
|
|
@ -22,8 +22,16 @@ Here are a few samples that demonstrate different localization features includin
|
|||
* [Localization.EntityFramework](https://github.com/aspnet/Entropy/tree/dev/samples/Localization.EntityFramework) - localization sample that uses an EntityFramework based localization provider for resources
|
||||
* [Localization.CustomResourceManager](https://github.com/aspnet/Entropy/tree/dev/samples/Localization.CustomResourceManager) - localization sample that uses a custom `ResourceManagerStringLocalizer`
|
||||
|
||||
### Providers
|
||||
### Localization Providers
|
||||
|
||||
Community projects adapt _RequestCultureProvider_ for determining the culture information of an `HttpRequest`.
|
||||
|
||||
* [My.AspNetCore.Localization.Session](https://github.com/hishamco/My.AspNetCore.Localization.Session) - determines the culture information for a request via values in the session state.
|
||||
* [My.AspNetCore.Localization.Json](https://github.com/hishamco/My.AspNetCore.Localization.Json) - determines the culture information for a request from a JSON file.
|
||||
* [My.AspNetCore.Localization.Session](https://github.com/hishamco/My.AspNetCore.Localization.Session) - determines the culture information for a request via values in the session state.
|
||||
|
||||
### Localization Resources
|
||||
|
||||
Community projects adapt _IStringLocalizer_ for fetching the localiztion resources.
|
||||
|
||||
* [My.Extensions.Localization.Json](https://github.com/hishamco/My.Extensions.Localization.Json) - fetches the localization resources from JSON file(s).
|
||||
* [OrchardCore.Localization.PortableObject](https://github.com/OrchardCMS/OrchardCore/tree/dev/src/OrchardCore/OrchardCore.Localization.Core/PortableObject) - fetches the localization resources from PO file(s).
|
||||
Loading…
Reference in New Issue