This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 158135
Collapse All | Expand All

(-)a/ide.ergonomics/src/org/netbeans/modules/ide/ergonomics/fod/Bundle.properties (-2 / +2 lines)
Lines 52-59 Link Here
52
MSG_EnableFailed=Module(s) activation failed.
52
MSG_EnableFailed=Module(s) activation failed.
53
LBL_DownloadInfo=In order to use this functionality, support for {0} must be downloaded & installed.
53
LBL_DownloadInfo=In order to use this functionality, support for {0} must be downloaded & installed.
54
LBL_EnableInfo=In order to use this functionality, support for {0} must be activated.
54
LBL_EnableInfo=In order to use this functionality, support for {0} must be activated.
55
LBL_Download=Download & Install
55
LBL_Download=&Download and Install
56
LBL_Enable=Activate
56
LBL_Enable=&Activate
57
57
58
58
59
# {0} cluster name
59
# {0} cluster name
(-)a/ide.ergonomics/src/org/netbeans/modules/ide/ergonomics/fod/ConfigurationPanel.java (-3 / +2 lines)
Lines 92-100 Link Here
92
            btnMsg = NbBundle.getMessage(ConfigurationPanel.class, "LBL_Download");
92
            btnMsg = NbBundle.getMessage(ConfigurationPanel.class, "LBL_Download");
93
        }
93
        }
94
94
95
        infoLabel.setText(lblMsg);
95
        org.openide.awt.Mnemonics.setLocalizedText(infoLabel, lblMsg);
96
        downloadButton.setText(btnMsg);
96
        org.openide.awt.Mnemonics.setLocalizedText(downloadButton, btnMsg);
97
        downloadButton.setMnemonic(btnMsg.charAt(0));
98
        setError(" "); // NOI18N
97
        setError(" "); // NOI18N
99
    }
98
    }
100
99

Return to bug 158135