passepartout-apple/scripts/util/import-onesky-translations.sh
Dmytro Chyrkin 0b7b82129b
fix: added missing uk translation (#445)
Co-authored-by: Davide De Rosa <keeshux@gmail.com>
2024-01-05 16:38:16 +01:00

9 lines
172 B
Bash
Executable File

#!/bin/bash
SRC="$1"
DST="$2"
LANG_FOLDERS=`cd $DST && ls -d *.lproj`
for FOLDER in $LANG_FOLDERS; do
LANG="${FOLDER%.lproj}"
cp $SRC/$LANG/* $DST/$LANG.lproj
done