How can I use msgid during Android strings localization?
In 开发者_如何学PythonAndroid sources I see such strings:
<string name="app_name" msgid="8095131950334945205">"Calculadora"</string>
Notice the 'msgid', this indicates existence of some tool to manage strings translation. What the tool is it?
This msgid comes when used with tools like a2po to create po files and then they are used to translate the strings automatically using tools like poedit. You can easily ignore the msgid property and update the translation manually. Here is the link for android2po. Here is another reference for translation.
It is probably Motodev Studio: http://developer.motorola.com/docstools/motodevstudio
Check out its features: http://developer.motorola.com/docstools/motodevstudio/features
It is possible to use Google Translate inside Motodev Studio to automatically translate all your strings.
精彩评论