Reputation: 1011
I've noticed that the default Windows 8 apps change their names when the system language changes. I'd like to ask how to achieve this with my app? I couldn't find a way to specify it in the app manifest, it seems that it doesn't allow for multiple display names.
Thanks for any help!
Upvotes: 2
Views: 209
Reputation: 71
You can pull your applcation DisplayName from your multilingual resource files.
In appxmanifest:
<DisplayName>ms-resource:AppTitle</DisplayName>
In your Resources.resw:
AppTitle MyAppTitle
Upvotes: 3