Bring back trans-copy.sh #118

Merged
techknowlogick merged 8 commits from techknowlogick-patch-1 into main 2024-03-16 02:43:09 +00:00
2 changed files with 34 additions and 0 deletions

31
.trans-copy.sh Normal file
View File

@ -0,0 +1,31 @@
#!/usr/bin/env bash
set -e
#
# This script is used to copy the en-US content to our available locales as a
# fallback to always show all pages when displaying a specific locale that is
# missing some documents to be translated.
#
# Just execute the script without any argument and you will get the missing
# files copied into the content folder. We are calling this script within the CI
# server simply by `make trans-copy`.
#
declare -a LOCALES=(
"zh-cn"
"zh-tw"
)
ROOT=$(realpath $(dirname $0)/..)
for SOURCE in $(find ${ROOT}/content -type f -iname *.en-us.md); do
for LOCALE in "${LOCALES[@]}"; do
DEST="${SOURCE%.en-us.md}.${LOCALE}.md"
if [[ ! -f ${DEST} ]]; then
cp ${SOURCE} ${DEST}
sed -i.bak "s/en\-us/${LOCALE}/g" ${DEST}
rm ${DEST}.bak
fi
done
done

View File

@ -33,7 +33,10 @@ prepare-awesome\#%:
clone_main: clone
cd .tmp/upstream-docs && git clean -f && git reset --hard && git checkout $(GITEA_LATEST_BRANCH)
cur_path=`pwd`
mkdir -p .tmp/upstream-docs/docs/scripts
cp .trans-copy.sh .tmp/upstream-docs/docs/scripts/trans-copy.sh
cd .tmp/upstream-docs/docs && bash scripts/trans-copy.sh
rm .tmp/upstream-docs/docs/scripts/trans-copy.sh
cd $(cur_path)
bash check_outdated.sh zh-cn