Index: ui/welcome/src/org/netbeans/modules/welcome/Bundle.properties =================================================================== RCS file: /shared/data/helm/cvs/repository/ui/welcome/src/org/netbeans/modules/welcome/Bundle.properties,v retrieving revision 1.8.4.1 diff -c -r1.8.4.1 Bundle.properties *** ui/welcome/src/org/netbeans/modules/welcome/Bundle.properties 23 Jul 2002 07:03:42 -0000 1.8.4.1 --- ui/welcome/src/org/netbeans/modules/welcome/Bundle.properties 22 Dec 2002 12:48:14 -0000 *************** *** 54,56 **** --- 54,59 ---- OpenIDE-Module-Long-Description=The Welcome module provides a screen with introductory information about using the IDE. The screen appears when you start the IDE for the first time. You can choose basic commands and open help topics directly from this screen. + # TipPanel.java + LBL_next=Next + Index: ui/welcome/src/org/netbeans/modules/welcome/TipPanel.java =================================================================== RCS file: /shared/data/helm/cvs/repository/ui/welcome/src/org/netbeans/modules/welcome/TipPanel.java,v retrieving revision 1.11.10.1 diff -c -r1.11.10.1 TipPanel.java *** ui/welcome/src/org/netbeans/modules/welcome/TipPanel.java 23 Jul 2002 07:17:18 -0000 1.11.10.1 --- ui/welcome/src/org/netbeans/modules/welcome/TipPanel.java 22 Dec 2002 12:48:15 -0000 *************** *** 75,81 **** scroll.setPreferredSize(new Dimension(148,180)); scroll.setVerticalScrollBarPolicy(scroll.VERTICAL_SCROLLBAR_AS_NEEDED); add(scroll,BorderLayout.CENTER); ! JButton nextB = new JButton("Next");// NOI18N nextB.setFont(new java.awt.Font("Lucida Sans", 0, 10));// NOI18N nextB.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent e){ --- 75,81 ---- scroll.setPreferredSize(new Dimension(148,180)); scroll.setVerticalScrollBarPolicy(scroll.VERTICAL_SCROLLBAR_AS_NEEDED); add(scroll,BorderLayout.CENTER); ! JButton nextB = new JButton(java.util.ResourceBundle.getBundle("org/netbeans/modules/welcome/Bundle").getString("LBL_next")); nextB.setFont(new java.awt.Font("Lucida Sans", 0, 10));// NOI18N nextB.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent e){ Index: ui/welcome/src/org/netbeans/modules/welcome/ControlPanel.java =================================================================== RCS file: /shared/data/helm/cvs/repository/ui/welcome/src/org/netbeans/modules/welcome/ControlPanel.java,v retrieving revision 1.1 diff -c -r1.1 ControlPanel.java *** ui/welcome/src/org/netbeans/modules/welcome/ControlPanel.java 4 Jun 2002 08:50:20 -0000 1.1 --- ui/welcome/src/org/netbeans/modules/welcome/ControlPanel.java 22 Dec 2002 12:48:16 -0000 *************** *** 13,18 **** --- 13,20 ---- package org.netbeans.modules.welcome; + import org.openide.util.NbBundle; + /** * * @author Richard Gregor *************** *** 22,27 **** --- 24,32 ---- /** Creates new form ControlPanel */ public ControlPanel() { initComponents(); + custLBL.setIcon(new javax.swing.ImageIcon(NbBundle.getLocalizedFile("org.netbeans.modules.welcome.pages.images.customizing","gif"))); + helpLBL.setIcon(new javax.swing.ImageIcon(NbBundle.getLocalizedFile("org.netbeans.modules.welcome.pages.images.help","gif"))); + tipLBL.setIcon(new javax.swing.ImageIcon(NbBundle.getLocalizedFile("org.netbeans.modules.welcome.pages.images.tip","gif"))); } /** This method is called from within the constructor to