How to change regional settings in Linux, including decimal point
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
I was on Linux Mint, now I'm trying Ubuntu 18 main distro. At top of Gnome day of week/time is displayed. That's where I started, wanting to change it to English having set regional to Russian via GUI, as by the way I noticed time zone changes if I changed regional to US.
I've read and tried this: https://askubuntu.com/questions/754345/how-to-get-current-or-set-wanted-regional-format-in-the-terminal/754355#754355
Strangely, after sudo update-locale LC_TIME=en_CA.UTF-8
and even restart of PC, /etc/default/locale
has CA, but locale
in bash gives RU. And day of week on top of screen is in Russian still. Why different in file and by command? How to change language on top of screen, is it some short date variable, where to find it?
As extension to above, is it possible and how to change decimal point and thousand separator each individually to what I like?
linux ubuntu settings floating-point
add a comment |Â
up vote
1
down vote
favorite
I was on Linux Mint, now I'm trying Ubuntu 18 main distro. At top of Gnome day of week/time is displayed. That's where I started, wanting to change it to English having set regional to Russian via GUI, as by the way I noticed time zone changes if I changed regional to US.
I've read and tried this: https://askubuntu.com/questions/754345/how-to-get-current-or-set-wanted-regional-format-in-the-terminal/754355#754355
Strangely, after sudo update-locale LC_TIME=en_CA.UTF-8
and even restart of PC, /etc/default/locale
has CA, but locale
in bash gives RU. And day of week on top of screen is in Russian still. Why different in file and by command? How to change language on top of screen, is it some short date variable, where to find it?
As extension to above, is it possible and how to change decimal point and thousand separator each individually to what I like?
linux ubuntu settings floating-point
These are the steps I'd expect to follow - thomas-krenn.com/en/wiki/Configure_Locales_in_Ubuntu.
â slmâ¦
Jul 5 at 9:42
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I was on Linux Mint, now I'm trying Ubuntu 18 main distro. At top of Gnome day of week/time is displayed. That's where I started, wanting to change it to English having set regional to Russian via GUI, as by the way I noticed time zone changes if I changed regional to US.
I've read and tried this: https://askubuntu.com/questions/754345/how-to-get-current-or-set-wanted-regional-format-in-the-terminal/754355#754355
Strangely, after sudo update-locale LC_TIME=en_CA.UTF-8
and even restart of PC, /etc/default/locale
has CA, but locale
in bash gives RU. And day of week on top of screen is in Russian still. Why different in file and by command? How to change language on top of screen, is it some short date variable, where to find it?
As extension to above, is it possible and how to change decimal point and thousand separator each individually to what I like?
linux ubuntu settings floating-point
I was on Linux Mint, now I'm trying Ubuntu 18 main distro. At top of Gnome day of week/time is displayed. That's where I started, wanting to change it to English having set regional to Russian via GUI, as by the way I noticed time zone changes if I changed regional to US.
I've read and tried this: https://askubuntu.com/questions/754345/how-to-get-current-or-set-wanted-regional-format-in-the-terminal/754355#754355
Strangely, after sudo update-locale LC_TIME=en_CA.UTF-8
and even restart of PC, /etc/default/locale
has CA, but locale
in bash gives RU. And day of week on top of screen is in Russian still. Why different in file and by command? How to change language on top of screen, is it some short date variable, where to find it?
As extension to above, is it possible and how to change decimal point and thousand separator each individually to what I like?
linux ubuntu settings floating-point
asked Jul 5 at 7:45
Alexei Martianov
23211
23211
These are the steps I'd expect to follow - thomas-krenn.com/en/wiki/Configure_Locales_in_Ubuntu.
â slmâ¦
Jul 5 at 9:42
add a comment |Â
These are the steps I'd expect to follow - thomas-krenn.com/en/wiki/Configure_Locales_in_Ubuntu.
â slmâ¦
Jul 5 at 9:42
These are the steps I'd expect to follow - thomas-krenn.com/en/wiki/Configure_Locales_in_Ubuntu.
â slmâ¦
Jul 5 at 9:42
These are the steps I'd expect to follow - thomas-krenn.com/en/wiki/Configure_Locales_in_Ubuntu.
â slmâ¦
Jul 5 at 9:42
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
As for message on top of screen, below are steps, for example for Russian Federation:
1) edit /usr/share/i18n/locales/ru_RU
(e.g. by sudo nautilus
)
change abday
line to
abday "Sun";"Mon";"Tue";"Wed";"Thu";"Fri";"Sat"
2) bash $ sudo locale-gen ru_RU.UTF-8
3) set format in settings to Russian Federation (here first I wanted to make my own locale, but could not find how to make new territory so it appears in list in settings, e.g. in /usr/share/i18n/locales/ru_RU
territory "Russia"
, but settings say Russian Federation
- please somebody edit or comment how it can be done)
4) re-login
For decimal I changed it in /usr/share/i18n/locales/ru_RU
, it is seen correctly in Ubuntu format settings, however does not work in LibreOffice calc for unknown to me reason.
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
As for message on top of screen, below are steps, for example for Russian Federation:
1) edit /usr/share/i18n/locales/ru_RU
(e.g. by sudo nautilus
)
change abday
line to
abday "Sun";"Mon";"Tue";"Wed";"Thu";"Fri";"Sat"
2) bash $ sudo locale-gen ru_RU.UTF-8
3) set format in settings to Russian Federation (here first I wanted to make my own locale, but could not find how to make new territory so it appears in list in settings, e.g. in /usr/share/i18n/locales/ru_RU
territory "Russia"
, but settings say Russian Federation
- please somebody edit or comment how it can be done)
4) re-login
For decimal I changed it in /usr/share/i18n/locales/ru_RU
, it is seen correctly in Ubuntu format settings, however does not work in LibreOffice calc for unknown to me reason.
add a comment |Â
up vote
0
down vote
As for message on top of screen, below are steps, for example for Russian Federation:
1) edit /usr/share/i18n/locales/ru_RU
(e.g. by sudo nautilus
)
change abday
line to
abday "Sun";"Mon";"Tue";"Wed";"Thu";"Fri";"Sat"
2) bash $ sudo locale-gen ru_RU.UTF-8
3) set format in settings to Russian Federation (here first I wanted to make my own locale, but could not find how to make new territory so it appears in list in settings, e.g. in /usr/share/i18n/locales/ru_RU
territory "Russia"
, but settings say Russian Federation
- please somebody edit or comment how it can be done)
4) re-login
For decimal I changed it in /usr/share/i18n/locales/ru_RU
, it is seen correctly in Ubuntu format settings, however does not work in LibreOffice calc for unknown to me reason.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
As for message on top of screen, below are steps, for example for Russian Federation:
1) edit /usr/share/i18n/locales/ru_RU
(e.g. by sudo nautilus
)
change abday
line to
abday "Sun";"Mon";"Tue";"Wed";"Thu";"Fri";"Sat"
2) bash $ sudo locale-gen ru_RU.UTF-8
3) set format in settings to Russian Federation (here first I wanted to make my own locale, but could not find how to make new territory so it appears in list in settings, e.g. in /usr/share/i18n/locales/ru_RU
territory "Russia"
, but settings say Russian Federation
- please somebody edit or comment how it can be done)
4) re-login
For decimal I changed it in /usr/share/i18n/locales/ru_RU
, it is seen correctly in Ubuntu format settings, however does not work in LibreOffice calc for unknown to me reason.
As for message on top of screen, below are steps, for example for Russian Federation:
1) edit /usr/share/i18n/locales/ru_RU
(e.g. by sudo nautilus
)
change abday
line to
abday "Sun";"Mon";"Tue";"Wed";"Thu";"Fri";"Sat"
2) bash $ sudo locale-gen ru_RU.UTF-8
3) set format in settings to Russian Federation (here first I wanted to make my own locale, but could not find how to make new territory so it appears in list in settings, e.g. in /usr/share/i18n/locales/ru_RU
territory "Russia"
, but settings say Russian Federation
- please somebody edit or comment how it can be done)
4) re-login
For decimal I changed it in /usr/share/i18n/locales/ru_RU
, it is seen correctly in Ubuntu format settings, however does not work in LibreOffice calc for unknown to me reason.
edited Jul 5 at 12:52
answered Jul 5 at 12:40
Alexei Martianov
23211
23211
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f453544%2fhow-to-change-regional-settings-in-linux-including-decimal-point%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
These are the steps I'd expect to follow - thomas-krenn.com/en/wiki/Configure_Locales_in_Ubuntu.
â slmâ¦
Jul 5 at 9:42