Revision 40950 trunk/org.gvsig.desktop/org.gvsig.desktop.library/org.gvsig.newlayer/org.gvsig.newlayer.lib/org.gvsig.newlayer.lib.impl/src/main/java/org/gvsig/newlayer/impl/AddNewLayerQuestionPanel.java

View differences:

AddNewLayerQuestionPanel.java
46 46
	}
47 47

  
48 48
	public String getPanelTitle() {
49
		return "Add layer question panel";
49
		return Messages.getText("_Adding_layer");
50 50
	}
51 51

  
52 52
	public void nextPanel() throws NotContinueWizardException {
......
68 68

  
69 69
    private void initializeComponents() {
70 70
        this.setLayout(new BorderLayout());
71
        this.add(getQuestionCheckBox(), BorderLayout.CENTER);        
71
        this.add(getQuestionCheckBox(), BorderLayout.NORTH);        
72 72
    }
73 73
    
74 74
    private JCheckBox getQuestionCheckBox(){
75 75
    	if (this.questionCheckBox == null){
76
    		this.questionCheckBox = new JCheckBox(Messages.getText("add_layer_to_view_question"), true);
76
    		this.questionCheckBox = new JCheckBox(
77
    		    Messages.getText("_Add_layer_to_view"), true);
77 78
    	}
78 79
    	return this.questionCheckBox;
79 80
    }

Also available in: Unified diff