well .. i would do something like that - say values ββ/strings.xml - your main file that has all this. then just go through it and compare the rest of the files with it ....
cd res
find . -name strings.xml -exec diff -u values\/strings.xml {} \;
--- values/strings.xml 2013-04-30 00:42:46.000000000 -0400 +++ ./values-es/strings.xml 2013-04-30 00:42:03.000000000 -0400 @@ -1,6 +1,4 @@ <?xml version="1.0" encoding="utf-8"?> <resources> - <string name="app_name">frosty</string> - <string name="foo">Android</string> - <string name="bar">Android</string> -</resources> + <string name="app_name">Brabble-Android</string> +</resources> \ No newline at end of file --- values/strings.xml 2013-04-30 00:42:46.000000000 -0400 +++ ./values-fr/strings.xml 2013-04-30 00:49:16.000000000 -0400 @@ -1,6 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">frosty</string> - <string name="foo">Android</string> - <string name="bar">Android</string> + <string name="foo">bar</string> </resources>
which should be part of this, at least.
hope this helps abit.
source share