I have a windows phone app - for which I want to have different screenshots of store for different countries is this possible to do ?
<DefaultLanguage xmlns="" code="en"/>
<Languages xmlns="">
<Language code="en-GB" /> //English - UK
<Language code="fr" /> //French
<Language code="de" /> //German
<Language code="it" /> //Italian
<Language code="es-ES" /> //Spanish - Spain
<Language code="pt" /> //Portuguese
<Language code="pt-BR" /> //Portuguese - Brazil
<Language code="ro-RO" /> //Romanian - Romania
<Language code="kn-IN" /> //Kannada - India
</Languages>
I would recommend to check the store rules before going that way. I think that if you put up a localized store entry, then also at least the relevant parts of the app need to be translated. At least, that is how I remember it. But could be wrong and a bunch of rules were removed a few months ago...If you just want to show different screenshots (without providing different resource (string) file for each country ), modify Languages element of your app's manifest file.
I would recommend to check the store rules before going that way. I think that if you put up a localized store entry, then also at least the relevant parts of the app need to be translated. At least, that is how I remember it. But could be wrong and a bunch of rules were removed a few months ago...