diff options
author | Daniel YC Lin <dlin.tw@gmail.com> | 2024-03-14 23:54:11 +0100 |
---|---|---|
committer | Earl Warren <contact@earl-warren.org> | 2024-03-20 08:46:29 +0100 |
commit | 4eb8a09423a470686a07da0065c626e2e8828895 (patch) | |
tree | 84071f170663384e3bd98c4b25748fcd984e5a0c /docs/scripts/trans-copy.sh | |
parent | Remove jQuery AJAX from the diff functions (#29743) (diff) | |
download | forgejo-4eb8a09423a470686a07da0065c626e2e8828895.tar.xz forgejo-4eb8a09423a470686a07da0065c626e2e8828895.zip |
Fix document error about 'make trans-copy' (#29710)
Change document to 'make docs'
---------
Co-authored-by: techknowlogick <techknowlogick@gitea.com>
(cherry picked from commit 607ed27b4fb8ead346f89b379d9788f5c76fb799)
Diffstat (limited to '')
-rwxr-xr-x | docs/scripts/trans-copy.sh | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/docs/scripts/trans-copy.sh b/docs/scripts/trans-copy.sh deleted file mode 100755 index 7374ab9e73..0000000000 --- a/docs/scripts/trans-copy.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/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=( - "fr-fr" - "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 - cp ${SOURCE} ${DEST} - sed -i.bak "s/en\-us/${LOCALE}/g" ${DEST} - rm ${DEST}.bak - fi - done -done |