OneSky Dev

How to localize Windows Phone applications

Examples:

The format does not support contexts like singular, plural.
AppResources.en-US.resx
<?xml version="1.0" encoding="utf-8"?>
<root>
    <data name="WelcomeText">
    	<value>Hello %s</value>
    	<comment>this is a comment</comment>
    </data>
    <data name="HomeText">
    	<value>Home</value>
    	<comment>this is a comment</comment>
    </data>
</root>
AppResources.zh-TW.resx
<?xml version="1.0" encoding="utf-8"?>
<root>
    <data name="WelcomeText">
    	<value>歡迎你,%s</value>
    	<comment>this is a comment</comment>
    </data>
    <data name="HomeText">
    	<value>首頁</value>
    	<comment>this is a comment</comment>
    </data>
</root>