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 180696
Collapse All | Expand All

(-)nb-trunk-orig/db/src/org/netbeans/modules/db/explorer/dlg/AddDriverDialog.java (-1 / +8 lines)
Lines 750-756 Link Here
750
    public static JDBCDriver showDialog(DriverNode driverNode) {
750
    public static JDBCDriver showDialog(DriverNode driverNode) {
751
        AddDriverDialog dlgPanel = new AddDriverDialog(driverNode == null ? null : driverNode.getDatabaseDriver().getJDBCDriver(), null, null);
751
        AddDriverDialog dlgPanel = new AddDriverDialog(driverNode == null ? null : driverNode.getDatabaseDriver().getJDBCDriver(), null, null);
752
752
753
        DialogDescriptor descriptor = new DialogDescriptor(dlgPanel, NbBundle.getMessage(AddDriverDialog.class, "AddDriverDialogTitle")); //NOI18N
753
        String dialogTitle = null;
754
        if(driverNode == null) {
755
            dialogTitle = NbBundle.getMessage(AddDriverDialog.class, "AddDriverDialogTitle"); //NOI18N
756
        } else {
757
            dialogTitle = NbBundle.getMessage(AddDriverDialog.class, "CustomizeDriverDialogTitle"); //NOI18N
758
        }
759
        
760
        DialogDescriptor descriptor = new DialogDescriptor(dlgPanel, dialogTitle); 
754
        descriptor.setHelpCtx(AddDriverDialog.getHelpCtx());
761
        descriptor.setHelpCtx(AddDriverDialog.getHelpCtx());
755
        descriptor.createNotificationLineSupport();
762
        descriptor.createNotificationLineSupport();
756
        dlgPanel.setDescriptor(descriptor);
763
        dlgPanel.setDescriptor(descriptor);
(-)nb-trunk-orig/db/src/org/netbeans/modules/db/explorer/dlg/Bundle.properties (+1 lines)
Lines 43-48 Link Here
43
ACS_UniqueA11yDesc=Select this checkbox to mark the index as unique.
43
ACS_UniqueA11yDesc=Select this checkbox to mark the index as unique.
44
44
45
# New JDBC Driver
45
# New JDBC Driver
46
CustomizeDriverDialogTitle=Customize JDBC Driver
46
AddDriverDialogTitle=New JDBC Driver
47
AddDriverDialogTitle=New JDBC Driver
47
AddDriverDriverFile=Dri&ver File(s):
48
AddDriverDriverFile=Dri&ver File(s):
48
AddDriverDriverClass=Driver &Class\:
49
AddDriverDriverClass=Driver &Class\:

Return to bug 180696