Revision 3992

View differences:

branches/v05/applications/appgvSIG/src/com/iver/cit/gvsig/gui/Panels/SaveRasterDialog.java
154 154
		dInput.bSeleccion.setText(PluginServices.getText(this,"Seleccionar"));
155 155
		dInput.lAncho.setText(PluginServices.getText(this,"ancho")+".");
156 156
		dInput.lAlto.setText(PluginServices.getText(this,"alto")+".");
157
				
157
		getAcceptButton().setText(PluginServices.getText(this, "aceptar"));
158
		getCancelButton().setText(PluginServices.getText(this, "cancelar"));
159
		
160
		String text = dInput.getBPropiedades().getText();
161
		dInput.getBPropiedades().setText(PluginServices.getText(this, "propiedades")+" "+text.substring(text.lastIndexOf(" ") + 1,text.length()));				
158 162
	}
159 163
	
160 164
	/**
......
254 258
				writerProps.setProps(driverProps.getProperties("jp2"));
255 259
			}
256 260
		}
257
						
261
		
258 262
		frameSaveRasterProps = new SaveRasterPropsDialog(writerProps);
259 263
		frameSaveRasterProps.setParentDialog(this);
260 264
		frameSaveRasterProps.show();
branches/v05/applications/appgvSIG/src/com/iver/cit/gvsig/gui/Panels/SaveRasterPropsDialog.java
15 15
import org.cresques.ui.raster.SavePropsSetupPanel;
16 16
import org.cresques.ui.raster.SaveRasterPropsDialogPanel;
17 17

  
18
import com.iver.andami.PluginServices;
19

  
18 20
/**
19 21
 * Dialogo para abrir fichero.
20 22
 * @author Nacho Brodin (brodin_ign@gva.es)
......
59 61
		setBounds(0, 0, widthWindow, heightWindow);  //Size Ventana
60 62
		setResizable(false);
61 63
		setName("saveRasterProps");
62
		setTitle("Propiedades de "+formato);
64
		setTitle(PluginServices.getText(this, "propiedades"));
63 65
		setContentPane(getContentPane());
64
	 	//contentPane.getAcceptButton().setEnabled(false);
66
		
67
		contentPane.getAcceptButton().setText(PluginServices.getText(this, "aceptar"));
68
		contentPane.getCancelButton().setText(PluginServices.getText(this, "cancelar"));
69
		
65 70
		contentPane.getAcceptButton().addActionListener(new java.awt.event.ActionListener() {
66 71
            public void actionPerformed(java.awt.event.ActionEvent evt) {
67 72
            	acceptButtonActionPerformed(evt);
......
78 83
            	acceptButtonActionPerformed(evt);
79 84
             }
80 85
        });
86
		
81 87
	}
82 88
	
83 89
	/**

Also available in: Unified diff