I have ios string file that i want to convert into the Android xml file:
This is the ios string file which i have want to convert into the Android xml file:
/*
Localizable.strings
SaiÌda da Escola
Created by farhan shah on 11/12/2013.
Copyright (c) 2013 whizpool. All rights reserved.
*/
"settings_button" = "Settings";
"location" = "Destiny";
"Register_button" = "Register";
"logout" = "Log Out";
"login_button" = "Login";
"ok" = "Ok";
"yes" = "Yes";
"no" = "No";
the result should be like this like Android xml file:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!--
Localizable.strings
SaiÌda da Escola
Created by farhan shah on 11/12/2013.
Copyright (c) 2013 whizpool. All rights reserved.
-->
<string name="settings_button">Settings</string>
<string name="location">Destiny</string>
<string name="register_button">Register</string>
<string name="logout">Log Out</string>
<string name="login_button">Login</string>
<string name="ok">Ok</string>
<string name="yes">Yes</string>
<string name="no">No</string>
</resources>
any help,idea and sample code will be highly appreciated,Thanks alot in advance.