Reputation: 115
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
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