potcasse: rename LANG to LANGUAGE to avoid collapsing into variables used to define a locale.

This commit is contained in:
Solene Rapenne 2021-07-20 23:23:33 +02:00
parent fd7b98138c
commit cb2c3425cb
2 changed files with 4 additions and 3 deletions

View File

@ -28,6 +28,7 @@ It has the following variables:
+ `SITE`: base HTTP URL where your podcast will be available (for example `https://tilde.example/myname/podcast/`
+ `RSSLINK`: name of the RSS feed
+ `IMAGE`: if value is not empty, potcasse will use the file `logo.png`
+ `LANGUAGE`: language code (such as `fr` or `en-us`) that can be potentially used by some players
You will share the link `$SITE/index.html` or `$SITE/$RSSLINK` to your listeners.

View File

@ -24,7 +24,7 @@ init() {
cat << EOF > metadata.sh
TITLE=
SITE=
LANG=en-us
LANGUAGE=en-us
#uncomment to use logo.png as a logo
#IMAGE=YES
EOF
@ -81,12 +81,12 @@ gen() {
<title>Image of ${SITE}</title>
<link>${SITE}</link>
</image>
<language>${LANG}</language>
<language>${LANGUAGE}</language>
EOF
cat <<EOF >> $TMPHTML
<!DOCTYPE html>
<html lang="${LANG}">
<html lang="${LANGUAGE}">
<head>
<title>${TITLE}</title>
</head>