JDK-7174970 : NLS: [ccjk] Extra mnemonic keys at standard filechooserdialog (open and save) in metal L&F
  • Type: Bug
  • Component: client-libs
  • Sub-Component: javax.swing
  • Affected Version: 7u6
  • Priority: P4
  • Status: Closed
  • Resolution: Fixed
  • OS: windows
  • CPU: x86
  • Submitted: 2012-06-07
  • Updated: 2015-05-20
  • Resolved: 2012-07-19
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 7 JDK 8
7u6Fixed 8 b45Fixed
Related Reports
Relates :  
Relates :  
Description
Java 7u6 b12
windows xp, 7

locales: all the four asian locales

metal L&F

Open standard file chooser dialog in java (open and save in metal L&F). There are extra mnemonic keys at the button label. In English, there is no mnemonic key. Attached are the screen shots.

In the internal build of message drop 1 in 7u6. The mnemonic key on cancel button is removed. But for open and save button, there is still the mnemonic key. 

http://bej301328.cn.oracle.com/gatejava/test/jdk1/results/7u6/b00/jdk-x86-offline/win7-zh_TW/1339019750.jpg
http://bej301328.cn.oracle.com/gatejava/test/jdk1/results/7u6/b00/jdk-x86-offline/win7-zh_CN/1339018227.jpg
http://bej301328.cn.oracle.com/gatejava/test/jdk1/results/7u6/b00/jdk-x86-offline/win7-ko/1339012873.jpg
http://bej301328.cn.oracle.com/gatejava/test/jdk1/results/7u6/b00/jdk-x86-offline/win7-ja/1339010398.jpg

Above are for metal L&F.

Comments
EVALUATION changeset: http://hg.openjdk.java.net/jdk8/awt/jdk/rev/4b470e9017da
18-06-2012

EVALUATION The fix consists of the 2 parts: 1) Remove mnemonics from the FileChooser.cancelButton.textAndMnemonic property for locales different from the default in Basic resources. 2) Add FileChooser.saveButton.textAndMnemonic and FileChooser.openButton.textAndMnemonic properties without mnemonics to the all Metal resources. So the Metal L&F will not have the mnemonics on the JFileChooser open and save buttons. The JFileChooser cancel button does not have a mnemonic in the default Basic resource. To be consistent the cancel button mnemonic is removed for the others Basic locales as well.
18-06-2012

EVALUATION According to the issue 5081721 the Open, Save and Cancel buttons should not have mnemonics for the FileChooser. However they existed in the *.properties files: ------------------------------------------ FileChooser.cancelButtonText=\u53D6\u6D88 FileChooser.cancelButtonMnemonic=67 FileChooser.saveButtonText=\u4FDD\u5B58 FileChooser.saveButtonMnemonic=83 FileChooser.openButtonText=\u6253\u5F00 FileChooser.openButtonMnemonic=79 ------------------------------------------ Because of this the convertiong tool adds the mnemonics to the end of the unified text and mnemonic properties: ------------------------------------------ FileChooser.cancelButton.textAndMnemonic=\u53D6\u6D88(&C) FileChooser.saveButton.textAndMnemonic=\u4FDD\u5B58(&S) FileChooser.openButton.textAndMnemonic=\u6253\u5F00(&O) ------------------------------------------ The fix removes the unnecessary mnemonics for the FileChooser Open, Save and Cancel buttons.
09-06-2012