2013-10-18, 21:48
(2013-10-18, 21:33)darck Wrote: and the command "LANG="en" MediaElch" starts it in German
$ locale
LANG=pl_PL.UTF-8
LANGUAGE=
LC_CTYPE="pl_PL.UTF-8"
LC_NUMERIC=de_DE.UTF-8
LC_TIME=de_DE.UTF-8
LC_COLLATE="pl_PL.UTF-8"
LC_MONETARY=de_DE.UTF-8
LC_MESSAGES="pl_PL.UTF-8"
LC_PAPER=de_DE.UTF-8
LC_NAME=de_DE.UTF-8
LC_ADDRESS=de_DE.UTF-8
LC_TELEPHONE=de_DE.UTF-8
LC_MEASUREMENT=de_DE.UTF-8
LC_IDENTIFICATION=de_DE.UTF-8
LC_ALL=
I guess that app uses LC_TIME while it should use LANG ?
no export LC_TIME="pl_PL.UTF8" didn't change anything
Qt tries to get around some problems when converting data and checks various settings (LC_TIME, LC_NUMERIC) and selects the one which would not cause problems. The problem in your case should be LC_NUMERIC. Either change try to run MediaElch with "LC_NUMERIC=pl_PL.UTF-8 MediaElch" or "LC_ALL=pl_PL.UTF-8 MediaElch".
Oh, and there's nothing I can do about it, MediaElch just relies on Qt.