Thanks a lot for those suggestions, both of you.
I particularly like the track you’ve opened up, Lupp, with the -env
switch. I’m on Linux, and have just been digging around trying to see if I can set an environment variable somewhere that will do the trick. The LO wiki lists the variables LANG and LC_ALL, which look promising, but it says nothing about them. According to the OO wiki, the latter “determines the values for all locale categories.”
But I’m having no luck with things like
$ env LANG=English localc
or
$ env LC_ALL="English (USA)" localc
Any of LC_ALL="English (USA)"
, LC_ALL="English"
, or LC_ALL="EN"
result in warnings:
~ $ env LC_ALL="English (USA)" loffice
(soffice:373100): Gtk-WARNING **: 16:23:35.578: Locale not supported by C library.
Using the fallback 'C' locale.
Fontconfig warning: ignoring English (USA): not a valid language tag
~ $ env LC_ALL="English" localc
(soffice:373178): Gtk-WARNING **: 16:23:49.593: Locale not supported by C library.
Using the fallback 'C' locale.
Fontconfig warning: ignoring English: not a valid language tag
~ $ env LC_ALL="EN" localc
(soffice:373248): Gtk-WARNING **: 16:24:03.405: Locale not supported by C library.
Using the fallback 'C' locale.
~ $