Reputation: 3769
Environment: Visual Studio 2010 for Windows Phone
I have lots of resources files(*.resx) . i use them to translate my app.I create a new folder named "Localized", I put all the resx file into the new folder, but it doesn't work.
How can I sort them into one folder?
Upvotes: 0
Views: 301
Reputation: 38375
Without knowing what "doesn't work", this is a bit of a guessing game. My suspicion is the resource file names may not be following the correct naming conventions where:
Each resource file must contain the correct culture/language name, as described in Culture and Language Support for Windows Phone.
For example:
- For the culture Spanish (Spain), use AppResources.es-ES.resx.
- For the culture German (Germany), use AppResources.de-DE.resx.
Other Resources
Upvotes: 1