Revision 7016

View differences:

trunk/libraries/libCq CMS for java.old/.classpath
16 16
	<classpathentry kind="lib" path="lib/jecwcompress-0.1.0.jar"/>
17 17
	<classpathentry kind="lib" path="lib/kxml2.jar"/>
18 18
	<classpathentry kind="lib" path="lib/jgdal-0.3.1.jar"/>
19
	<classpathentry kind="lib" path="/libInternationalization/dist/gvsig-i18n.jar"/>
19 20
	<classpathentry kind="output" path="bin"/>
20 21
</classpath>
trunk/libraries/libCq CMS for java.old/src/org/cresques/ui/cts/CSSelectionDialogPanel.java
27 27

  
28 28
import org.cresques.ui.DefaultDialogPanel;
29 29
import org.cresques.ui.cts.CSSelectionPanel;
30
import org.gvsig.i18n.Messages;
30 31

  
31 32
import javax.swing.JPanel;
32 33

  
......
58 59

  
59 60
    protected JPanel getContentPanel() {
60 61
        if (contentPane == null) {
61
        	contentPane = new CSSelectionPanel("Sistema de referencia");
62
        	//contentPane = new CSSelectionPanel("Sistema de referencia");
63
        	contentPane = new CSSelectionPanel(Messages.getText("reference_system"));
62 64
        	contentPane.setBounds(14, 12, 280, 163);
63 65

  
64 66
            ((CSSelectionPanel) contentPane).setProjection(ProjectionPool.get("EPSG:32619"));
trunk/libraries/libCq CMS for java.old/src/org/cresques/ui/cts/CSSelectionPanel.java
24 24
package org.cresques.ui.cts;
25 25

  
26 26
import org.cresques.cts.IProjection;
27

  
28 27
import org.cresques.ui.LoadableComboBox;
28
import org.gvsig.i18n.Messages;
29 29

  
30 30
import javax.swing.JLabel;
31 31
import javax.swing.JPanel;
......
59 59
        super();
60 60

  
61 61
        if (tit == null) {
62
            tit = "Sistema de referencia";
62
            //tit = "Sistema de referencia";
63
            //TODO: add com.iver.andami.PluginServices to this project
64
            //change all the labels from fix text got from the internationalitation
65
            tit = Messages.getText("reference_system");
66
            if (tit == null) tit="Reference System";
63 67
        }
64 68

  
65 69
        this.tit = tit;
......
80 84
        javax.swing.BorderFactory.createEmptyBorder(5,5,5,5)); */
81 85
        setBorder(javax.swing.BorderFactory.createCompoundBorder(null,
82 86
                                                                 javax.swing.BorderFactory.createTitledBorder(null,
83
                                                                                                              "Sistema de Referencia",
87
                                                                		 										Messages.getText("reference_system"),
84 88
                                                                                                              javax.swing.border.TitledBorder.DEFAULT_JUSTIFICATION,
85 89
                                                                                                              javax.swing.border.TitledBorder.DEFAULT_POSITION,
86 90
                                                                                                              null,
......
88 92

  
89 93
        jLabel = new JLabel();
90 94
        jLabel.setBounds(15, 15, 77, 23);
91
        jLabel.setText("Datum :");
95
        jLabel.setText(Messages.getText("datum") + ":");
92 96
        add(jLabel, null);
93 97
        add(getDatumComboBox(), null);
94 98

  
95 99
        jLabel1 = new JLabel();
96 100
        jLabel1.setBounds(15, 60, 77, 23);
97
        jLabel1.setText("Proyecci?n :");
101
        jLabel1.setText(Messages.getText("projection") + ":");
98 102
        add(jLabel1, null);
99 103
        add(getProjComboBox(), null);
100 104

  
101 105
        jLabel2 = new JLabel();
102 106
        jLabel2.setBounds(15, 105, 77, 23);
103
        jLabel2.setText("Huso :");
107
        jLabel2.setText(Messages.getText("zone") + ":");
104 108
        add(jLabel2, null);
105 109
        add(getHuseComboBox(), null);
106 110

  

Also available in: Unified diff