2022-10-17 06:35:36 +00:00
|
|
|
#!/bin/bash
|
2021-08-05 15:18:03 +00:00
|
|
|
SRC="$1"
|
|
|
|
DST="$2"
|
2021-08-07 11:46:46 +00:00
|
|
|
for LANG in "de" "el" "en" "es" "fr" "it" "nl" "pl" "pt" "ru" "sv" "zh-Hans"; do
|
|
|
|
cp $SRC/$LANG/* $DST/$LANG.lproj
|
2021-08-05 15:18:03 +00:00
|
|
|
done
|