-
Bug
-
Resolution: Fixed
-
P2
-
1.4.1, 1.4.1_02
-
mantis
-
generic
-
generic
-
Verified
In ControlPanel Help dialog, the mnemonic for "Close" button is being set to
the FIRST character of the resource string below. This is wrong i18n because
the character doesn't necessarily appear at the beginning of the l10n resource
string.
ext/plugin/java/src/sun/plugin/panel/ActivatorPanel.java:
line 331-
JButton close = new JButton(mh.getMessage("help_close"));
close.setMnemonic(close.getText().charAt(0));
buttonPanel.add(close);
The mnemonic should be extracted into the l10n resource files ControlPanel_*.java by the same
way as the other buttons below.
apply.setMnemonic(mh.getAcceleratorKey("apply"));
the FIRST character of the resource string below. This is wrong i18n because
the character doesn't necessarily appear at the beginning of the l10n resource
string.
ext/plugin/java/src/sun/plugin/panel/ActivatorPanel.java:
line 331-
JButton close = new JButton(mh.getMessage("help_close"));
close.setMnemonic(close.getText().charAt(0));
buttonPanel.add(close);
The mnemonic should be extracted into the l10n resource files ControlPanel_*.java by the same
way as the other buttons below.
apply.setMnemonic(mh.getAcceleratorKey("apply"));
- relates to
-
JDK-4664265 Euro: Wrong localization for mnemonics of Swing components.
-
- Resolved
-
-
JDK-4763608 Control Panel need labels for accerlerator keys - Asian locales
-
- Closed
-
-
JDK-4888378 141_xx: Close button in ControlPanel Help is not i18n'ed properly
-
- Closed
-