Revision 257 org.gvsig.geoprocess/trunk/org.gvsig.geoprocess/org.gvsig.geoprocess.algorithm/org.gvsig.geoprocess.algorithm.dissolve/src/main/java/org/gvsig/geoprocess/algorithm/dissolve/DissolveParametersPanel.java

View differences:

DissolveParametersPanel.java
48 48
import es.unex.sextante.outputs.Output;
49 49

  
50 50
import org.gvsig.geoprocess.core.CompositeSourceOutputChannel;
51
import org.gvsig.geoprocess.lib.api.GeoProcessLocator;
51 52
import org.gvsig.geoprocess.sextante.gui.algorithm.AlgorithmOutputPanel;
52 53
import org.gvsig.gui.beans.table.TableContainer;
53 54
import org.gvsig.gui.beans.table.exceptions.NotInitializeException;
......
88 89
		gbc.gridx = 0;
89 90
		gbc.gridy = 0;
90 91
		gbc.insets = new Insets(0, 0, 8, 0);
91
		this.add(getComboPanel(Sextante.getText("Input_layer"), getLayersCombo()), gbc);
92
		this.add(getComboPanel(GeoProcessLocator.getGeoProcessManager().getTranslation("Input_layer"), getLayersCombo()), gbc);
92 93
		
93 94
		gbc.gridy = 1;
94
		this.add(getComboPanel(Sextante.getText("Field"), getFieldsCombo()), gbc);
95
		this.add(getComboPanel(GeoProcessLocator.getGeoProcessManager().getTranslation("Field"), getFieldsCombo()), gbc);
95 96
		
96 97
		gbc.gridy = 2;
97 98
		this.add(getSelectionCheck(), gbc);
......
100 101
		this.add(getAdjacentCheck(), gbc);
101 102
		
102 103
		gbc.gridy = 4;
103
		this.add(new JLabel(Sextante.getText("summary_function")), gbc);
104
		this.add(new JLabel(GeoProcessLocator.getGeoProcessManager().getTranslation("summary_function")), gbc);
104 105
		
105 106
		gbc.gridy = 5;
106 107
		gbc.fill = GridBagConstraints.BOTH;
......
192 193
	 */
193 194
	public JCheckBox getSelectionCheck() {
194 195
		if(selectionOnly == null) {
195
			selectionOnly = new JCheckBox(Sextante.getText("Selected_geometries"));
196
			selectionOnly = new JCheckBox(GeoProcessLocator.getGeoProcessManager().getTranslation("Selected_geometries"));
196 197
		}
197 198
		return selectionOnly;
198 199
	}
......
203 204
	 */
204 205
	public JCheckBox getAdjacentCheck() {
205 206
		if(adjacentOnly == null) {
206
			adjacentOnly = new JCheckBox(Sextante.getText("adjacent_geometries_only"));
207
			adjacentOnly = new JCheckBox(GeoProcessLocator.getGeoProcessManager().getTranslation("adjacent_geometries_only"));
207 208
		}
208 209
		return adjacentOnly;
209 210
	}

Also available in: Unified diff