Revision 132

View differences:

org.gvsig.wfs.app/trunk/org.gvsig.wfs.app/org.gvsig.wfs.app.mainplugin/src/main/resources-plugin/i18n/text.properties
36 36
layerName=Nombre de la capa
37 37
layerType=Tipo de geometr\u00eda
38 38
line=L\u00ednea
39
max_features=M\u00e1x. features
39
max_features=N?mero max. features
40 40
maxFeatures_aviso=Se ha recuperado un numero de Features igual al m\u00e1ximo \n numero de Features permitido. Puede aumentar el n\u00famero de \nFeatures recuperadas modificando el par\u00e1metro "Buffer"
41 41
MultiLineStringPropertyType=Multil\u00ednea
42 42
MultiPointPropertyType=Multipunto
......
74 74
srs=Srs
75 75
Tabla_de_Atributos=Tabla de atributos
76 76
the_token=
77
timeout=Timeout
77
timeout=Tiempo m?x. espera
78 78
warning=Aviso
79 79
wfs_properties=Propiedades WFS
80 80
wfs_server_error=Error del servidor wfs
......
94 94
vectorial_cache=Cach? vectorial
95 95
none=Ninguna
96 96
Dangerous_parameters_found_Continue_question=Se han encontrado par?metros en la URL que pueden provocar problemas.\n?Desea continuar sin retocarla? Los par?metros son
97
_Axis_order=Orden de los ejes
97 98
_Feature_cache=Cache de registros
98 99
_Server_version=Versi?n WFS
99 100
_Unable_to_show_max_featcount=No se pudo mostrar n?mero m?ximo de elementos a descargar
100 101
_WFS_protocol_version=Versi?n de WFS
101 102
_Version=Versi?n
102

  
103
_Use_axis_order_YX=Rotar ejes a YX
104
enable_cache=Habilitar cach?
org.gvsig.wfs.app/trunk/org.gvsig.wfs.app/org.gvsig.wfs.app.mainplugin/src/main/java/org/gvsig/wfs/gui/panels/WFSOptionsPanel.java
165 165

  
166 166
            bufferPanel = new JPanel();
167 167
            bufferLabel = new JLabel();
168
            bufferLabel.setText(PluginServices.getText(this, "max_features"));
168
            bufferLabel.setText(PluginServices.getText(null, "max_features"));
169 169
            bufferLabel.setPreferredSize(new Dimension(90, 20));
170 170
            bufferPanel.setLayout(new java.awt.FlowLayout(java.awt.FlowLayout.LEFT));
171 171
            bufferPanel.add(bufferLabel);
......
173 173

  
174 174
            timeOutPanel = new JPanel();
175 175
            timeoutLabel = new JLabel();
176
            timeoutLabel.setText(PluginServices.getText(this, "timeout"));
176
            timeoutLabel.setText(PluginServices.getText(null, "timeout"));
177 177
            timeoutLabel.setPreferredSize(new Dimension(90, 20));
178 178
            timeOutPanel.setLayout(new java.awt.FlowLayout(java.awt.FlowLayout.LEFT));
179 179
            timeOutPanel.add(timeoutLabel);
......
512 512
            axisOrderPanel.setLayout(new java.awt.FlowLayout(java.awt.FlowLayout.LEFT));
513 513
            axisOrderPanel.setBorder(BorderFactory.createTitledBorder(
514 514
                    null,
515
                    i18nManager.getTranslation("_Axis_order"),
515
                    PluginServices.getText(null,"_Axis_order"),
516 516
                    TitledBorder.DEFAULT_JUSTIFICATION,
517 517
                    TitledBorder.DEFAULT_POSITION,
518 518
                    null,
......
527 527
        if (axisOrderYXCheckBox == null) {
528 528
            I18nManager i18nManager = ToolsLocator.getI18nManager();
529 529
            axisOrderYXCheckBox = new JCheckBox();
530
            axisOrderYXCheckBox.setText(i18nManager.getTranslation("_Use_axis_order_YX"));
530
            axisOrderYXCheckBox.setText(PluginServices.getText(null,"_Use_axis_order_YX"));
531 531
            axisOrderYXCheckBox.setBounds(new Rectangle(175, 50, 40, 16));
532 532
        }
533 533

  

Also available in: Unified diff