I’ve created a small gem, Bruno, to convert a Localizable.strings (iOS) file to a strings XML file (Android) and vice-versa. To install it: $ gem install bruno A Localizable.strings file in an iOS project looks like this: "APP_NAME"="Test App";"TITLE_ACTIVITY_MAIN"="Test";"INFO_TITLE"="Information";"INFO_SUBTITLE"="More information"; And with a single command: $ bruno convert --in Localizable.strings --out strings.xml You will get this file: <?xml version="1.0" encoding="UTF-8"?><resources>...