As duas partes formam um código de idioma ISO-639 . A primeira parte é a própria linguagem e a segunda é (geralmente) um código do país especificando qual variante local.
Você pode observar o efeito da alteração de LANG
em quase todos os programas que possuem traduções. LC_COLLATE
afeta os resultados do programa sort
; LC_DATE
afeta a saída de date
e ls -l
. Para algumas configurações locais, é possível (mesmo provável) que você não tenha nada instalado que as use.
Na maioria dos sistemas, apenas LC_LANG
é definido e todas as outras configurações são herdadas disso.
A seguinte citação da página man de locale
(7) é relevante:
LC_COLLATE
This is used to change the behavior of the functions strcoll(3) and strxfrm(3), which are used to compare strings in the local alphabet. For example, the German sharp s is sorted as "ss".
LC_CTYPE
This changes the behavior of the character handling and classification functions, such as isupper(3) and toupper(3), and the multibyte character functions such as mblen(3) or wctomb(3).
LC_MONETARY
changes the information returned by localeconv(3) which describes the way numbers are usually printed, with details such as decimal point versus decimal comma. This information is internally used by the function strfmon(3).
LC_MESSAGES
changes the language messages are displayed in and what an affirmative or negative answer looks like. The GNU C-library contains the gettext(3), ngettext(3), and rpmatch(3) functions to ease the use of these information. The GNU gettext family of functions also obey the environment variable LANGUAGE (containing a colon-separated list of locales) if the category is set to a valid locale other than "C".
LC_NUMERIC
changes the information used by the printf(3) and scanf(3) family of functions, when they are advised to use the locale-settings. This information can also be read with the localeconv(3) function.
LC_TIME
changes the behavior of the strftime(3) function to display the current time in a locally acceptable form; for example, most of Europe uses a 24-hour clock versus the 12-hour clock used in the United States.
LC_ALL All of the above.