Skip to content

Add support for --locale #39

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ opt_param_env_vars:
- { env_var: "PASSWORD", env_value: "password", desc: "Optional web gui password, if not provided, there will be no auth."}
- { env_var: "SUDO_PASSWORD", env_value: "password", desc: "If this optional variable is set, user will have sudo access in the code-server terminal with the specified password."}
- { env_var: "PROXY_DOMAIN", env_value: "code-server.my.domain", desc: "If this optional variable is set, this domain will be proxied for subdomain proxying. See [Documentation](https://github.com/cdr/code-server/blob/master/doc/FAQ.md#sub-domains)" }
- { env_var: "LOCALE", env_value: "en", desc: "If this optional variable is set, will set Display Language, default is English. See [Available locales](https://code.visualstudio.com/docs/getstarted/locales#_available-locales)" }

optional_block_1: false
optional_block_1_items: ""
Expand Down
5 changes: 5 additions & 0 deletions root/etc/services.d/code-server/run
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ else
PROXY_DOMAIN_ARG="--proxy-domain=${PROXY_DOMAIN}"
fi

if [ -z "${LOCALE}" ]; then
LOCALE="en"
fi

exec \
s6-setuidgid abc \
/usr/local/bin/code-server \
Expand All @@ -21,5 +25,6 @@ exec \
--extensions-dir /config/extensions \
--disable-telemetry \
--auth "${AUTH}" \
--locale "${LOCALE}" \
"${PROXY_DOMAIN_ARG}" \
/config/workspace