Upload or paste your Android strings.xml file and get a ready-to-use PHP array (Laravel) file in seconds. Free, no signup, nothing is stored.
How it works
- Drag & drop your Android strings.xml file here or click to browse
- Click Convert — parsing and conversion happen instantly, the file never leaves the server response
- Copy the result or download it as a ready-to-use file
Android strings.xml
strings.xml is the standard string resource format of Android apps. Each string lives in a <string name="key">value</string> element inside <resources>; apostrophes and quotes must be escaped with a backslash.
<resources>
<string name="welcome">Welcome, %1$s!</string>
</resources>
PHP array (Laravel)
PHP array files are the classic localization format of Laravel (lang/en/messages.php) and many other PHP frameworks: a file that returns an associative array of translation strings.
<?php
return [
'welcome' => 'Welcome, :name!',
];
FAQ
Is this converter free?
Yes, completely free and without registration. It is a small tool built on top of the Localization.One translation platform.
Are my files uploaded or stored anywhere?
The file is parsed in memory to produce the converted output and is never written to disk or stored. If you paste text, the same applies.
What happens to placeholders and special characters?
Placeholders like %s, %1$s, {name} or {{var}} are kept as-is. Special characters are escaped according to the rules of the target format.