En gros, la définition des règles de mise en forme régionales (devise, date, représentation numérique), y compris la langue.
Représenté par language_country.character set
.
Nom de la langue | sens |
---|---|
ja_JP.utf8 | Japonais |
en_US.utf8 | Notation anglaise aux États-Unis |
en_GB.utf8 | Notation anglaise au Royaume-Uni |
de_DE.utf8 | Notation allemande en Allemagne |
de_H.utf8 | Notation suisse allemande |
zh_CH.utf8 | Caractères simplifiés |
zh_TW.utf8 | Chinois traditionnel |
$ locale
LANG=en_US.UTF-8
LC_CTYPE="en_US.UTF-8"
LC_NUMERIC="en_US.UTF-8"
LC_TIME="en_US.UTF-8"
LC_COLLATE="en_US.UTF-8"
LC_MONETARY="en_US.UTF-8"
LC_MESSAGES="en_US.UTF-8"
LC_PAPER="en_US.UTF-8"
LC_NAME="en_US.UTF-8"
LC_ADDRESS="en_US.UTF-8"
LC_TELEPHONE="en_US.UTF-8"
LC_MEASUREMENT="en_US.UTF-8"
LC_IDENTIFICATION="en_US.UTF-8"
LC_ALL=
$ echo $LANG
en_US.UTF-8
locale.conf
$ cat /etc/locale.conf
en_US.UTF-8
$ export LANG=ja_JP.utf8; echo $LANG
ja_JP.utf8
$ localectl set-locale LANG=en_US.utf8; cat /etc/locale.conf
LANG=en_US.utf8
https://eng-entrance.com/linux-localization-locale https://docs.oracle.com/cd/E26924_01/html/E27144/glmbx.html
Recommended Posts