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

(-)a/mercurial/src/org/netbeans/modules/mercurial/ui/diff/Bundle.properties (+1 lines)
Lines 85-90 BK3005=Replace existing {0} file? Link Here
85
85
86
ACSD_ImportBrowseFolder = Lets you browse for mercurial import file.
86
ACSD_ImportBrowseFolder = Lets you browse for mercurial import file.
87
ImportBrowse_title=Browse for the Import File
87
ImportBrowse_title=Browse for the Import File
88
Import=Import
88
#~
89
#~
89
90
90
MSG_Refreshing_Revisions = Refreshing Revisions
91
MSG_Refreshing_Revisions = Refreshing Revisions
(-)a/mercurial/src/org/netbeans/modules/mercurial/ui/diff/ImportDiffAction.java (-2 / +2 lines)
Lines 102-109 public class ImportDiffAction extends Co Link Here
102
102
103
        }
103
        }
104
        fileChooser.setDialogType(JFileChooser.SAVE_DIALOG);
104
        fileChooser.setDialogType(JFileChooser.SAVE_DIALOG);
105
        fileChooser.setApproveButtonMnemonic(NbBundle.getMessage(ImportDiffAction.class, "OK_Button").charAt(0));                      // NO I18N
105
        fileChooser.setApproveButtonMnemonic(NbBundle.getMessage(ImportDiffAction.class, "Import").charAt(0));                      // NO I18N
106
        fileChooser.setApproveButtonText(NbBundle.getMessage(ImportDiffAction.class, "OK_Button"));                                        // NO I18N
106
        fileChooser.setApproveButtonText(NbBundle.getMessage(ImportDiffAction.class, "Import"));                                        // NO I18N
107
        fileChooser.setCurrentDirectory(new File(HgModuleConfig.getDefault().getImportFolder()));
107
        fileChooser.setCurrentDirectory(new File(HgModuleConfig.getDefault().getImportFolder()));
108
108
109
        DialogDescriptor dd = new DialogDescriptor(fileChooser, NbBundle.getMessage(ImportDiffAction.class, "Browse_title"));              // NO I18N
109
        DialogDescriptor dd = new DialogDescriptor(fileChooser, NbBundle.getMessage(ImportDiffAction.class, "Browse_title"));              // NO I18N

Return to bug 127839