I want the strings in strings.xml to be converted to ios Localizable.strings format
Format:
"String"="String"
I have used few online tools in web which converts xml to localible.strings, but the format I have seen is :
"Key"="Value"
But I need in this format:
"value"="value"
example:
if this is the Strings.xml file,
<resources>
<String name="addtocart">Please add to cart</string>
</resources>
The localizable.strings format should be in :
"Please add to cart"="Please add to cart" (I need this)
and not
"addtocart"="Please add to cart" (Format resulted from conversion tools in web)
Is there any plugin or built in functionality in eclipse. I am new to android and this localization process.
Can one help me out in achieving this please...
Thanks in advance.