aspnet-internationalization icon indicating copy to clipboard operation
aspnet-internationalization copied to clipboard

NuGet packages to make i18n easy for developers

Results 7 aspnet-internationalization issues
Sort by recently updated
recently updated
newest added

For instance 'Required' error messages Putting this into my controller fixes it ([LanguageFilter] does not help) ``` protected override void Initialize(RequestContext requestContext) { var culture = requestContext.HttpContext.Request.Cookies["_culture"]; if (culture !=...

Some missing pieces when you apply it to an empty web project (compared to an MVC4 project) - everything under `App_Start` is missing - no global.asax - Views/web.config missing

Should be something like this http://www.asp.net/vnext/overview/latest/custom-mvc-templates

Repro steps: - Create an MVC4 project (.NET 4.5) -`Install-Package Code52.i18n.MVC4` (gets 0.2.5) - Compilation error in `LanguageController.cs` line 52 ``` public JavaScriptResult Language() { return GetResourceScript(Resources.Language.ResourceManager); } Because `Resources`...

The language selector control animates away so you cannot select languages

Hi, I am following this instruction http://code52.org/aspnet-internationalization/tutorial.html#add_the_code52i18n_nuget_package to implement the Code52 internationalization code to my brand new MVC 4 application created from visual Studio 2012 RC MVC 4 template, after...

I followed through the readme, but still had to dig into the code a few times. First problem was that I didn't think it was clear the code expected the...

enhancement