Ignore:
Timestamp:
2010-04-17T22:30:48+02:00 (15 years ago)
Author:
stoecker
Message:

fixed i18n

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/editor/BasicEditorPanel.java

    r20735 r20917  
    11package org.openstreetmap.josm.plugins.turnrestrictions.editor;
     2
     3import static org.openstreetmap.josm.tools.I18n.tr;
    24
    35import java.awt.GridBagConstraints;
     
    5052                // the editor for selecting the 'from' leg
    5153            gc.insets = new Insets(0,0,5,5);   
    52             add(new JLabel("Type:"), gc);
     54            add(new JLabel(tr("Type:")), gc);
    5355           
    5456            gc.gridx = 1;
     
    6062            gc.gridy = 1;       
    6163            gc.weightx = 0.0;
    62             add(new JLabel("From:"), gc);
     64            add(new JLabel(tr("From:")), gc);
    6365           
    6466            gc.gridx = 1;
     
    7173                gc.weightx = 0.0;
    7274            gc.insets = new Insets(0,0,5,5);   
    73             add(new JLabel("To:"), gc);
     75            add(new JLabel(tr("To:")), gc);
    7476           
    7577            gc.gridx = 1;
     
    8284                gc.weightx = 0.0;
    8385            gc.insets = new Insets(0,0,5,5);   
    84             add(lblVias = new JLabel("Vias:"), gc);
     86            add(lblVias = new JLabel(tr("Vias:")), gc);
    8587           
    8688            gc.gridx = 1;
Note: See TracChangeset for help on using the changeset viewer.