![](https://seccdn.libravatar.org/avatar/77cb4da5f72bc176182dcc33f03a18f3.jpg?s=120&d=mm&r=g)
On 2024-08-31 22:23, Robert Webb wrote:
On Sat, 31 Aug 2024 21:10:07 +0200, Christian Schmitz <list@schweb.com.ar> wrote:
How i can change the locale permanently? I am a spanish speaker, but i have all my OS in english.
See the openSUSE documentation, chapter 'Changing language and country settings with YaST'. (A search for "locale" in the single-HTML finds this.)
https://doc.opensuse.org/documentation/leap/startup/html/book-startup/cha-ya...
Right. And if you want to change just one user, you create or edit the file [home]/.i18n If you want to change a single command during one operation, just create a script like this: cer@Telcontar:~> cat /usr/local/bin/ingles #!/bin/sh LANG=en_US.UTF-8 \ LC_ALL=en_US.UTF-8 \ DICTIONARY=english \ KDE_LANG=en_US.UTF-8 \ LANGUAGE=en_US.UTF-8:en \ exec "$@" cer@Telcontar:~> and then, you run: ingles command ... whatever -- Cheers / Saludos, Carlos E. R. (from 15.5 x86_64 at Telcontar)