aboutsummaryrefslogtreecommitdiffstats
path: root/.github/ISSUE_TEMPLATE
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2021-09-17 07:44:41 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2021-09-19 08:16:40 -0300
commitf9620708e0f512a3264309fd49979d19c13e5fc6 (patch)
treeeca025f9986d114c3609007aa90afb5886299311 /.github/ISSUE_TEMPLATE
parentUpdate SECURITY.md (diff)
downloadfirejail-f9620708e0f512a3264309fd49979d19c13e5fc6.tar.gz
firejail-f9620708e0f512a3264309fd49979d19c13e5fc6.tar.zst
firejail-f9620708e0f512a3264309fd49979d19c13e5fc6.zip
bug_report.md: use LC_ALL instead of LANG
This overrides all `LC_*` variables (and LANG) rather than just LANG. From Section 8.2, Internationalization Variables of POSIX.1-2017[1]: > LANG > This variable shall determine the locale category for native > language, local customs, and coded character set in the absence of > the LC_ALL and other LC_* (LC_COLLATE, LC_CTYPE, LC_MESSAGES, > LC_MONETARY, LC_NUMERIC, LC_TIME) environment variables. This can > be used by applications to determine the language to use for error > messages and instructions, collating sequences, date formats, and > so on. > > LC_ALL > This variable shall determine the values for all locale > categories. The value of the LC_ALL environment variable has > precedence over any of the other environment variables starting > with LC_ (LC_COLLATE, LC_CTYPE, LC_MESSAGES, LC_MONETARY, > LC_NUMERIC, LC_TIME) and the LANG environment variable. [1] https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap08.html
Diffstat (limited to '.github/ISSUE_TEMPLATE')
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
index 0f13afc51..dc5ebcee0 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -15,7 +15,7 @@ _Describe the bug_
15 15
16_Steps to reproduce the behavior_ 16_Steps to reproduce the behavior_
17 17
181. Run in bash `LANG=C firejail PROGRAM` (`LANG=C` to get English messages that can be understood by everybody) 181. Run in bash `LC_ALL=C firejail PROGRAM` (`LC_ALL=C` to get a consistent output in English that can be understood by everybody)
192. Click on '....' 192. Click on '....'
203. Scroll down to '....' 203. Scroll down to '....'
214. See error `ERROR` 214. See error `ERROR`