Skip to content

Commit

Permalink
fix: Syntax-issue in .env-file
Browse files Browse the repository at this point in the history
  • Loading branch information
elwinschmitz committed Jun 28, 2024
1 parent b0ba324 commit a5a4760
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ NG_USE_FEEDBACK_PROMPT=true
NG_USE_REGION_PER_LOCALE=true

# Default language
NG_LOCALE_LANGUAGE='en'
# Default language direction (Possible values: 'ltr' or 'rtl')
NG_LOCALE_DIR='ltr'
# Available language options (Comma-separated list like: '<language-code>:<language-name>,en:English,*:Other...')
# To disable the language-switcher on the main-page, or when using `NG_USE_REGION_PER_LOCALE=true`, set this to: ''
NG_LOCALE_ALTERNATIVES='ar:العربية,en:English,nl:Nederlands,*:Other...'
NG_LOCALE_LANGUAGE="en"

Check failure on line 37 in .env.example

View workflow job for this annotation

GitHub Actions / dotenv-linter

[dotenv-linter] .env.example#L37

QuoteCharacter: The value has quote characters (', ")
Raw output
.env.example:37 QuoteCharacter: The value has quote characters (', ")
# Default language direction (Possible values: "ltr" or "rtl")
NG_LOCALE_DIR="ltr"

Check failure on line 39 in .env.example

View workflow job for this annotation

GitHub Actions / dotenv-linter

[dotenv-linter] .env.example#L39

QuoteCharacter: The value has quote characters (', ")
Raw output
.env.example:39 QuoteCharacter: The value has quote characters (', ")
# Available language options (Comma-separated list like: "<language-code>:<language-name>,en:English,*:Other...")
# To disable the language-switcher on the main-page, or when using `NG_USE_REGION_PER_LOCALE=true`, set this to: ""
NG_LOCALE_ALTERNATIVES="ar:العربية,en:English,nl:Nederlands,*:Other..."

Check failure on line 42 in .env.example

View workflow job for this annotation

GitHub Actions / dotenv-linter

[dotenv-linter] .env.example#L42

QuoteCharacter: The value has quote characters (', ")
Raw output
.env.example:42 QuoteCharacter: The value has quote characters (', ")
# An (optional) explanation below the list of available language options (i.e "* Using Google Translate")
NG_LOCALE_ALTERNATIVES_EXPLANATION='* Using Google Translate'
NG_LOCALE_ALTERNATIVES_EXPLANATION="* Using Google Translate"

# Define the logo used on the main/front-page by an absolute URL (starting with https://)
TXT_APP_LOGO_URL=
Expand Down

0 comments on commit a5a4760

Please sign in to comment.