You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment the default environment locale is not used/set properly which causes every user to be defaulted to en_US. Every new user will experience the app in English with USD selected.
Steps to reproduce:
Have system settings set to e.g. de_AT
Start a clean Bisq installation
Expected Behavior:
On first startup of Bisq I expect the app to be in German and EUR selected as currency.
Actual Behavior:
The app starts in English and USD is selected.
The text was updated successfully, but these errors were encountered:
I don't remember what the problems was but there have been issues when using the OS default locale. Thats why the following code is executed at the very start.
public class BisqAppMain extends BisqExecutable {
static {
// Need to set default locale initially otherwise we get problems at non-english OS
Locale.setDefault(new Locale("en", Locale.getDefault().getCountry()));
Should be fixed and investigated what was the issues if that code is not in place (just try it out).
At the moment the default environment locale is not used/set properly which causes every user to be defaulted to
en_US
. Every new user will experience the app in English with USD selected.Steps to reproduce:
de_AT
Expected Behavior:
On first startup of Bisq I expect the app to be in German and EUR selected as currency.
Actual Behavior:
The app starts in English and USD is selected.
The text was updated successfully, but these errors were encountered: