Difference between revisions of "Locale"
Views
Actions
Namespaces
Variants
Tools
A proper guide for setting locale after some strange issues raised at the forum
imported>Fhdk (→X11) |
imported>Petsam (A proper guide for setting locale after some strange issues raised at the forum) |
||
Line 3: | Line 3: | ||
= Locale = | = Locale = | ||
The locale is all the settings related to localization, like language, time, currency etc. | |||
In Manjaro you can set the desired locale settings with Manjaro Settings Manager GUI application. | |||
Sometimes, because of complicated setups and often after some user mistakes, you might not be able to have the correct settings for each user. Below you will see how you can check and set properly your configuration manually. | |||
In Linux systems all locales are available for installation, they just need to be activated/generated. The settings are configured initially system-wide, but it is possible to override them for user-session. | |||
== System == | |||
Check your current system settings (type in terminal) | |||
<pre> | |||
locale | |||
</pre> | |||
Check which are already active | |||
<pre> | |||
locale -a | |||
</pre> | |||
If your locale is not listed, you must edit '''/etc/locale.gen''' and uncomment yours. In example '''LANG=zh_TW.UTF-8''' | |||
<pre> | |||
# zh_SG.UTF-8 UTF-8 | |||
# zh_TW BIG5 | |||
# zh_TW.EUC-TW EUC-TW | |||
zh_TW.UTF-8 UTF-8 | |||
# zu_ZA ISO-8859-1 | |||
</pre> | |||
You may want to uncomment all the variations of your country code "zh_TW" to use them as fallbacks for some programs they might use them. Then, generate them with this command | |||
<pre> | |||
sudo locale-gen | |||
</pre> | |||
Now you can set the system locale with this | |||
<pre> | <pre> | ||
LANG | sudo localectl set-locale LANG=zh_TW.UTF-8 | ||
</pre> | </pre> | ||
The settings are set in the system file '''/etc/locale.conf'''. You don't need to manually edit this file unless you are having troubles. | |||
Here is a sample | |||
<pre> | <pre> | ||
Line 62: | Line 52: | ||
</pre> | </pre> | ||
=== | == User == | ||
The system locale can be overriden for a user that wants a different locale language by creating (or editing if it already exists) a file named `.xprofile` in the home folder `/home/USERNAME/.xprofile`. Edit it with any user specific locale settings as bellow. | |||
This sample illustrates how to set Traditional Chinese as the UI language while keeping Australian English for the formats. | |||
<pre> | <pre> | ||
# Set display language to zh_TW and gcin as default IM | # Set display language to zh_TW and gcin as default IM | ||
Line 92: | Line 68: | ||
</pre> | </pre> | ||
== | == Console fonts == | ||
The file '''vconsole.conf''' holds information on your keyboard layout and the font displayed in the TTY - the physical console. | |||
Here is a sample setup for danish keyboard and font. | |||
<pre> | |||
KEYMAP=dk | |||
FONT=ter-118n | |||
</pre> | |||
= | |||
== Troubleshooting == | |||
If you have followed the above guide and still have issues, there are possibilities of other files conflicting. Xorg, GDM and Plasma may have overriden your settings. The respective Archlinux wiki for locale is an excellent place to look for a solution and of cource the Manjaro Forum is always the more welcoming community. | |||
[https:// | |||
== References == | |||
[https://wiki.archlinux.org/index.php/ | Arch Linux Wiki - [https://wiki.archlinux.org/index.php/locale Locale], [https://wiki.archlinux.org/index.php/Xprofile Xprofile] | ||
[https://wiki. | Manjaro Forum Topics [https://forum.manjaro.org/t/request-add-correct-language-setting-to-wiki-or-change-how-gui-setting-work/41337/] [https://forum.manjaro.org/t/one-distinct-language-per-user/37097/6] |