Revision 132 org.gvsig.wfs.app/trunk/org.gvsig.wfs.app/org.gvsig.wfs.app.mainplugin/src/main/java/org/gvsig/wfs/gui/panels/WFSOptionsPanel.java

View differences:

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