1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-02-19 13:54:23 +01:00

Case correction in preferences dialog.

This commit is contained in:
David A. Mellis 2012-04-08 17:33:52 -04:00
parent ea4693026e
commit 49be972ca4

View File

@ -318,7 +318,7 @@ public class Preferences {
// Preferred language: [ ] (requires restart of Arduino)
Container box = Box.createHorizontalBox();
label = new JLabel(_("Editor Language: "));
label = new JLabel(_("Editor language: "));
box.add(label);
comboLanguage = new JComboBox(languages);
comboLanguage.setSelectedIndex((Arrays.asList(languagesISO)).indexOf(Preferences.get("editor.languages.current")));