passepartout-apple/scripts/util/import-onesky-translations.sh

9 lines
172 B
Bash
Raw Normal View History

#!/bin/bash
2021-08-05 15:18:03 +00:00
SRC="$1"
DST="$2"
LANG_FOLDERS=`cd $DST && ls -d *.lproj`
for FOLDER in $LANG_FOLDERS; do
LANG="${FOLDER%.lproj}"
2021-08-07 11:46:46 +00:00
cp $SRC/$LANG/* $DST/$LANG.lproj
2021-08-05 15:18:03 +00:00
done