I know, I can add statements for different languages like this
<Resources>
<Resource Language="en-us">
<Resource Language="de-de">
</Resources>
But how can I give my app different names for different languages like "My US App" and my "My DE App"?
Thank you!
P.S. I found nothing in the net about this question. FYI, I don't use Visual Studio.
This could be done using the localization mechanism of UWP. I noticed that you mentioned that you are not using VS. You might need to create so necessary files by yourself.
Stringsfolder inside the Project folder.Strings, create a new sub-folder and name iten-US. You could create other sub-folders likede-DEandfr-FRfor different language.en-US, create a new Resources File (.resw) and name it "Resources.resw". The Resources File (.resw) is a template in the Visual Studio. You need to create such file by yourself.Resources.reswfile for name. For example, the key isAppDisplayNameand the value isEn-ValueTitle.Applications-uap:VisualElementsnode, findDisplayNameelement and change its value asms-resource:AppDisplayName.Now your app will use the corresponding
AppDisplayNamevalue you defined in theResources.reswfile as the app name when you set the different default language for your app.Here the
Resources.reswfile opened via notepad: