JLabel refLangLabel = new JLabel();
refLangLabel.setText(TxtManager.getTxt("VIEW.I18NMAINTAINDIALOG.REFLANG"));
add(refLangLabel, cc.xy(3, 3));
refLangChooser = new LanguageChooser();
refLangChooser.setSelectedLang(GlobalValueManager.getApplicationLang());
refLangChooser.setActionCommand("Choose Lang");
refLangChooser.addActionListener(this);
add(refLangChooser, cc.xy(5, 3));
JLabel workLangLabel = new JLabel();
workLangLabel.setText(TxtManager.getTxt("VIEW.I18NMAINTAINDIALOG.WORKLANG"));
add(workLangLabel, cc.xy(3, 5));
workLangChooser = new LanguageChooser();
workLangChooser.setSelectedLang(GlobalValueManager.getApplicationLang());
workLang = workLangChooser.getSelectedLang();
workLangChooser.setActionCommand("Choose Lang");
workLangChooser.addActionListener(this);
add(workLangChooser, cc.xy(5, 5));