Question

I finished a new WP7 app and I made it possible to switch to different languages via custom code. I'd like to add English and French, currently it is only set to German.

When I try to submit it to the marketplace, I only have the option to fill out the german info, but how can I declare my app to be also available in EN and FR?

Était-ce utile?

La solution 2

Thanks to Anton I came to the solution:

If you end up like me, do this to add different language support for your app manually (without filling out resources):

Create new resource items in your project and call them AppResources.en-GB.resx etc. It should fit to the syntax. You don't need to fill out or explicitly use those resource files.

After that, you go to your .csproj file of your project and add (see above posts) those language infos into it. Then, you'll see that the marketplace recognizes those languages.

Autres conseils

See the HowTo: on MSDN.

The idea: If you have resources for supported languages, you need to declare them in .csproj file

<SupportedCultures>de-DE;fr-FR;us-EN;</SupportedCultures>
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top