Revision 42242 trunk/org.gvsig.desktop/org.gvsig.desktop.library/org.gvsig.ui/src/main/java/org/gvsig/gui/beans/propertiespanel/PropertiesComponent.java

View differences:

PropertiesComponent.java
71 71
import org.gvsig.gui.beans.slidertext.SliderTextContainer;
72 72
import org.gvsig.gui.beans.slidertext.listeners.SliderEvent;
73 73
import org.gvsig.gui.beans.slidertext.listeners.SliderListener;
74
import org.gvsig.tools.ToolsLocator;
75
import org.gvsig.tools.i18n.I18nManager;
76 74
/**
77 75
 * Componente para crear un cuadro de propiedades de configuracion standard.
78 76
 *
......
156 154
	 */
157 155
	public void addPropertyStruct(PropertyStruct property) {
158 156
		boolean without_label = false;
159
		I18nManager i18n = ToolsLocator.getI18nManager();
160 157

  
161
		JLabel label = new JLabel(i18n.getTranslation(property.getTextLabel()) + ": ");
158
		JLabel label = new JLabel(property.getTextLabel() + ": ");
162 159

  
163 160
		Component component = new JLabel("Sin soporte para: " + property.getOldValue().getClass().toString());
164 161

  

Also available in: Unified diff