mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-04 08:35:08 -05:00
12 lines
215 B
Bash
Executable File
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 -
|