In order to localize an android application (reverse engineer), I am comparing three XML files values (English, French & Arabic) to translate the missing values in French and Arabic. As a first step after decompiling the APK i have to make the XML files in a one excel sheet with four columns "Name, English,French,Arabic"
English
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="cancel_action">Cancel</string>
<string name="dialog_title">Dialog Title</string>
<string name="application_title">Application Title</string>
<string name="confirm_action">Confirm</string>
...
</resources>
French
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="dialog_title">Titre dialogue</string>
<string name="application_title">Titre Application</string>
<string name="cancel_action">Annuler</string>
<string name="confirm_action">Confirmer</string>
...
</resources>
My issue is how to import & organize them pragmatically instead of excel filters ? because variable names have different locations ? I hope the idea is clear!