DiabloMablo
DiabloMablo

Reputation: 115

How do I create localized resources in Visual Studio?

I'm trying to add culture specific translations for the strings in my Resources.resx file and can't find anywhere to do this in visual studios.

Upvotes: 0

Views: 882

Answers (1)

DiabloMablo
DiabloMablo

Reputation: 115

Create a new resource file with an additional suffix that matches the culture string you're looking for.

For example, if you'd like to have translations associated with the neutral French culture ("fr") then create a resource file named Resources.fr.resx with your translations in it.

Upvotes: 1

Related Questions