mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-14 05:25:07 -05:00
12 lines
215 B
Bash
12 lines
215 B
Bash
|
#!/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 -
|