It would be nice when the output language could bet set via command line to English. That would guarantee that the terminal output is on every system the same regardless of the system language. This behaviour is interesting if you using this output for further processing.
You can achieve this by simply setting the LANGUAGE environment variable (or LANG on Windows).
Inside a script, you could call
export LANGUAGE=en_US.UTF-8once instead of setting the environment variable with everykid3-cliinvocation.Okay that works, although this is a workaround rather.