1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00
k-9/tools/fix_all_transifex_output.sh

12 lines
215 B
Bash
Executable File

#!/bin/bash
SCRIPT=$(readlink -f $0)
SCRIPTPATH=`dirname $SCRIPT`
PROJECTROOT=`dirname $SCRIPTPATH`
cd $PROJECTROOT
find res/values-* -name "strings.xml" -type f -exec ./tools/fix_transifex_output.sh {} \;
cd -