diff options
author | silverwind <me@silverwind.io> | 2022-12-22 03:09:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-21 21:09:53 -0500 |
commit | 3affb02df517e9081593473137fc287ad51057b7 (patch) | |
tree | e5e58cf5b79356576b5c292b6824e6e14a6c3bd1 /docs/scripts/trans-copy | |
parent | 8e17fb5c066bf80c6d9b9d520c217fb1ccfe96df (diff) | |
download | gitea-3affb02df517e9081593473137fc287ad51057b7.tar.gz gitea-3affb02df517e9081593473137fc287ad51057b7.zip |
Run hugo via `go run` and lock its version (#22206)
- Don't rely on obscure docker images like `plugins/hugo`
- Lock down `hugo` to same version the image had used
- Remove unnecessary verbosity in `trans-copy`
- Rename `trans-copy` to `trans-copy.sh`
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: John Olheiser <john+github@jolheiser.com>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'docs/scripts/trans-copy')
-rwxr-xr-x | docs/scripts/trans-copy | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/docs/scripts/trans-copy b/docs/scripts/trans-copy deleted file mode 100755 index 7732192885..0000000000 --- a/docs/scripts/trans-copy +++ /dev/null @@ -1,35 +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 - echo "Creating fallback for ${DEST#${ROOT}/content/}" - cp ${SOURCE} ${DEST} - sed -i.bak "s/en\-us/${LOCALE}/g" ${DEST} - rm ${DEST}.bak - fi - done -done |