Stop Pasting Your Code into Random websites

Android Strings to iOS Localizable

Using Polypad this script turns android xml file into iOS strings file from your pasted text.

How to use Android Strings to iOS Localizable?

Using the Android Strings to iOS Localizable script with Polypad is very easy. Let’s say we have some android xml text that we would like to convert. Simply paste the text down below into Polypad.

<string name="top_bar">Primary</string>
<string name="bottom_bar">Secondary</string>
<string name="panel_bar">Alternative</string>

Press cmd/ctrl + p depending on your operating system and search for the Android Strings to iOS Localizable script and select it. The expected output should read:

"top_bar" = "Primary";
"bottom_bar" = "Secondary";
"panel_bar" = "Alternative";