Changeset 27886 in osm for applications/editors/josm
- Timestamp:
- 2012-02-19T19:11:31+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/public_transport
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/public_transport/build.xml
r27019 r27886 86 86 <attribute name="Plugin-Description" value="This plugin simplifies the mapping and editing of public transport routes."/> 87 87 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/public_transport"/> 88 <attribute name="Plugin-Mainversion" value="4 549"/>88 <attribute name="Plugin-Mainversion" value="4980"/> 89 89 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 90 90 </manifest> -
applications/editors/josm/plugins/public_transport/src/public_transport/GTFSAddCommand.java
r26168 r27886 10 10 import java.util.Collection; 11 11 import java.util.Vector; 12 import javax.swing.JLabel;13 12 14 13 public class GTFSAddCommand extends Command … … 85 84 } 86 85 87 @Override public JLabel getDescription()86 @Override public String getDescriptionText() 88 87 { 89 return new JLabel(tr("Public Transport: Enable GTFSStops"));88 return tr("Public Transport: Enable GTFSStops"); 90 89 } 91 90 }; -
applications/editors/josm/plugins/public_transport/src/public_transport/GTFSCatchCommand.java
r26168 r27886 11 11 import java.util.Iterator; 12 12 import java.util.Vector; 13 import javax.swing.JLabel;14 13 15 14 public class GTFSCatchCommand extends Command … … 108 107 } 109 108 110 @Override public JLabel getDescription()109 @Override public String getDescriptionText() 111 110 { 112 return new JLabel(tr("Public Transport: Catch GTFS stops"));111 return tr("Public Transport: Catch GTFS stops"); 113 112 } 114 113 }; -
applications/editors/josm/plugins/public_transport/src/public_transport/GTFSDeleteCommand.java
r26168 r27886 10 10 import java.util.Collection; 11 11 import java.util.Vector; 12 import javax.swing.JLabel;13 12 14 13 public class GTFSDeleteCommand extends Command … … 89 88 } 90 89 91 @Override public JLabel getDescription()90 @Override public String getDescriptionText() 92 91 { 93 return new JLabel(tr("Public Transport: Disable GTFS"));92 return tr("Public Transport: Disable GTFS"); 94 93 } 95 94 }; -
applications/editors/josm/plugins/public_transport/src/public_transport/GTFSJoinCommand.java
r26168 r27886 11 11 import java.util.Iterator; 12 12 import java.util.Vector; 13 import javax.swing.JLabel;14 13 15 14 public class GTFSJoinCommand extends Command … … 106 105 } 107 106 108 @Override public JLabel getDescription()107 @Override public String getDescriptionText() 109 108 { 110 return new JLabel(tr("Public Transport: Join GTFS stops"));109 return tr("Public Transport: Join GTFS stops"); 111 110 } 112 111 }; -
applications/editors/josm/plugins/public_transport/src/public_transport/SettingsStoptypeCommand.java
r26168 r27886 11 11 import java.util.Vector; 12 12 import javax.swing.DefaultListModel; 13 import javax.swing.JLabel;14 13 15 14 public class SettingsStoptypeCommand extends Command … … 86 85 } 87 86 88 @Override public JLabel getDescription()87 @Override public String getDescriptionText() 89 88 { 90 return new JLabel(tr("Public Transport: Change stop type"));89 return tr("Public Transport: Change stop type"); 91 90 } 92 91 -
applications/editors/josm/plugins/public_transport/src/public_transport/TrackStoplistAddCommand.java
r26168 r27886 10 10 import java.util.Collection; 11 11 import java.util.Vector; 12 import javax.swing.JLabel;13 12 14 13 public class TrackStoplistAddCommand extends Command … … 43 42 } 44 43 45 @Override public JLabel getDescription()44 @Override public String getDescriptionText() 46 45 { 47 return new JLabel(tr("Public Transport: Add track stop"));46 return tr("Public Transport: Add track stop"); 48 47 } 49 48 }; -
applications/editors/josm/plugins/public_transport/src/public_transport/TrackStoplistDeleteCommand.java
r26168 r27886 10 10 import java.util.Collection; 11 11 import java.util.Vector; 12 import javax.swing.JLabel;13 12 14 13 public class TrackStoplistDeleteCommand extends Command … … 96 95 } 97 96 98 @Override public JLabel getDescription()97 @Override public String getDescriptionText() 99 98 { 100 return new JLabel(tr("Public Transport: Delete track stop"));99 return tr("Public Transport: Delete track stop"); 101 100 } 102 101 }; -
applications/editors/josm/plugins/public_transport/src/public_transport/TrackStoplistDetachCommand.java
r26168 r27886 10 10 import java.util.Collection; 11 11 import java.util.Vector; 12 import javax.swing.JLabel;13 12 14 13 public class TrackStoplistDetachCommand extends Command … … 75 74 } 76 75 77 @Override public JLabel getDescription()76 @Override public String getDescriptionText() 78 77 { 79 return new JLabel(tr("Public Transport: Detach track stop list"));78 return tr("Public Transport: Detach track stop list"); 80 79 } 81 80 }; -
applications/editors/josm/plugins/public_transport/src/public_transport/TrackStoplistNameCommand.java
r26168 r27886 11 11 import java.util.Collection; 12 12 import java.util.Vector; 13 import javax.swing.JLabel;14 13 15 14 public class TrackStoplistNameCommand extends Command … … 97 96 } 98 97 99 @Override public JLabel getDescription()98 @Override public String getDescriptionText() 100 99 { 101 return new JLabel(tr("Public Transport: Edit track stop list"));100 return tr("Public Transport: Edit track stop list"); 102 101 } 103 102 }; -
applications/editors/josm/plugins/public_transport/src/public_transport/TrackStoplistRelocateCommand.java
r26168 r27886 13 13 import java.util.Vector; 14 14 import javax.swing.DefaultListModel; 15 import javax.swing.JLabel;16 15 17 16 public class TrackStoplistRelocateCommand extends Command … … 88 87 } 89 88 90 @Override public JLabel getDescription()89 @Override public String getDescriptionText() 91 90 { 92 return new JLabel(tr("Public Transport: Relocate nodes in track stoplist"));91 return tr("Public Transport: Relocate nodes in track stoplist"); 93 92 } 94 93 }; -
applications/editors/josm/plugins/public_transport/src/public_transport/TrackStoplistSortCommand.java
r26168 r27886 93 93 } 94 94 95 @Override public JLabel getDescription()95 @Override public String getDescriptionText() 96 96 { 97 return new JLabel(tr("Public Transport: sort track stop list"));97 return tr("Public Transport: sort track stop list"); 98 98 } 99 99 -
applications/editors/josm/plugins/public_transport/src/public_transport/TrackSuggestStopsCommand.java
r26168 r27886 8 8 import java.util.Vector; 9 9 import javax.swing.DefaultListModel; 10 import javax.swing.JLabel;11 10 12 11 import org.openstreetmap.josm.Main; … … 202 201 } 203 202 204 @Override public JLabel getDescription()205 { 206 return new JLabel(tr("Public Transport: Suggest stops"));203 @Override public String getDescriptionText() 204 { 205 return tr("Public Transport: Suggest stops"); 207 206 } 208 207 -
applications/editors/josm/plugins/public_transport/src/public_transport/WaypointsDetachCommand.java
r26168 r27886 10 10 import java.util.Collection; 11 11 import java.util.Vector; 12 import javax.swing.JLabel;13 12 14 13 public class WaypointsDetachCommand extends Command … … 75 74 } 76 75 77 @Override public JLabel getDescription()76 @Override public String getDescriptionText() 78 77 { 79 return new JLabel(tr("Public Transport: Detach waypoints"));78 return tr("Public Transport: Detach waypoints"); 80 79 } 81 80 }; -
applications/editors/josm/plugins/public_transport/src/public_transport/WaypointsDisableCommand.java
r26168 r27886 10 10 import java.util.Collection; 11 11 import java.util.Vector; 12 import javax.swing.JLabel;13 12 14 13 public class WaypointsDisableCommand extends Command … … 83 82 } 84 83 85 @Override public JLabel getDescription()84 @Override public String getDescriptionText() 86 85 { 87 return new JLabel(tr("Public Transport: Disable waypoints"));86 return tr("Public Transport: Disable waypoints"); 88 87 } 89 88 }; -
applications/editors/josm/plugins/public_transport/src/public_transport/WaypointsEnableCommand.java
r26168 r27886 10 10 import java.util.Collection; 11 11 import java.util.Vector; 12 import javax.swing.JLabel;13 12 14 13 public class WaypointsEnableCommand extends Command … … 80 79 } 81 80 82 @Override public JLabel getDescription()81 @Override public String getDescriptionText() 83 82 { 84 return new JLabel(tr("Public Transport: Enable waypoints"));83 return tr("Public Transport: Enable waypoints"); 85 84 } 86 85 }; -
applications/editors/josm/plugins/public_transport/src/public_transport/WaypointsNameCommand.java
r26168 r27886 10 10 import java.util.Collection; 11 11 import java.util.Vector; 12 import javax.swing.JLabel;13 12 14 13 public class WaypointsNameCommand extends Command … … 74 73 } 75 74 76 @Override public JLabel getDescription()75 @Override public String getDescriptionText() 77 76 { 78 return new JLabel(tr("Public Transport: Edit waypoint name"));77 return tr("Public Transport: Edit waypoint name"); 79 78 } 80 79 };
Note:
See TracChangeset
for help on using the changeset viewer.