Giter Club home page Giter Club logo

Comments (3)

Blackdread avatar Blackdread commented on May 27, 2024

Just do that and reload your views or set the locale before the launch
Locale.setDefault(Locale.FRENCH);

from springboot-javafx-support.

mtbadi39 avatar mtbadi39 commented on May 27, 2024

duplicate of #67

from springboot-javafx-support.

PolkovnikMedved avatar PolkovnikMedved commented on May 27, 2024

Hello @Blackdread, @mtbadi39 ,

Thank you for your answers.

I've already saw that I can choose the language for the whole application like this:

`@SpringBootApplication
@Import({CoreCommonsAppComponent.class})
public class Application extends AbstractJavaFxApplicationSupport {

    public static void main(String[] args) {
        Locale.setDefault(Locale.GERMAN);
        launch(Application.class, LoginView.class, new SplashScreenGROUPS(), args);
    }
}`

But this way, I compile the jar with an already defined language and the user can't change it.

Second way: I118N class with something like this in the controller:

`    public void changeLanguageToEN() {
        this.changeLanguage(Locale.ENGLISH);
    }
public void changeLanguage(Locale lang) {
        I18N.setLocale(lang);
        nameTableColumn.setText(I18N.get("name"));
        userLanguageLabel.setText(I18N.get("label"));
        reference.setText(I18N.get("reference"));
        category.setText(I18N.get("category"));
        sensitivity.setText(I18N.get("sensitivity"));
        retentionDuration.setText(I18N.get("retentionDuration"));
}
`

But this way I have to change static things (like labels, button labels...) manually (if I just let text="%category" it doesn't work anymore).

Just for your understanding, a horrible workaround to do what I need would be:

`@SpringBootApplication
@Import({CoreCommonsAppComponent.class})
public class Application extends AbstractJavaFxApplicationSupport {

    public static void main(String[] args) {

        JFrame frame = new JFrame();
        frame.setUndecorated(true);
        frame.setTitle("Choose language");
        frame.setSize(400, 400);
        frame.setLocationRelativeTo(null);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        JPanel panel = new JPanel();

        Locale[] possibleLocales = {Locale.FRENCH, Locale.forLanguageTag("nl"), Locale.ENGLISH, Locale.GERMAN};
        JComboBox<Locale> locales = new JComboBox<>(possibleLocales);

        panel.add(locales);

        JButton button = new JButton("Go");
        button.addActionListener(e -> {
            if(locales.getSelectedItem() != null){
                Locale.setDefault((Locale)locales.getSelectedItem());
                frame.dispose();
                launch(Application.class, LoginView.class, new SplashScreenGROUPS(), args);
            }
        });

        panel.add(button);

        frame.setContentPane(panel);
        frame.setVisible(true);
    }
}`

The user is asked for a language and then the application starts with the right one....

@Blackdread How do you reload the view ? Just by calling Application.showView(LoginView.class) ?

from springboot-javafx-support.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.