Install the language-pack-xx
First, make sure that the language package of the target locale is installed. On Debian-derived GNU/Linux distributions, Dutch language support is installed as follows:
$ sudo apt install language-pack-nl
This command will automatically also install language-pack-nl-base
.
Here is what I get by specifying LC_TIME
. This is more specific than using LC_ALL
. (Specifying LANG
does not work on Xubuntu LTS.)
$ date '+%A %e %B %Y'
Friday 16 October 2015
$ LC_TIME='nl_BE.UTF-8' date '+%A %e %B %Y'
vrijdag 16 oktober 2015
locale -a
to list the installed locales which will work for theLC_ALL
variable – Irwinirwinn