mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-04 16:45:09 -05:00
12 lines
279 B
Bash
Executable File
12 lines
279 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 ! -wholename "res/values-fr-rCA/strings.xml" -exec ./tools/sync_translation.py res/values/strings.xml {} \;
|
|
|
|
cd -
|