Manjaro Difference between revisions of "Locale"

Difference between revisions of "Locale"

From Manjaro
imported>Fhdk
(Created page Locale with help for setting up locale)
 
m (Link points to the archived forum, changed the link .)
 
(30 intermediate revisions by 5 users not shown)
Line 1: Line 1:
<languages/>
__TOC__
__TOC__
<translate>
= Locale = <!--T:1-->


= Locale =
<!--T:2-->
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.


Locale is defined as is your display language and your locations preference for time and date display, monetary layout, paper size and several other location specifics.
<!--T:3-->
 
In Linux systems all locales are available for installation, they just need to be enabled and generated. The settings are configured initially system-wide, but it is possible to override them for user-session.
At least three locale definitions is used, KDE, X11, and kernel.
 
== Kernel ==
The kernel locale is controlled by the files
 
/etc/locale.gen
/etc/locale.conf
/etc/vconsole.conf
 
=== locale.gen ===
The file '''locale.gen''' contains information on all available translations for the kernel. All lines are commented by default, and you only remove the comment from those you want to use.
 
After you have chosen the languages you must generate the translations for the system to find and use them. The change will only take effect after a restart. The translation files are generated by the command
 
sudo locale-gen
 
=== locale.conf ===
The file '''locale.conf''' contains information on your TTY language and possibly other location specifics.
 
The available settings are


== System == <!--T:4-->
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
LANGUAGE
LC_ADDRESS
LC_COLLATE
LC_CTYPE
LC_IDENTIFICATION
LC_MEASUREMENT
LC_MESSAGES
LC_MONETARY
LC_NAME
LC_NUMERIC
LC_PAPER
LC_TELEPHONE
LC_TIME
</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


Our chinese users sometimes faces difficulties getting the settings right so with the help of such user we have put together a sample configuration. It is a sample but you get the idea and you can adapt it to you specific needs. The only thing to change is the ISO locale code to match that of your location
<!--T:5-->
 
==== Sample locale.conf ====
 
<pre>
<pre>
  LANG=zh_TW.UTF-8
  LANG=zh_TW.UTF-8
Line 62: Line 56:
</pre>
</pre>


=== vconsole.conf ===
== User == <!--T:6-->
The file '''vconsole.conf''' holds information on your keyboard layout and the font displayed in the TTY - the physical console.
 
==== Sample vconsole.conf ====
Sample setup for danish keyboard and font.
 
<pre>
~ >>> cat /etc/vconsole.conf
KEYMAP=dk
FONT=ter-118n
</pre>
 
== X11 ==
For each user on a graphical system you will find a file in the homefolder named '''~/.xprofile'''. This file can be used to control which interface language the X system should use.
 
Our chinese friend has kindly provided the settings he is using to get his interface right and the settings is provided in the hope they will be useful. It is a sample and as such you might need to adapt them to your location and preference.


<!--T:7-->
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 below. 
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 91: Line 73:
</pre>
</pre>


== KDE ==
== Console fonts == <!--T:8-->
Generally you should not need any tweaking but for your info, you can define regional settings in plasma and the are saved in the file
The file '''vconsole.conf''' holds information on your keyboard layout and the font displayed in the TTY - the physical console.
 
<!--T:9-->
Here is a sample setup for danish keyboard and font.
 
<pre>
KEYMAP=dk
FONT=ter-118n
</pre>
 
== Troubleshooting == <!--T:10-->
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 authoritative Archlinux wiki for locale is an excellent place to look for a solution and of course the Manjaro Forum is always the more welcoming community.
 
<!--T:11-->
Archlinux wiki is an ultimate source of Linux related information.
 
<!--T:12-->
Just remember that Arch is not Manjaro so '''please ask Manjaro questions in the Manjaro forum'''.


~/.config/plasma-localerc
== References == <!--T:13-->
Arch Linux Wiki - [https://wiki.archlinux.org/index.php/locale Locale], [https://wiki.archlinux.org/index.php/Xprofile Xprofile]


Plasma exports the settings using
<!--T:14-->
Manjaro Forum Topics [https://archived.forum.manjaro.org/t/one-distinct-language-per-user/37097/6]


~/.config/plasma-locale-settings.sh
<!--T:15-->
This guide was copied over to [https://forum.manjaro.org/t/localize-manjaro/42946 Localize Manjaro] Forum Tutorials,
{02:19, 21 March 2018 (CET)}
</translate>


== More info ==
[[Category:Contents Page{{#translation:}}]]
This page was created per request in the forumpost
[https://forum.manjaro.org/t/request-add-correct-language-setting-to-wiki-or-change-how-gui-setting-work/41337/ How to change GUI settings]

Latest revision as of 14:17, 2 October 2021

Other languages:
English • ‎Türkçe • ‎русский

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 enabled and 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)

 locale

Check which are already active

 locale -a

If your locale is not listed, you must edit /etc/locale.gen and uncomment yours. In example LANG=zh_TW.UTF-8

# 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

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

sudo locale-gen

Now you can set the system locale with this

sudo localectl set-locale LANG=zh_TW.UTF-8

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

 LANG=zh_TW.UTF-8
 LANGUAGE=zh_TW:en_AU
 LC_ADDRESS=en_AU.UTF-8
 LC_IDENTIFICATION=en_AU.UTF-8
 LC_MEASUREMENT=en_AU.UTF-8
 LC_MONETARY=en_AU.UTF-8
 LC_MESSAGES=zh_TW.UTF-8
 LC_NAME=en_AU.UTF-8
 LC_NUMERIC=en_AU.UTF-8
 LC_PAPER=en_AU.UTF-8
 LC_TELEPHONE=en_AU.UTF-8
 LC_TIME=en_AU.UTF-8

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 below. This sample illustrates how to set Traditional Chinese as the UI language while keeping Australian English for the formats.

# Set display language to zh_TW and gcin as default IM
export LANG=zh_TW.UTF-8
export LANGUAGE=zh_TW:en_AU
export LC_MESSAGES=zh_TW.UTF-8
export LC_CTYPE=zh_TW.UTF-8
export XMODIFIERS=@im=gcin
export GTK_IM_MODULE=gcin
export QT_IM_MODULE=gcin
export XIM_MODULE=gcin

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.

KEYMAP=dk
FONT=ter-118n

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 authoritative Archlinux wiki for locale is an excellent place to look for a solution and of course the Manjaro Forum is always the more welcoming community.

Archlinux wiki is an ultimate source of Linux related information.

Just remember that Arch is not Manjaro so please ask Manjaro questions in the Manjaro forum.

References

Arch Linux Wiki - Locale, Xprofile

Manjaro Forum Topics [1]

This guide was copied over to Localize Manjaro Forum Tutorials, {02:19, 21 March 2018 (CET)}

Cookies help us deliver our services. By using our services, you agree to our use of cookies.