Index: db/src/org/netbeans/modules/db/explorer/dataview/DataViewWindow.java =================================================================== RCS file: /cvs/db/src/org/netbeans/modules/db/explorer/dataview/DataViewWindow.java,v retrieving revision 1.26 diff -u -r1.26 DataViewWindow.java --- db/src/org/netbeans/modules/db/explorer/dataview/DataViewWindow.java 6 Feb 2003 15:49:52 -0000 1.26 +++ db/src/org/netbeans/modules/db/explorer/dataview/DataViewWindow.java 24 Feb 2003 10:13:20 -0000 @@ -129,9 +129,10 @@ subcon.insets = new java.awt.Insets (0, 0, 5, 0); subcon.fill = GridBagConstraints.HORIZONTAL; subcon.anchor = GridBagConstraints.SOUTH; - JButton fetchbtn = new JButton(bundle.getString("ExecuteButton")); //NOI18N + JButton fetchbtn = new JButton(); + org.openide.awt.Mnemonics.setLocalizedText(fetchbtn, + bundle.getString("ExecuteButton")); //NOI18N fetchbtn.setToolTipText(bundle.getString("ACS_ExecuteButtonA11yDesc")); - fetchbtn.setMnemonic(bundle.getString("ExecuteButton_Mnemonic").charAt(0)); sublayout.setConstraints(fetchbtn, subcon); subpane.add(fetchbtn); fetchbtn.addActionListener(new ActionListener() { Index: db/src/org/netbeans/modules/db/explorer/dlg/AddDriverDialog.java =================================================================== RCS file: /cvs/db/src/org/netbeans/modules/db/explorer/dlg/AddDriverDialog.java,v retrieving revision 1.15 diff -u -r1.15 AddDriverDialog.java --- db/src/org/netbeans/modules/db/explorer/dlg/AddDriverDialog.java 6 Feb 2003 15:49:53 -0000 1.15 +++ db/src/org/netbeans/modules/db/explorer/dlg/AddDriverDialog.java 24 Feb 2003 10:13:36 -0000 @@ -43,8 +43,9 @@ // Driver name - label = new JLabel(bundle.getString("AddDriverDriverName")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("AddDriverDriverName_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("AddDriverDriverName")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_AddDriverDriverNameA11yDesc")); con.anchor = GridBagConstraints.WEST; con.insets = new java.awt.Insets (2, 2, 2, 2); @@ -67,8 +68,9 @@ // Driver label and field - label = new JLabel(bundle.getString("AddDriverDriverURL")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("AddDriverDriverURL_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("AddDriverDriverURL")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_AddDriverDriverURLA11yDesc")); con.anchor = GridBagConstraints.WEST; con.insets = new java.awt.Insets (2, 2, 2, 2); @@ -91,8 +93,9 @@ // Database prefix title and field - label = new JLabel(bundle.getString("AddDriverDatabasePrefix")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("AddDriverDatabasePrefix_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("AddDriverDatabasePrefix")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_AddDriverDatabasePrefixA11yDesc")); con.anchor = GridBagConstraints.WEST; con.insets = new java.awt.Insets (2, 2, 2, 2); Index: db/src/org/netbeans/modules/db/explorer/dlg/AddIndexDialog.java =================================================================== RCS file: /cvs/db/src/org/netbeans/modules/db/explorer/dlg/AddIndexDialog.java,v retrieving revision 1.17 diff -u -r1.17 AddIndexDialog.java --- db/src/org/netbeans/modules/db/explorer/dlg/AddIndexDialog.java 6 Feb 2003 15:49:54 -0000 1.17 +++ db/src/org/netbeans/modules/db/explorer/dlg/AddIndexDialog.java 24 Feb 2003 10:13:36 -0000 @@ -49,8 +49,9 @@ // Index name - JLabel label = new JLabel(bundle.getString("AddIndexName")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("AddIndexName_Mnemonic").charAt(0)); + JLabel label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("AddIndexName")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_AddIndexNameA11yDesc")); con.anchor = GridBagConstraints.WEST; con.insets = new java.awt.Insets (2, 2, 2, 2); @@ -90,8 +91,9 @@ con.gridx = 1; con.gridy = 1; con.insets = new java.awt.Insets (2, 2, 2, 2); - cbx_uq = new JCheckBox(bundle.getString("Unique")); - cbx_uq.setMnemonic(bundle.getString("Unique_Mnemonic").charAt(0)); + cbx_uq = new JCheckBox(); + org.openide.awt.Mnemonics.setLocalizedText(cbx_uq, + bundle.getString("Unique")); cbx_uq.setToolTipText(bundle.getString("ACS_UniqueA11yDesc")); label_uq.setLabelFor(cbx_uq); layout.setConstraints(cbx_uq, con); Index: db/src/org/netbeans/modules/db/explorer/dlg/AddTableColumnDialog.java =================================================================== RCS file: /cvs/db/src/org/netbeans/modules/db/explorer/dlg/AddTableColumnDialog.java,v retrieving revision 1.30 diff -u -r1.30 AddTableColumnDialog.java --- db/src/org/netbeans/modules/db/explorer/dlg/AddTableColumnDialog.java 6 Feb 2003 15:49:54 -0000 1.30 +++ db/src/org/netbeans/modules/db/explorer/dlg/AddTableColumnDialog.java 24 Feb 2003 10:13:53 -0000 @@ -69,8 +69,9 @@ // Column name - label = new JLabel(bundle.getString("AddTableColumnName")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("AddTableColumnName_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("AddTableColumnName")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_AddTableColumnNameA11yDesc")); con = new GridBagConstraints (); con.gridx = 0; @@ -115,8 +116,9 @@ item.setProperty(ColumnItem.TYPE, ttab.elementAt(0)); dmodel.addRow(item); - label = new JLabel(bundle.getString("AddTableColumnType")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("AddTableColumnType_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("AddTableColumnType")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_AddTableColumnTypeA11yDesc")); con = new GridBagConstraints (); con.gridx = 0; @@ -148,8 +150,9 @@ // Column size - label = new JLabel(bundle.getString("AddTableColumnSize")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("AddTableColumnSize_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("AddTableColumnSize")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_AddTableColumnSizeA11yDesc")); con = new GridBagConstraints (); con.gridx = 0; @@ -181,8 +184,9 @@ // Column scale - label = new JLabel(bundle.getString("AddTableColumnScale")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("AddTableColumnScale_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("AddTableColumnScale")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_AddTableColumnScaleA11yDesc")); con = new GridBagConstraints (); con.gridx = 2; @@ -214,8 +218,9 @@ // Column default value - label = new JLabel(bundle.getString("AddTableColumnDefault")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("AddTableColumnDefault_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("AddTableColumnDefault")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_AddTableColumnDefaultA11yDesc")); con = new GridBagConstraints (); con.gridx = 0; @@ -264,10 +269,11 @@ con.insets = new java.awt.Insets (0, 0, 0, 0); con.weightx = 0.0; con.weighty = 0.0; - pkcheckbox = new JCheckBox(" "+bundle.getString("AddTableColumnConstraintPKTitle")); //NOI18N + pkcheckbox = new JCheckBox(); + org.openide.awt.Mnemonics.setLocalizedText(pkcheckbox, + " "+bundle.getString("AddTableColumnConstraintPKTitle")); //NOI18N pkcheckbox.setName(ColumnItem.PRIMARY_KEY); pkcheckbox.addActionListener(cbxlistener); - pkcheckbox.setMnemonic(bundle.getString("AddTableColumnConstraintPKTitle_Mnemonic").charAt(0)); pkcheckbox.setToolTipText(bundle.getString("ACS_AddTableColumnConstraintPKTitleA11yDesc")); subpane.add(pkcheckbox, con); @@ -280,10 +286,11 @@ con.insets = new java.awt.Insets (0, 12, 0, 0); con.weightx = 0.0; con.weighty = 0.0; - uniquecheckbox = new JCheckBox(" "+bundle.getString("AddTableColumnConstraintUniqueTitle")); //NOI18N + uniquecheckbox = new JCheckBox(); + org.openide.awt.Mnemonics.setLocalizedText(uniquecheckbox, + " "+bundle.getString("AddTableColumnConstraintUniqueTitle")); //NOI18N uniquecheckbox.setName(ColumnItem.UNIQUE); uniquecheckbox.addActionListener(cbxlistener); - uniquecheckbox.setMnemonic(bundle.getString("AddTableColumnConstraintUniqueTitle_Mnemonic").charAt(0)); uniquecheckbox.setToolTipText(bundle.getString("ACS_AddTableColumnConstraintUniqueTitleA11yDesc")); subpane.add(uniquecheckbox, con); @@ -296,10 +303,11 @@ con.insets = new java.awt.Insets (0, 12, 0, 0); con.weightx = 0.0; con.weighty = 0.0; - nullcheckbox = new JCheckBox(" "+bundle.getString("AddTableColumnConstraintNullTitle")); //NOI18N + nullcheckbox = new JCheckBox(); + org.openide.awt.Mnemonics.setLocalizedText(nullcheckbox, + " "+bundle.getString("AddTableColumnConstraintNullTitle")); //NOI18N nullcheckbox.setName(ColumnItem.NULLABLE); nullcheckbox.addActionListener(cbxlistener); - nullcheckbox.setMnemonic(bundle.getString("AddTableColumnConstraintNullTitle_Mnemonic").charAt(0)); nullcheckbox.setToolTipText(bundle.getString("ACS_AddTableColumnConstraintNullTitleA11yDesc")); subpane.add(nullcheckbox, con); @@ -346,10 +354,11 @@ con.insets = new java.awt.Insets (12, 0, 0, 0); con.weightx = 0.0; con.weighty = 0.0; - ixcheckbox = new JCheckBox(" "+bundle.getString("AddTableColumnIndexName")); //NOI18N + ixcheckbox = new JCheckBox(); + org.openide.awt.Mnemonics.setLocalizedText(ixcheckbox, + " "+bundle.getString("AddTableColumnIndexName")); //NOI18N ixcheckbox.setName(ColumnItem.INDEX); ixcheckbox.addActionListener(cbxlistener); - ixcheckbox.setMnemonic(bundle.getString("AddTableColumnIndexName_Mnemonic").charAt(0)); ixcheckbox.setToolTipText(bundle.getString("ACS_AddTableColumnIndexNameA11yDesc")); pane.add(ixcheckbox, con); @@ -412,10 +421,11 @@ con.insets = new java.awt.Insets (12, 0, 0, 0); con.weightx = 0.0; con.weighty = 0.0; - checkcheckbox = new JCheckBox(" "+bundle.getString("AddTableColumnConstraintCheckTitle")); //NOI18N + checkcheckbox = new JCheckBox(); + org.openide.awt.Mnemonics.setLocalizedText(checkcheckbox, + " "+bundle.getString("AddTableColumnConstraintCheckTitle")); //NOI18N checkcheckbox.setName(ColumnItem.CHECK); checkcheckbox.addActionListener(cbxlistener); - checkcheckbox.setMnemonic(bundle.getString("AddTableColumnCheckTitle_Mnemonic").charAt(0)); checkcheckbox.setToolTipText(bundle.getString("ACS_AddTableColumnCheckTitleA11yDesc")); pane.add(checkcheckbox, con); Index: db/src/org/netbeans/modules/db/explorer/dlg/AddViewDialog.java =================================================================== RCS file: /cvs/db/src/org/netbeans/modules/db/explorer/dlg/AddViewDialog.java,v retrieving revision 1.14 diff -u -r1.14 AddViewDialog.java --- db/src/org/netbeans/modules/db/explorer/dlg/AddViewDialog.java 6 Feb 2003 15:49:55 -0000 1.14 +++ db/src/org/netbeans/modules/db/explorer/dlg/AddViewDialog.java 24 Feb 2003 10:14:03 -0000 @@ -49,8 +49,9 @@ // Index name - JLabel label = new JLabel(bundle.getString("AddViewName")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("AddViewName_Mnemonic").charAt(0)); + JLabel label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("AddViewName")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_AddViewNameA11yDesc")); con.anchor = GridBagConstraints.WEST; con.insets = new java.awt.Insets (2, 2, 2, 2); @@ -75,8 +76,9 @@ // Items list title - label = new JLabel(bundle.getString("AddViewLabel")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("AddViewLabel_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("AddViewLabel")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_AddViewLabelA11yDesc")); con.weightx = 0.0; con.anchor = GridBagConstraints.WEST; Index: db/src/org/netbeans/modules/db/explorer/dlg/ConnectAsPanel.java =================================================================== RCS file: /cvs/db/src/org/netbeans/modules/db/explorer/dlg/ConnectAsPanel.java,v retrieving revision 1.4 diff -u -r1.4 ConnectAsPanel.java --- db/src/org/netbeans/modules/db/explorer/dlg/ConnectAsPanel.java 6 Feb 2003 15:49:56 -0000 1.4 +++ db/src/org/netbeans/modules/db/explorer/dlg/ConnectAsPanel.java 24 Feb 2003 10:14:07 -0000 @@ -40,8 +40,9 @@ // Username field - label = new JLabel(bundle.getString("ConnectDialogUserName")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("ConnectDialogUserName_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("ConnectDialogUserName")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_ConnectDialogUserNameA11yDesc")); con.anchor = GridBagConstraints.WEST; con.weightx = 0.0; @@ -67,8 +68,9 @@ // Password field - label = new JLabel(bundle.getString("ConnectDialogPassword")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("ConnectDialogPassword_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("ConnectDialogPassword")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_ConnectDialogPasswordA11yDesc")); con.anchor = GridBagConstraints.WEST; con.weightx = 0.0; @@ -93,8 +95,9 @@ // Database system choice - label = new JLabel(bundle.getString("Product")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("Product_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("Product")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_ProductA11yDesc")); con.anchor = GridBagConstraints.WEST; con.weightx = 0.0; Index: db/src/org/netbeans/modules/db/explorer/dlg/ConnectPanel.java =================================================================== RCS file: /cvs/db/src/org/netbeans/modules/db/explorer/dlg/ConnectPanel.java,v retrieving revision 1.5 diff -u -r1.5 ConnectPanel.java --- db/src/org/netbeans/modules/db/explorer/dlg/ConnectPanel.java 6 Feb 2003 15:49:56 -0000 1.5 +++ db/src/org/netbeans/modules/db/explorer/dlg/ConnectPanel.java 24 Feb 2003 10:14:08 -0000 @@ -38,8 +38,9 @@ // Username field - label = new JLabel(bundle.getString("ConnectDialogUserName")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("ConnectDialogUserName_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("ConnectDialogUserName")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_ConnectDialogUserNameA11yDesc")); con.anchor = GridBagConstraints.WEST; con.weightx = 0.0; @@ -65,8 +66,9 @@ // Password field - label = new JLabel(bundle.getString("ConnectDialogPassword")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("ConnectDialogPassword_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("ConnectDialogPassword")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_ConnectDialogPasswordA11yDesc")); con.anchor = GridBagConstraints.WEST; con.weightx = 0.0; @@ -91,8 +93,9 @@ // Remember password checkbox - rememberbox = new JCheckBox(bundle.getString("ConnectDialogRememberPassword")); //NOI18N - rememberbox.setMnemonic(bundle.getString("ConnectDialogRememberPassword_Mnemonic").charAt(0)); + rememberbox = new JCheckBox(); + org.openide.awt.Mnemonics.setLocalizedText(rememberbox, + bundle.getString("ConnectDialogRememberPassword")); //NOI18N rememberbox.setToolTipText(bundle.getString("ACS_ConnectDialogRememberPasswordA11yDesc")); con.anchor = GridBagConstraints.WEST; con.weightx = 0.0; Index: db/src/org/netbeans/modules/db/explorer/dlg/CreateTableDialog.java =================================================================== RCS file: /cvs/db/src/org/netbeans/modules/db/explorer/dlg/CreateTableDialog.java,v retrieving revision 1.26 diff -u -r1.26 CreateTableDialog.java --- db/src/org/netbeans/modules/db/explorer/dlg/CreateTableDialog.java 6 Feb 2003 15:49:56 -0000 1.26 +++ db/src/org/netbeans/modules/db/explorer/dlg/CreateTableDialog.java 24 Feb 2003 10:14:13 -0000 @@ -87,8 +87,9 @@ // Table name field - label = new JLabel(bundle.getString("CreateTableName")); // NOI18N - label.setDisplayedMnemonic(bundle.getString("CreateTableName_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("CreateTableName")); // NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_CreateTableNameA11yDesc")); constr.anchor = GridBagConstraints.WEST; constr.weightx = 0.0; @@ -115,8 +116,9 @@ // Table owner combo - label = new JLabel(bundle.getString("CreateTableOwner")); // NOI18N - label.setDisplayedMnemonic(bundle.getString("CreateTableOwner_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("CreateTableOwner")); // NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_CreateTableOwnerA11yDesc")); constr.anchor = GridBagConstraints.WEST; constr.weightx = 0.0; @@ -204,8 +206,9 @@ // Button add column - addbtn = new JButton(bundle.getString("CreateTableAddButtonTitle")); // NOI18N - addbtn.setMnemonic(bundle.getString("CreateTableAddButtonTitle_Mnemonic").charAt(0)); + addbtn = new JButton(); + org.openide.awt.Mnemonics.setLocalizedText(addbtn, + bundle.getString("CreateTableAddButtonTitle")); // NOI18N addbtn.setToolTipText(bundle.getString("ACS_CreateTableAddButtonTitleA11yDesc")); btnpane.add(addbtn); addbtn.addActionListener(new ActionListener() { @@ -219,8 +222,9 @@ // Button delete column - delbtn = new JButton(bundle.getString("CreateTableRemoveButtonTitle")); // NOI18N - delbtn.setMnemonic(bundle.getString("CreateTableRemoveButtonTitle_Mnemonic").charAt(0)); + delbtn = new JButton(); + org.openide.awt.Mnemonics.setLocalizedText(delbtn, + bundle.getString("CreateTableRemoveButtonTitle")); // NOI18N delbtn.setToolTipText(bundle.getString("ACS_CreateTableRemoveButtonTitleA11yDesc")); btnpane.add(delbtn); delbtn.addActionListener(new ActionListener() { Index: db/src/org/netbeans/modules/db/explorer/dlg/LabeledTextFieldDialog.java =================================================================== RCS file: /cvs/db/src/org/netbeans/modules/db/explorer/dlg/LabeledTextFieldDialog.java,v retrieving revision 1.11 diff -u -r1.11 LabeledTextFieldDialog.java --- db/src/org/netbeans/modules/db/explorer/dlg/LabeledTextFieldDialog.java 6 Feb 2003 15:49:57 -0000 1.11 +++ db/src/org/netbeans/modules/db/explorer/dlg/LabeledTextFieldDialog.java 24 Feb 2003 10:14:17 -0000 @@ -53,9 +53,9 @@ // Title - label = new JLabel(lab); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, lab); label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_RecreateTableNewNameA11yDesc")); // NOI18N - label.setDisplayedMnemonic(bundle.getString("RecreateTableNewName_Mnemonic").charAt(0)); // NOI18N con.anchor = GridBagConstraints.WEST; con.insets = new java.awt.Insets (2, 2, 2, 2); con.gridx = 0; @@ -114,8 +114,9 @@ pane.add(spane); // edit button - edButton = new JButton(bundle.getString("EditCommand")); // NOI18N - edButton.setMnemonic(bundle.getString("EditCommand_Mnemonic").charAt(0)); // NOI18N + edButton = new JButton(); + org.openide.awt.Mnemonics.setLocalizedText(edButton, + bundle.getString("EditCommand")); // NOI18N edButton.setToolTipText(bundle.getString("ACS_EditCommandA11yDesc")); // NOI18N con.fill = GridBagConstraints.WEST; con.weighty = 0.0; @@ -129,8 +130,8 @@ public void actionPerformed(ActionEvent event) { if(edButton.getText().startsWith(bundle.getString("EditCommand"))) { // NOI18N // set to edit - edButton.setText(bundle.getString("ReloadCommand")); // NOI18N - edButton.setMnemonic(bundle.getString("ReloadCommand_Mnemonic").charAt(0)); // NOI18N + org.openide.awt.Mnemonics.setLocalizedText(edButton, + bundle.getString("ReloadCommand")); // NOI18N edButton.setToolTipText(bundle.getString("ACS_ReloadCommandA11yDesc")); // NOI18N notesarea.setEditable( true ); notesarea.setEnabled(true); @@ -140,8 +141,8 @@ field.setBackground(label.getBackground()); // grey } else { // reload script from file - edButton.setText(bundle.getString("EditCommand")); // NOI18N - edButton.setMnemonic(bundle.getString("EditCommand_Mnemonic").charAt(0)); // NOI18N + org.openide.awt.Mnemonics.setLocalizedText(edButton, + bundle.getString("EditCommand")); // NOI18N edButton.setToolTipText(bundle.getString("ACS_EditCommandA11yDesc")); // NOI18N notesarea.setText(original_notes); notesarea.setEditable( false ); Index: db/src/org/netbeans/modules/db/explorer/dlg/NewConnectionPanel.java =================================================================== RCS file: /cvs/db/src/org/netbeans/modules/db/explorer/dlg/NewConnectionPanel.java,v retrieving revision 1.4 diff -u -r1.4 NewConnectionPanel.java --- db/src/org/netbeans/modules/db/explorer/dlg/NewConnectionPanel.java 6 Feb 2003 15:49:57 -0000 1.4 +++ db/src/org/netbeans/modules/db/explorer/dlg/NewConnectionPanel.java 24 Feb 2003 10:14:24 -0000 @@ -50,8 +50,9 @@ // Driver name field - label = new JLabel(bundle.getString("NewConnectionDriverName")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("NewConnectionDriverName_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("NewConnectionDriverName")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_NewConnectionDriverNameA11yDesc")); constr.anchor = GridBagConstraints.WEST; constr.insets = new java.awt.Insets (2, 2, 2, 2); @@ -92,8 +93,9 @@ // Driver class field - label = new JLabel(bundle.getString("NewConnectionDriverClass")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("NewConnectionDriverClass_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("NewConnectionDriverClass")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_NewConnectionDriverClassA11yDesc")); constr.anchor = GridBagConstraints.WEST; constr.weightx = 0.0; @@ -120,8 +122,9 @@ // Database field - label = new JLabel(bundle.getString("NewConnectionDatabaseURL")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("NewConnectionDatabaseURL_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("NewConnectionDatabaseURL")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_NewConnectionDatabaseURLA11yDesc")); constr.anchor = GridBagConstraints.WEST; constr.weightx = 0.0; @@ -161,8 +164,9 @@ // Username field - label = new JLabel(bundle.getString("NewConnectionUserName")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("NewConnectionUserName_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("NewConnectionUserName")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_NewConnectionUserNameA11yDesc")); constr.anchor = GridBagConstraints.WEST; constr.weightx = 0.0; @@ -188,8 +192,9 @@ // Password field - label = new JLabel(bundle.getString("NewConnectionPassword")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("NewConnectionPassword_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("NewConnectionPassword")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_NewConnectionPasswordA11yDesc")); constr.anchor = GridBagConstraints.WEST; constr.weightx = 0.0; @@ -214,8 +219,9 @@ // Remember password checkbox - rememberbox = new JCheckBox(bundle.getString("NewConnectionRememberPassword")); //NOI18N - rememberbox.setMnemonic(bundle.getString("NewConnectionRememberPassword_Mnemonic").charAt(0)); + rememberbox = new JCheckBox(); + org.openide.awt.Mnemonics.setLocalizedText(rememberbox, + bundle.getString("NewConnectionRememberPassword")); //NOI18N rememberbox.setToolTipText(bundle.getString("ACS_NewConnectionRememberPasswordA11yDesc")); constr.anchor = GridBagConstraints.WEST; constr.weightx = 0.0; Index: db/src/org/netbeans/modules/db/explorer/dlg/SchemaPanel.java =================================================================== RCS file: /cvs/db/src/org/netbeans/modules/db/explorer/dlg/SchemaPanel.java,v retrieving revision 1.6 diff -u -r1.6 SchemaPanel.java --- db/src/org/netbeans/modules/db/explorer/dlg/SchemaPanel.java 6 Feb 2003 15:49:58 -0000 1.6 +++ db/src/org/netbeans/modules/db/explorer/dlg/SchemaPanel.java 24 Feb 2003 10:14:26 -0000 @@ -39,8 +39,9 @@ setLayout (layout); ResourceBundle bundle = NbBundle.getBundle("org.netbeans.modules.db.resources.Bundle"); //NOI18N - label = new JLabel(bundle.getString("SchemaDialogText")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("SchemaDialogText_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("SchemaDialogText")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_SchemaDialogTextA11yDesc")); con.gridy = 1; con.insets = new Insets(12, 12, 0, 11); Index: db/src/org/netbeans/modules/db/explorer/dlg/TestDriverDialog.java =================================================================== RCS file: /cvs/db/src/org/netbeans/modules/db/explorer/dlg/TestDriverDialog.java,v retrieving revision 1.11 diff -u -r1.11 TestDriverDialog.java --- db/src/org/netbeans/modules/db/explorer/dlg/TestDriverDialog.java 6 Feb 2003 15:49:58 -0000 1.11 +++ db/src/org/netbeans/modules/db/explorer/dlg/TestDriverDialog.java 24 Feb 2003 10:14:29 -0000 @@ -77,8 +77,9 @@ // Database field - label = new JLabel(bundle.getString("NewConnectionDatabaseURL")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("NewConnectionDatabaseURL_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("NewConnectionDatabaseURL")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_NewConnectionDatabaseURLA11yDesc")); constr.anchor = GridBagConstraints.WEST; constr.weightx = 0.0; @@ -104,8 +105,9 @@ // Username field - label = new JLabel(bundle.getString("NewConnectionUserName")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("NewConnectionUserName_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("NewConnectionUserName")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_NewConnectionUserNameA11yDesc")); constr.anchor = GridBagConstraints.WEST; constr.weightx = 0.0; @@ -131,8 +133,9 @@ // Password field - label = new JLabel(bundle.getString("NewConnectionPassword")); //NOI18N - label.setDisplayedMnemonic(bundle.getString("NewConnectionPassword_Mnemonic").charAt(0)); + label = new JLabel(); + org.openide.awt.Mnemonics.setLocalizedText(label, + bundle.getString("NewConnectionPassword")); //NOI18N label.getAccessibleContext().setAccessibleDescription(bundle.getString("ACS_NewConnectionPasswordA11yDesc")); constr.anchor = GridBagConstraints.WEST; constr.weightx = 0.0; Index: db/src/org/netbeans/modules/db/explorer/dlg/UnsupportedDatabaseDialog.form =================================================================== RCS file: /cvs/db/src/org/netbeans/modules/db/explorer/dlg/UnsupportedDatabaseDialog.form,v retrieving revision 1.5 diff -u -r1.5 UnsupportedDatabaseDialog.form --- db/src/org/netbeans/modules/db/explorer/dlg/UnsupportedDatabaseDialog.form 26 Oct 2001 07:35:53 -0000 1.5 +++ db/src/org/netbeans/modules/db/explorer/dlg/UnsupportedDatabaseDialog.form 24 Feb 2003 10:14:32 -0000 @@ -8,18 +8,14 @@ - - - - - - - + + + @@ -39,15 +35,15 @@ - - + + @@ -74,15 +70,15 @@ - - + + @@ -112,15 +108,15 @@ - - + + @@ -161,7 +157,6 @@ - @@ -172,7 +167,6 @@ - Index: db/src/org/netbeans/modules/db/explorer/dlg/UnsupportedDatabaseDialog.java =================================================================== RCS file: /cvs/db/src/org/netbeans/modules/db/explorer/dlg/UnsupportedDatabaseDialog.java,v retrieving revision 1.10 diff -u -r1.10 UnsupportedDatabaseDialog.java --- db/src/org/netbeans/modules/db/explorer/dlg/UnsupportedDatabaseDialog.java 26 Oct 2001 07:35:53 -0000 1.10 +++ db/src/org/netbeans/modules/db/explorer/dlg/UnsupportedDatabaseDialog.java 24 Feb 2003 10:14:36 -0000 @@ -47,17 +47,13 @@ { jTextArea1.getAccessibleContext().setAccessibleName(NbBundle.getBundle("org.netbeans.modules.db.resources.Bundle").getString("ACS_UnsupportedDialogDescriptionA11yName")); jTextArea1.getAccessibleContext().setAccessibleDescription(NbBundle.getBundle("org.netbeans.modules.db.resources.Bundle").getString("ACS_UnsupportedDialogDescriptionA11yDesc")); - genericButton.setMnemonic(NbBundle.getBundle("org.netbeans.modules.db.resources.Bundle").getString("UnsupportedDialogGenericButton_Mnemonic").charAt(0)); genericButton.setToolTipText(NbBundle.getBundle("org.netbeans.modules.db.resources.Bundle").getString("ACS_UnsupportedDialogGenericButtonA11yDesc")); jTextArea2.getAccessibleContext().setAccessibleName(NbBundle.getBundle("org.netbeans.modules.db.resources.Bundle").getString("ACS_UnsupportedDialogGenericTextA11yName")); jTextArea2.getAccessibleContext().setAccessibleDescription(NbBundle.getBundle("org.netbeans.modules.db.resources.Bundle").getString("ACS_UnsupportedDialogGenericTextA11yDesc")); - readonlyButton.setMnemonic(NbBundle.getBundle("org.netbeans.modules.db.resources.Bundle").getString("UnsupportedDialogReadOnlyButton_Mnemonic").charAt(0)); readonlyButton.setToolTipText(NbBundle.getBundle("org.netbeans.modules.db.resources.Bundle").getString("ACS_UnsupportedDialogReadOnlyButtonA11yDesc")); jTextArea3.getAccessibleContext().setAccessibleName(NbBundle.getBundle("org.netbeans.modules.db.resources.Bundle").getString("ACS_UnsupportedDialogReadOnlyTextA11yName")); jTextArea3.getAccessibleContext().setAccessibleDescription(NbBundle.getBundle("org.netbeans.modules.db.resources.Bundle").getString("ACS_UnsupportedDialogReadOnlyTextA11yDesc")); - okButton.setMnemonic(NbBundle.getBundle("org.netbeans.modules.db.resources.Bundle").getString("UnsupportedDialogButtonOK_Mnemonic").charAt(0)); okButton.setToolTipText(NbBundle.getBundle("org.netbeans.modules.db.resources.Bundle").getString("ACS_UnsupportedDialogButtonOKA11yDesc")); - cancelButton.setMnemonic(NbBundle.getBundle("org.netbeans.modules.db.resources.Bundle").getString("UnsupportedDialogButtonCancel_Mnemonic").charAt(0)); cancelButton.setToolTipText(NbBundle.getBundle("org.netbeans.modules.db.resources.Bundle").getString("ACS_UnsupportedDialogButtonCancelA11yDesc")); } @@ -91,32 +87,32 @@ jPanel1.setLayout(new java.awt.GridBagLayout()); jPanel1.setPreferredSize(new java.awt.Dimension(350, 200)); - jTextArea1.setWrapStyleWord(true); - jTextArea1.setLineWrap(true); jTextArea1.setEditable(false); jTextArea1.setFont(javax.swing.UIManager.getFont("Label.font")); + jTextArea1.setLineWrap(true); jTextArea1.setText(org.openide.util.NbBundle.getBundle("org.netbeans.modules.db.resources.Bundle").getString("UnsupportedDialogDescription")); + jTextArea1.setWrapStyleWord(true); jTextArea1.setDisabledTextColor(javax.swing.UIManager.getColor("Label.foreground")); jTextArea1.setEnabled(false); jTextArea1.setOpaque(false); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL; - gridBagConstraints.insets = new java.awt.Insets(10, 10, 0, 10); gridBagConstraints.weightx = 1.0; + gridBagConstraints.insets = new java.awt.Insets(10, 10, 0, 10); jPanel1.add(jTextArea1, gridBagConstraints); - genericButton.setText(java.util.ResourceBundle.getBundle("org/netbeans/modules/db/resources/Bundle").getString("UnsupportedDialogGenericButton")); + org.openide.awt.Mnemonics.setLocalizedText(genericButton,java.util.ResourceBundle.getBundle("org/netbeans/modules/db/resources/Bundle").getString("UnsupportedDialogGenericButton")); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridy = 1; - gridBagConstraints.insets = new java.awt.Insets(15, 10, 0, 10); gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST; + gridBagConstraints.insets = new java.awt.Insets(15, 10, 0, 10); jPanel1.add(genericButton, gridBagConstraints); - jTextArea2.setWrapStyleWord(true); - jTextArea2.setLineWrap(true); jTextArea2.setEditable(false); jTextArea2.setFont(javax.swing.UIManager.getFont("Label.font")); + jTextArea2.setLineWrap(true); jTextArea2.setText(org.openide.util.NbBundle.getBundle("org.netbeans.modules.db.resources.Bundle").getString("UnsupportedDialogGenericText")); + jTextArea2.setWrapStyleWord(true); jTextArea2.setDisabledTextColor(javax.swing.UIManager.getColor("Label.foreground")); jTextArea2.setEnabled(false); jTextArea2.setOpaque(false); @@ -124,23 +120,23 @@ gridBagConstraints.gridx = 0; gridBagConstraints.gridy = 2; gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL; - gridBagConstraints.insets = new java.awt.Insets(0, 10, 0, 10); gridBagConstraints.weightx = 1.0; + gridBagConstraints.insets = new java.awt.Insets(0, 10, 0, 10); jPanel1.add(jTextArea2, gridBagConstraints); - readonlyButton.setText(java.util.ResourceBundle.getBundle("org/netbeans/modules/db/resources/Bundle").getString("UnsupportedDialogReadOnlyButton")); + org.openide.awt.Mnemonics.setLocalizedText(readonlyButton,java.util.ResourceBundle.getBundle("org/netbeans/modules/db/resources/Bundle").getString("UnsupportedDialogReadOnlyButton")); readonlyButton.setActionCommand(java.util.ResourceBundle.getBundle("org/netbeans/modules/db/resources/Bundle").getString("ReadOnlyMode")); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridy = 3; - gridBagConstraints.insets = new java.awt.Insets(10, 10, 0, 10); gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST; + gridBagConstraints.insets = new java.awt.Insets(10, 10, 0, 10); jPanel1.add(readonlyButton, gridBagConstraints); - jTextArea3.setWrapStyleWord(true); - jTextArea3.setLineWrap(true); jTextArea3.setEditable(false); jTextArea3.setFont(javax.swing.UIManager.getFont("Label.font")); + jTextArea3.setLineWrap(true); jTextArea3.setText(org.openide.util.NbBundle.getBundle("org.netbeans.modules.db.resources.Bundle").getString("UnsupportedDialogReadOnlyText")); + jTextArea3.setWrapStyleWord(true); jTextArea3.setDisabledTextColor(javax.swing.UIManager.getColor("Label.foreground")); jTextArea3.setEnabled(false); jTextArea3.setOpaque(false); @@ -148,24 +144,24 @@ gridBagConstraints.gridx = 0; gridBagConstraints.gridy = 4; gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL; - gridBagConstraints.insets = new java.awt.Insets(0, 10, 0, 10); gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST; gridBagConstraints.weightx = 1.0; + gridBagConstraints.insets = new java.awt.Insets(0, 10, 0, 10); jPanel1.add(jTextArea3, gridBagConstraints); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridy = 5; gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH; - gridBagConstraints.insets = new java.awt.Insets(5, 10, 5, 10); gridBagConstraints.weightx = 1.0; gridBagConstraints.weighty = 1.0; + gridBagConstraints.insets = new java.awt.Insets(5, 10, 5, 10); jPanel1.add(jPanel2, gridBagConstraints); getContentPane().add(jPanel1, java.awt.BorderLayout.CENTER); buttonPanel.setLayout(new java.awt.FlowLayout(java.awt.FlowLayout.RIGHT)); - okButton.setText(java.util.ResourceBundle.getBundle("org/netbeans/modules/db/resources/Bundle").getString("UnsupportedDialogButtonOK")); + org.openide.awt.Mnemonics.setLocalizedText(okButton,java.util.ResourceBundle.getBundle("org/netbeans/modules/db/resources/Bundle").getString("UnsupportedDialogButtonOK")); okButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { okButtonActionPerformed(evt); @@ -174,7 +170,7 @@ buttonPanel.add(okButton); - cancelButton.setText(java.util.ResourceBundle.getBundle("org/netbeans/modules/db/resources/Bundle").getString("UnsupportedDialogButtonCancel")); + org.openide.awt.Mnemonics.setLocalizedText(cancelButton,java.util.ResourceBundle.getBundle("org/netbeans/modules/db/resources/Bundle").getString("UnsupportedDialogButtonCancel")); cancelButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { cancelButtonActionPerformed(evt); @@ -218,18 +214,18 @@ return READONLY; } - // Variables declaration - do not modify//GEN-BEGIN:variables - private javax.swing.JPanel buttonPanel; + // ?????????? ?????????? - ?? ????????? ?????? ???//GEN-BEGIN:variables + private javax.swing.JTextArea jTextArea2; + private javax.swing.JTextArea jTextArea3; + private javax.swing.JPanel jPanel2; private javax.swing.JButton okButton; private javax.swing.JButton cancelButton; + private javax.swing.JTextArea jTextArea1; private javax.swing.JRadioButton readonlyButton; private javax.swing.JRadioButton genericButton; - private javax.swing.JTextArea jTextArea3; - private javax.swing.JTextArea jTextArea2; - private javax.swing.JPanel jPanel2; - private javax.swing.JTextArea jTextArea1; private javax.swing.JPanel jPanel1; - // End of variables declaration//GEN-END:variables + private javax.swing.JPanel buttonPanel; + // ????? ?????????? ??????????//GEN-END:variables private boolean returnStatus = RET_CANCEL; Index: db/src/org/netbeans/modules/db/resources/Bundle.properties =================================================================== RCS file: /cvs/db/src/org/netbeans/modules/db/resources/Bundle.properties,v retrieving revision 1.65 diff -u -r1.65 Bundle.properties --- db/src/org/netbeans/modules/db/resources/Bundle.properties 16 Jan 2003 16:51:36 -0000 1.65 +++ db/src/org/netbeans/modules/db/resources/Bundle.properties 24 Feb 2003 10:14:50 -0000 @@ -119,8 +119,7 @@ PositionDescription = Position Index = Index IndexDescription = Index -Unique = Unique -Unique_Mnemonic = U +Unique = &Unique UniqueDescription = Unique Qualifier = Qualifier QualifierDescription = Qualifier @@ -292,12 +291,9 @@ # Add driver dialog AddDriverDialogTitle = Add JDBC Driver -AddDriverDriverName = Name: -AddDriverDriverName_Mnemonic = N -AddDriverDriverURL = Driver: -AddDriverDriverURL_Mnemonic = D -AddDriverDatabasePrefix = Database URL prefix: -AddDriverDatabasePrefix_Mnemonic = U +AddDriverDriverName = &Name: +AddDriverDriverURL = &Driver: +AddDriverDatabasePrefix = Database &URL prefix: AddDriverURLNotes = Note: the package (ZIP/JAR, typically) containing the driver code must be in the NetBeans classpath (add to the lib/ext/ directory). AddDriverErrorMessage = Insufficient information to add new driver. Please check that the driver name and driver class are entered correctly. @@ -354,18 +350,12 @@ # NewConnection dialog NewConnectionDialogTitle = New Database Connection -NewConnectionDriverName = Name: -NewConnectionDriverName_Mnemonic = N -NewConnectionDriverClass = Driver: -NewConnectionDriverClass_Mnemonic = D -NewConnectionDatabaseURL = Database URL: -NewConnectionDatabaseURL_Mnemonic = A -NewConnectionUserName = User Name: -NewConnectionUserName_Mnemonic = U -NewConnectionPassword = Password: -NewConnectionPassword_Mnemonic = P -NewConnectionRememberPassword = Remember password during this session -NewConnectionRememberPassword_Mnemonic = R +NewConnectionDriverName = &Name: +NewConnectionDriverClass = &Driver: +NewConnectionDatabaseURL = D&atabase URL: +NewConnectionUserName = &User Name: +NewConnectionPassword = &Password: +NewConnectionRememberPassword = &Remember password during this session ACS_NewConnectionDriverNameA11yDesc = Connection name. ACS_NewConnectionDriverNameComboBoxA11yName = Connection name combo box @@ -386,16 +376,12 @@ # Create table dialog -CreateTableName = Table name: -CreateTableName_Mnemonic = T +CreateTableName = &Table name: CreateTableUntitledName = Untitled -CreateTableOwner = Owner: -CreateTableOwner_Mnemonic = O +CreateTableOwner = &Owner: CreateTableColumns = Columns -CreateTableAddButtonTitle = Add column -CreateTableAddButtonTitle_Mnemonic = A -CreateTableRemoveButtonTitle = Remove -CreateTableRemoveButtonTitle_Mnemonic = R +CreateTableAddButtonTitle = &Add column +CreateTableRemoveButtonTitle = &Remove CreateTableDialogTitle = Create Table ACS_CreateTableNameA11yDesc = Table name. @@ -431,29 +417,19 @@ # Add table column dialog AddColumnDialogTitle = Add Column -AddTableColumnName = Name: -AddTableColumnName_Mnemonic = N -AddTableColumnType = Type: -AddTableColumnType_Mnemonic = T -AddTableColumnSize = Size: -AddTableColumnSize_Mnemonic = S -AddTableColumnScale = Scale: -AddTableColumnScale_Mnemonic = A -AddTableColumnDefault = Default: -AddTableColumnDefault_Mnemonic = D +AddTableColumnName = &Name: +AddTableColumnType = &Type: +AddTableColumnSize = &Size: +AddTableColumnScale = Sc&ale: +AddTableColumnDefault = &Default: AddTableColumnConstraintsTitle = Constraints -AddTableColumnConstraintPKTitle = Primary key -AddTableColumnConstraintPKTitle_Mnemonic = P +AddTableColumnConstraintPKTitle = &Primary key AddTableColumnConstraintIXTitle = Index -AddTableColumnConstraintUniqueTitle = Unique -AddTableColumnConstraintUniqueTitle_Mnemonic = U -AddTableColumnConstraintNullTitle = Null -AddTableColumnConstraintNullTitle_Mnemonic = L +AddTableColumnConstraintUniqueTitle = &Unique +AddTableColumnConstraintNullTitle = Nu&ll AddTableColumnConstraintCheckTitle = Check: -AddTableColumnIndexName = Index: -AddTableColumnIndexName_Mnemonic = I -AddTableColumnCheckTitle = Check: -AddTableColumnCheckTitle_Mnemonic = C +AddTableColumnIndexName = &Index: +AddTableColumnCheckTitle = &Check: ACS_AddTableColumnNameA11yDesc = Column name. ACS_AddTableColumnNameTextFieldA11yName = Column name text field @@ -503,8 +479,7 @@ # Add index dialog AddIndexTitle = Add Index -AddIndexName = Index name: -AddIndexName_Mnemonic = I +AddIndexName = &Index name: AddIndexLabel = Select the items you want to add to the index: ACS_AddIndexDialogA11yName=Add Index Dialog @@ -522,10 +497,8 @@ # Add view dialog AddViewTitle = Add View -AddViewName = View name: -AddViewName_Mnemonic = V -AddViewLabel = SQL expression to create view: -AddViewLabel_Mnemonic = S +AddViewName = &View name: +AddViewLabel = &SQL expression to create view: MSG_ViewsAreNotSupported = {0} does not support views. ACS_AddViewNameA11yDesc = Name of the view. @@ -542,13 +515,10 @@ RecreateTableFileOpenDialogTitle = Recreate Table RecreateTableRenameTable = Name the table -RecreateTableNewName = Name: -RecreateTableNewName_Mnemonic = N +RecreateTableNewName = &Name: RecreateTableRenameNotes = Create table script: -EditCommand=Edit table script -EditCommand_Mnemonic=E -ReloadCommand=Reload table script from file -ReloadCommand_Mnemonic=R +EditCommand=&Edit table script +ReloadCommand=&Reload table script from file ACS_RecreateTableNewNameA11yDesc = Table name. ACS_RecreateTableNewNameTextFieldA11yName = Table Name @@ -571,8 +541,7 @@ DataViewNextFetchButton = Yes DataViewAllFetchButton = Fetch all DataViewFetchErrorPrefix = Unable to execute query, -ExecuteButton = Execute -ExecuteButton_Mnemonic = E +ExecuteButton = &Execute FetchDataTitle = Fetch Data ShowDataError = Unable to show data, {0} @@ -596,16 +565,12 @@ UnsupportedDialogTitle = Database is not supported by the system UnsupportedDialogDescription = This database is not supported by the system. The following options are available: -UnsupportedDialogGenericButton = Connect as generic database system -UnsupportedDialogGenericButton_Mnemonic = N +UnsupportedDialogGenericButton = Co&nnect as generic database system UnsupportedDialogGenericText = Connect to the database and use SQL-92 standard commands (not supported by all databases). -UnsupportedDialogReadOnlyButton = Connect in read-only mode -UnsupportedDialogReadOnlyButton_Mnemonic = R +UnsupportedDialogReadOnlyButton = Connect in &read-only mode UnsupportedDialogReadOnlyText = Connect without the ability to modify the database. -UnsupportedDialogButtonOK = OK -UnsupportedDialogButtonOK_Mnemonic = O -UnsupportedDialogButtonCancel = Cancel -UnsupportedDialogButtonCancel_Mnemonic = C +UnsupportedDialogButtonOK = &OK +UnsupportedDialogButtonCancel = &Cancel ReadOnlyMode = Read Only Mode ACS_UnsupportedDialogDescriptionA11yName = Unsupported database description @@ -755,14 +720,10 @@ BasePanelHint = Basic set of arguments to create database connection ExtendPanelHint = Selection of database schema to use in the connection ConnectDialogTitle = Connect -ConnectDialogUserName = User name: -ConnectDialogUserName_Mnemonic = U -ConnectDialogPassword = Password: -ConnectDialogPassword_Mnemonic = P -ConnectDialogRememberPassword = Remember password during this session -ConnectDialogRememberPassword_Mnemonic = R -Product = Product -Product_Mnemonic = O +ConnectDialogUserName = &User name: +ConnectDialogPassword = &Password: +ConnectDialogRememberPassword = &Remember password during this session +Product = Pr&oduct ACS_ConnectDialogUserNameA11yDesc = Database user name. ACS_ConnectDialogUserNameTextFieldA11yName = Database user name text field @@ -776,8 +737,7 @@ ACS_ProductComboBoxA11yDesc = Combo box containing all product names. # SchemaPanel -SchemaDialogText=Select schema: -SchemaDialogText_Mnemonic=S +SchemaDialogText=&Select schema: MSG_SchemaPanelComment=Select a database schema to use. MSG_SchemaPanelWarning=There is no schema with same name as user name. You need to choose one of the schemas. \n\ Select a database schema to use.