Tagged Questions

65
votes
8answers
23k views

How to localize ASP.NET MVC application?

What would be best practice to localize your ASP.NET MVC application? I would like to cover two situations: one application deployment in IIS which would handle multiple languages one ...
26
votes
3answers
10k views

MVC DateTime binding with incorrect date format

Asp.net-MVC now allows for implicit binding of DateTime objects. I have an action along the lines of public ActionResult DoSomething(DateTime startDate) { ... } This successfully converts a ...
13
votes
4answers
2k views

DataAnnotation with custom ResourceProvider

I have created a custom ResourceProvider to pull localization information from a database. I now want to use DataAnnotation to add validation to the model. DataAnnotation has ErrorMessageResourceType ...
13
votes
6answers
2k views

Forcing English language exceptions in .NET framework

While working with ASP.NET MVC, I have noticed that exception messages issued by the .NET framework installed on my System are in German. I'd really prefer English messages, so I can post them on SO. ...
11
votes
4answers
2k views

ASP.NET MVC - Localization route

i'd like to create localized URL's for my site. They should obviously point to the same controller actions, but I want the first routevalues to -always- be the location/language specification. Is this ...
11
votes
4answers
9k views

ASP.NET MVC localization best practice?

I need help with the best practice to localize asp mvc apps, I saw Oxite having a base method named Localize in the BaseController, but is the Localization a task for the view or the Controller? Or ...
10
votes
2answers
1k views

How does the App_LocalResources work with MVC?

I've been working through my first MVC application, and I'd like to localize it. I know how to use the App_GlobalResources but I'd prefer to use the App_LocalResources. In a typical WebForms ...
10
votes
2answers
2k views

ASP.NET MVC 2 Localization/Globalization stored in the database?

I've been searching for a while for a good example of localizing an C# ASP.NET MVC 2 application but storing the data in the database instead of .RESX files. Unfortunately I've had no luck finding a ...
8
votes
2answers
6k views

ASP.NET MVC 3 localization with DisplayAttribute and custom resource provider

I use a custom resource provider to get resource strings from a database. This works fine with ASP.NET where I can define the resource type as a string. The metadata attributes for model properties in ...
8
votes
2answers
2k views

Providing localized error messages for non-attributed model validation in ASP.Net MVC 2?

I'm using the DataAnnotations attributes along with ASP.Net MVC 2 to provide model validation for my ViewModels: public class ExamplePersonViewModel { [Required(ErrorMessageResourceName = ...
8
votes
2answers
4k views

ASP.NET MVC: When to set Thread.CurrentThread.CurrentUICulture?

I am just beginning to localize an ASP.Net MVC application. Most of the strings will be defined in resource files and retrieved via Matt's Localization Helpers. Other strings must be stored in a ...
8
votes
3answers
1k views

Localization of ASP.NET MVC websites with GNU Gettext?

This might be an unusual question, but is there any framework or at least some helper classes that would help me use GNU Gettext for localizing a C# ASP.NET MVC website? I've been using Gettext in a ...
7
votes
3answers
2k views

Asp.net Mvc, Razor and Localization

I know this matter has already been brought on these pages many times, but still I haven't found the "good solution" I am required to find. Let's start the explanation. Localization in .net, and in ...
6
votes
1answer
112 views

ASP.NET MVC pseudo-localization

Is there any tool I can use to perform pseudolocalization on an ASP.NET MVC app (using the Razor view engine) in order to help localizability testing?
6
votes
3answers
625 views

ASP.NET mvc, localized routes and the default language for the user

I am using asp.net mvc localized routes. So when a user goes to the english site it is site.com/en/Controller/Action and the swedish is site.com/sv/Controller/Action. But how do I make sure that ...
6
votes
3answers
3k views

Best Practice for Asp.net MVC Resource Files

What are the best usage of the following resource files. Properties -> Resources (Phil used this resource for localization in DataAnnotation) App_GlobalResources folder App_LocalResources folder ...
6
votes
3answers
3k views

How to handle localization in JavaScript files?

I want JavaScript code to be separated from views. I got the requirement to implement localization for a simple image button generated by JavaScript: <img src="..." onclick="..." title="Close" ...
5
votes
2answers
169 views

Do we affect multiple users in ASP.NET when we set the Thread CurrentCulture/CurentUICulture?

When we set the CurrentCulture and/or CurrentUICulture we do this on the current thread like this: Thread.CurrentThread.CurrentCulture = new CultureInfo("en-GB"); ...
5
votes
1answer
2k views

How to use compiled global resources in ASP.Net MVC

I want to compile *App_GlobalResources/Strings.resx* into my assembly (and eventually use satellite assemblies for Strings.es.resx, Strings.fr.resx, etc.) but the following error occurs once the app ...
5
votes
1answer
2k views

Multilingual Application in ASP.NET MVC - Best Practices?

I'm developing a web application using ASP.NET MVC (I'm new to the framework and actually quite new to web development in general). My application must support multiple languages - there's a bunch of ...
5
votes
3answers
3k views

What advantages are the of using .resx localization for an ASP.NET MVC app?

There are a number of questions on this site related to how to access RESX files in an ASP.NET MVC application, and best practices of using them. However after reading (for the first time I might ...
4
votes
2answers
429 views

What's the best way to localize non Data Annotation Errors with ASP.NET MVC 3?

With Data Annotations it's now easy to localize error messages using Resource.resx files like this for example: public class Student { . . . [Required(ErrorMessageResourceName ="Required", ...
4
votes
3answers
1k views

DisplayAttribute: No good for resources in App_GlobalResources

This question applies to all projects really, however my demonstrating environment is an MVC3 app, hence that tag. I wrote a DisplayNameAttribute-derived class for our MVC2 projects, like so many ...
4
votes
1answer
1k views

Changing the default ModelState error messages in ASP MVC3

I have my resource files in separate assembly MyApp.Resources.dll. I can use the resources without any problem but the issue appears when I want to change (localize) the default validation messages: ...
4
votes
1answer
543 views

Routes not found or constructed incorrectly

The following is my routes definition from global.asax.cs: routes.Add( new NamedTypedRoute( "feedback-en", RouteType.Regular, "{culture}/Feedback", new RouteValueDictionary( new ...
4
votes
2answers
509 views

Is it possible to localize a URL / routing in ASP.NET MVC?

I'm working with a client that wants the URLs in our web application to be in French. I'm an English developer and we also have English clients. This is an interesting problem but I don't think its ...
4
votes
3answers
2k views

Is it possible to use data annotations for LabelFor,ValidationMessageFor, EditorFor with strongly typed resources?

I would like to use DataAnnotations in my ASP.NET MVC application. I have strongly typed resources class and would like to define in my view models: [DisplayName(CTRes.UserName)] string Username; ...
4
votes
4answers
9k views

Set Culture in an ASP.Net MVC app

What is the best place to set the Culture/UI Culture in an ASP.net MVC app Currently I have a CultureController class which looks like this: public class CultureController : Controller { ...
4
votes
3answers
1k views

asp.net mvc localization

I'm trying to implement localization with routes I have the following: routes.MapRoute( "DefaultLocalized", "{lang}/{controller}/{action}/{id}", new { controller = ...
3
votes
2answers
542 views

ASP.NET MVC Model Binder with Global Number Formats

The default model binder is returning errors for properties that are of type double when my application is being used in countries that use different number formatting for decimals (e.g. 1.2 = 1,2). ...
3
votes
2answers
621 views

How to localize an enum and use something similar to Html.SelectListFor<T>

Let's say that I got the following class and enum: public class MyModel { [DisplayName("Min egenskap")] public MyEnum TheProperty {get;set;} } public enum MyEnum { [DisplayName("Inga från ...
3
votes
2answers
426 views

Localizing validation messages at client side by jQuery in ASP.net MVC

I am using jquery for client side validation together with data annotations. Everything is working fine but I would like to localize a message when a non numeric value is entered in numeric textbox. ...
3
votes
3answers
250 views

How to localize the Controller names and actions in an ASP.NET MVC application?

I'd like to fully localize my ASP.NET MVC application, and while there are many articles that deal with the various pitfalls of ASP.NET MVC localization, none of them deals with an aspect that I want ...
3
votes
1answer
375 views

How to avoid default URL encoding in ASP.NET MVC Html Helpers like RouteLink

I want my url like this: "http://domain.com/tag/高兴" My route mapping: routes.MapRoute("Tag", "tag/{name}", new { controller = "Tag", action="Index" }); But Html.RouteLink will encode the ...
3
votes
1answer
2k views

localize data annotations default messages ([Required] [StringLength] etc.)

if I decorate the properties of my ViewModels with attributes like this: public class Vm { [Required] [StringLength(35)] public string Name {get;set;} } I am going to get english validation ...
3
votes
1answer
1k views

Localizing Error Messages In ASP.NET MVC 2 (Default Validation Attributes)

i'm working on a multi language website and i want to localize the validation error messages for most of the ValidationAttribute such as [Requried] I know it can be done as Phil Haack have shown in ...
3
votes
2answers
623 views

Custom MVC Error Message Localization

I want to localize my error messages on my model using attributes, such as RequiredAttribute and RangeAttribute. I'm using ASP.NET MVC2 in Visual Studio 2010. This is really easy if my localized ...
3
votes
1answer
533 views

Stuck with localization using resource files

I have a very weird problem with resx based localization. At first, let me explain, how it is done for me right now. It is ASP.NET MVC project. I have two assemblies: web and domain. Web contains all ...
3
votes
3answers
1k views

MVC data annotation layer: where to put the set CurrentUICulture statement?

I am getting crazy with the localization of an MVC application. After a recent question of mine I have followed this approach: The language is stored in Session["lang"] Each controller inherits ...
3
votes
1answer
217 views

How to handle localization/string values in an ASP.NET Web MVC project?

I am trying to put all of my strings into the resource file, something I do for all my Windows and Web Forms applications. Works great when it comes to changes string values for labels and/or ...
3
votes
3answers
1k views

How should I implement localization with ASP.NET MVC routes?

I'm trying to plan for future (months away) localization of a new ASP.NET MVC site. Trying to decide what makes most sense to do, as far as constructing the URLs and routing. For instance should I ...
2
votes
2answers
180 views

MVC3 edit for decimal fields and localization

My locale uses a comma ,, and not a dot . for decimal separator. In MVC3, when I open an Edit view where the decimal values are shown with @Html.EditorFor(model => model.MyDecimalVal) the ...
2
votes
3answers
181 views

Address field localization by both culture and UI culture in Asp.Net MVC 3

I have an address model type that includes these fields: public string CountyState { get; set; } public string PostZip { get; set; } I'm using a customised version of the DisplayNameAttribute ...
2
votes
3answers
214 views

How to determine the decimal separator in ASP MVC

I have an ASP.net MVC website which is displaying numbers. Can I somehow determine if the user's computer is configured to use a comma or a point as a decimal separator? I could check the different ...
2
votes
2answers
97 views

Not sure I understand localization in Asp.Net MVC

I've read tutorials etc on the web about localization in Asp.Net and MVC, but I don't think I get it. It all seems like a very messy way of handling pages if you do it as described... Say I have a ...
2
votes
1answer
3k views

Multiple languages in an ASP.NET MVC 3 (Razor) application

In my current project, on the main page I can switch language (FR|NL|UK). All the texts are in ressources (.resx) files. The language code (FR, NL, UK) I need to use is in myMode. How can I do to ...
2
votes
1answer
671 views

ResourceManager problem with MVC localization

There is many solutions for localization. I've decided for this one: http://geekswithblogs.net/brians/archive/2010/06/14/asp.net-mvc-localization-displaynameattribute-alternatives-a-better-way.aspx ...
2
votes
1answer
175 views

ASP.NET MVC 2: Make culture dependent redirect before routes kick in. For example: /Home => /en/us/Home

I want to make some redirects: /Home => /en/us/Home / => en/us/ Where should I put these redirects and how should I redirect to avoid getting an infinite loop? Instead en/us I want to extract ...
2
votes
1answer
562 views

ASP.NET MVC2 localization: How to format language/country dependend text?

I want to build an multi language ASP.NET MVC 2 website. Let's say I have the following sentences: MyStrings.resx: TestString : "This is my test" MyStrings.de.resx: TestString : "Dies ist mein ...
2
votes
2answers
385 views

Organizing ASP.NET resource files in folders based on language

In my application's root App_LocalResources I've created several resource files (.resx) to localize my application for multiple languages. For Spanish, I copied over the default resource files and ...

1 2 3