Changeset 20917 in osm for applications/editors/josm/plugins
- Timestamp:
- 2010-04-17T22:30:48+02:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/turnrestrictions/src/org/openstreetmap/josm/plugins/turnrestrictions/editor/BasicEditorPanel.java
r20735 r20917 1 1 package org.openstreetmap.josm.plugins.turnrestrictions.editor; 2 3 import static org.openstreetmap.josm.tools.I18n.tr; 2 4 3 5 import java.awt.GridBagConstraints; … … 50 52 // the editor for selecting the 'from' leg 51 53 gc.insets = new Insets(0,0,5,5); 52 add(new JLabel( "Type:"), gc);54 add(new JLabel(tr("Type:")), gc); 53 55 54 56 gc.gridx = 1; … … 60 62 gc.gridy = 1; 61 63 gc.weightx = 0.0; 62 add(new JLabel( "From:"), gc);64 add(new JLabel(tr("From:")), gc); 63 65 64 66 gc.gridx = 1; … … 71 73 gc.weightx = 0.0; 72 74 gc.insets = new Insets(0,0,5,5); 73 add(new JLabel( "To:"), gc);75 add(new JLabel(tr("To:")), gc); 74 76 75 77 gc.gridx = 1; … … 82 84 gc.weightx = 0.0; 83 85 gc.insets = new Insets(0,0,5,5); 84 add(lblVias = new JLabel( "Vias:"), gc);86 add(lblVias = new JLabel(tr("Vias:")), gc); 85 87 86 88 gc.gridx = 1;
Note:
See TracChangeset
for help on using the changeset viewer.