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

(-)a/git/src/org/netbeans/modules/git/ui/repository/remote/UserPasswordPanel.form (+6 lines)
Lines 62-67 Link Here
62
  <SubComponents>
62
  <SubComponents>
63
    <Component class="javax.swing.JLabel" name="passwordLabel">
63
    <Component class="javax.swing.JLabel" name="passwordLabel">
64
      <Properties>
64
      <Properties>
65
        <Property name="labelFor" type="java.awt.Component" editor="org.netbeans.modules.form.ComponentChooserEditor">
66
          <ComponentRef name="userPasswordField"/>
67
        </Property>
65
        <Property name="text" type="java.lang.String" editor="org.netbeans.modules.i18n.form.FormI18nStringEditor">
68
        <Property name="text" type="java.lang.String" editor="org.netbeans.modules.i18n.form.FormI18nStringEditor">
66
          <ResourceString bundle="org/netbeans/modules/git/ui/repository/remote/Bundle.properties" key="UserPasswordPanel.passwordLabel.text" replaceFormat="org.openide.util.NbBundle.getMessage({sourceFileName}.class, &quot;{key}&quot;)"/>
69
          <ResourceString bundle="org/netbeans/modules/git/ui/repository/remote/Bundle.properties" key="UserPasswordPanel.passwordLabel.text" replaceFormat="org.openide.util.NbBundle.getMessage({sourceFileName}.class, &quot;{key}&quot;)"/>
67
        </Property>
70
        </Property>
Lines 76-81 Link Here
76
    </Component>
79
    </Component>
77
    <Component class="javax.swing.JLabel" name="userLabel">
80
    <Component class="javax.swing.JLabel" name="userLabel">
78
      <Properties>
81
      <Properties>
82
        <Property name="labelFor" type="java.awt.Component" editor="org.netbeans.modules.form.ComponentChooserEditor">
83
          <ComponentRef name="userTextField"/>
84
        </Property>
79
        <Property name="text" type="java.lang.String" editor="org.netbeans.modules.i18n.form.FormI18nStringEditor">
85
        <Property name="text" type="java.lang.String" editor="org.netbeans.modules.i18n.form.FormI18nStringEditor">
80
          <ResourceString bundle="org/netbeans/modules/git/ui/repository/remote/Bundle.properties" key="UserPasswordPanel.userLabel.text" replaceFormat="org.openide.util.NbBundle.getMessage({sourceFileName}.class, &quot;{key}&quot;)"/>
86
          <ResourceString bundle="org/netbeans/modules/git/ui/repository/remote/Bundle.properties" key="UserPasswordPanel.userLabel.text" replaceFormat="org.openide.util.NbBundle.getMessage({sourceFileName}.class, &quot;{key}&quot;)"/>
81
        </Property>
87
        </Property>
(-)a/git/src/org/netbeans/modules/git/ui/repository/remote/UserPasswordPanel.java (+2 lines)
Lines 59-67 Link Here
59
    // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
59
    // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
60
    private void initComponents() {
60
    private void initComponents() {
61
61
62
        passwordLabel.setLabelFor(userPasswordField);
62
        org.openide.awt.Mnemonics.setLocalizedText(passwordLabel, org.openide.util.NbBundle.getMessage(UserPasswordPanel.class, "UserPasswordPanel.passwordLabel.text")); // NOI18N
63
        org.openide.awt.Mnemonics.setLocalizedText(passwordLabel, org.openide.util.NbBundle.getMessage(UserPasswordPanel.class, "UserPasswordPanel.passwordLabel.text")); // NOI18N
63
        passwordLabel.setToolTipText(org.openide.util.NbBundle.getMessage(UserPasswordPanel.class, "UserPasswordPanel.passwordLabel.toolTipText")); // NOI18N
64
        passwordLabel.setToolTipText(org.openide.util.NbBundle.getMessage(UserPasswordPanel.class, "UserPasswordPanel.passwordLabel.toolTipText")); // NOI18N
64
65
66
        userLabel.setLabelFor(userTextField);
65
        org.openide.awt.Mnemonics.setLocalizedText(userLabel, org.openide.util.NbBundle.getMessage(UserPasswordPanel.class, "UserPasswordPanel.userLabel.text")); // NOI18N
67
        org.openide.awt.Mnemonics.setLocalizedText(userLabel, org.openide.util.NbBundle.getMessage(UserPasswordPanel.class, "UserPasswordPanel.userLabel.text")); // NOI18N
66
        userLabel.setToolTipText(org.openide.util.NbBundle.getMessage(UserPasswordPanel.class, "UserPasswordPanel.userLabel.toolTipText")); // NOI18N
68
        userLabel.setToolTipText(org.openide.util.NbBundle.getMessage(UserPasswordPanel.class, "UserPasswordPanel.userLabel.toolTipText")); // NOI18N
67
69

Return to bug 229551