42 lines
1.4 KiB
Bash
Executable File
42 lines
1.4 KiB
Bash
Executable File
#!/bin/zsh
|
|
|
|
set -ev
|
|
|
|
SRCROOT=$(pwd)
|
|
|
|
echo ${SRCROOT}
|
|
|
|
# Task 1
|
|
# here we use the template source as input to
|
|
# generate strings so we could use new strings
|
|
# before sync to Crowdin
|
|
|
|
# clean Base.lproj
|
|
rm -rf ${SRCROOT}/Localization/StringsConvertor/input/Base.lproj
|
|
# copy tempate sources
|
|
mkdir ${SRCROOT}/Localization/StringsConvertor/input/Base.lproj
|
|
cp ${SRCROOT}/Localization/app.json ${SRCROOT}/Localization/StringsConvertor/input/Base.lproj/app.json
|
|
cp ${SRCROOT}/Localization/ios-infoPlist.json ${SRCROOT}/Localization/StringsConvertor/input/Base.lproj/ios-infoPlist.json
|
|
cp ${SRCROOT}/Localization/Localizable.stringsdict ${SRCROOT}/Localization/StringsConvertor/input/Base.lproj/Localizable.stringsdict
|
|
|
|
# Task 2 generate strings file
|
|
cd ${SRCROOT}/Localization/StringsConvertor
|
|
sh ./scripts/build.sh
|
|
|
|
# Task 3 copy strings file
|
|
cp -R ${SRCROOT}/Localization/StringsConvertor/output/main/ ${SRCROOT}/Mastodon/Resources
|
|
cp -R ${SRCROOT}/Localization/StringsConvertor/output/module/ ${SRCROOT}/MastodonSDK/Sources/MastodonLocalization/Resources
|
|
cp -R ${SRCROOT}/Localization/StringsConvertor/Intents/output/ ${SRCROOT}/MastodonIntent
|
|
|
|
# Task 4 swiftgen
|
|
cd ${SRCROOT}
|
|
if which swiftgen >/dev/null; then
|
|
swiftgen
|
|
else
|
|
echo "Run 'brew install swiftgen'."
|
|
fi
|
|
|
|
# Task 5 clean temp file
|
|
rm -rf ${SRCROOT}/Localization/StringsConvertor/output
|
|
rm -rf ${SRCROOT}/Localization/StringsConvertor/intents/output
|