How can I use the multiple language toolkit for Windows Store apps. In the Internet there are many videos and texts, but on neither side is explained how I add new vocabulary. First I installed the multiple language toolkit and added it to the project. Then I added several languages.
For Windows Phone you just had to add to the list in the file AppRecources.resx new vocabulary.
Now I wonder how I add new words at Windows Store apps because there is unfortunately no list where I can enter all the words (like for Windows Phone), it must indeed be another way?
I think my question isn't the most difficult question, but I do not know how to solve it. regards Christian
In your project, there should be a folder named the same as your primary language (i.e. "en-US", if your language is American English). In that folder there will be a ".resw" file, likely named
Resources.resw
. You can then add strings to it just like you would a .resx. When you Rebuild your application, the Multilingual App Toolkit will generate .xlf files inside of theMultilingualResources
folder.