Changeset 26174 in osm for applications/editors/josm/plugins/wms-turbo-challenge2/src/wmsturbochallenge
- Timestamp:
- 2011-06-25T19:02:31+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/wms-turbo-challenge2/src/wmsturbochallenge
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/wms-turbo-challenge2/src/wmsturbochallenge/GameWindow.java
r24999 r26174 5 5 */ 6 6 package wmsturbochallenge; 7 8 import static org.openstreetmap.josm.tools.I18n.tr; 7 9 8 10 import java.awt.Color; … … 39 41 public class GameWindow extends JFrame implements ActionListener { 40 42 public GameWindow(Layer ground) { 41 setTitle("The Ultimate WMS Super-speed Turbo Challenge II"); 43 setTitle(tr("The Ultimate WMS Super-speed Turbo Challenge II")); 42 44 setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); 43 45 setUndecorated(true); -
applications/editors/josm/plugins/wms-turbo-challenge2/src/wmsturbochallenge/WMSRacer.java
r23190 r26174 5 5 */ 6 6 package wmsturbochallenge; 7 8 import static org.openstreetmap.josm.tools.I18n.tr; 7 9 8 10 import org.openstreetmap.josm.gui.layer.Layer; … … 38 40 39 41 public DriveAction() { 40 super("Go driving", "wmsracer", 41 "Drive a race car on this layer", 42 super(tr("Go driving"), "wmsracer", 43 tr("Drive a race car on this layer"), 42 44 null, true); 43 45 setEnabled(false);
Note:
See TracChangeset
for help on using the changeset viewer.