Replies: 1 comment 1 reply
-
The default locale and language are only used for new users without any preference. Setting them later on doesn't do much because they're not used anymore. The Docker container only contains the locales for enabled languages. It was a choice between syncing the language with the locale, maintaining two lists, or getting lots of complaints about options with no Docker support. The choice is now the first one. Perhaps this will change in the new layout, where it will be client side. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When running Firefly for the first time, I had
DEFAULT_LOCALE
set toequal
in the.env
file (I'm running through docker container).After trying out Firefly, I've realized that I can't change default (currency) locale from the UI without also changing the default UI locale. So I went back to the
.env
file, changedDEFAULT_LOCALE
(tonb_NO
for example) and leftDEFAULT_LANGUAGE
aten_US
but it appears that this doesn't updatelocale
that is already stored in the database (inpreferences
table).So it appears that the only way to change it, after db was created, is to either re-create db from scratch or go through the trouble of adding phpMyAdmin or similar and editing the preference manually.
Should there be an option in the UI to set the currency locale (
DEFAULT LOCALE
) separately from the UI language?Beta Was this translation helpful? Give feedback.
All reactions