Index: src/lib/com/izforge/izpack/installer/GUIInstaller.java =================================================================== --- src/lib/com/izforge/izpack/installer/GUIInstaller.java (revision 2109) +++ src/lib/com/izforge/izpack/installer/GUIInstaller.java (working copy) @@ -586,7 +586,7 @@ // We build the GUI addWindowListener(new WindowHandler()); JPanel contentPane = (JPanel) getContentPane(); - setTitle("Language selection"); + setTitle("Language Selection"); GridBagLayout layout = new GridBagLayout(); contentPane.setLayout(layout); GridBagConstraints gbConstraints = new GridBagConstraints(); @@ -625,7 +625,7 @@ contentPane.add(comboBox); gbConstraints.insets = new Insets(15, 5, 15, 5); - JButton okButton = new JButton("Ok"); + JButton okButton = new JButton("OK"); okButton.addActionListener(this); gbConstraints.fill = GridBagConstraints.NONE; gbConstraints.gridy = 4;