While programming my Android app I just kept inserting elements in strings.xml with no order whatsoever. Is there a shortcut key (like Ctrl+Shift
For those who have access to GNU or similar *nix command-line utils, you can do the following:
cat <(head -n 1 strings.xml) <(head strings.xml -n -2 | tail -n +2 | sort ) <(tail -n 2 strings.xml)
You may need to tweak the numbers slightly if your strings.xml has a larger XML header.
strings.xml