website/scripts/trans-copy
Blueberry bd9f08d996 Russian translation (#98)
Upload files to 'content/features'

Upload files to 'content'

Update 'scripts/trans-copy'

Update 'static/_redirects'

Update 'config.yaml'

Reviewed-on: gitea/website#98
Reviewed-by: Andrew Thornton <art27@cantab.net>
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-Authored-By: Blueberry <blueberry@noreply.gitea.io>
Co-Committed-By: Blueberry <blueberry@noreply.gitea.io>
2020-10-24 10:03:04 +08:00

35 lines
835 B
Bash
Executable File

#!/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=(
"ru-ru"
"ja-jp"
"nl-nl"
"pt-br"
"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
echo "Creating fallback for ${DEST#${ROOT}/content/}"
cp ${SOURCE} ${DEST}
fi
done
done