Ignore:
Timestamp:
2011-06-25T19:02:31+02:00 (13 years ago)
Author:
stoecker
Message:

i18n update, split plugin and core translation

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  
    55 */
    66package wmsturbochallenge;
     7
     8import static org.openstreetmap.josm.tools.I18n.tr;
    79
    810import java.awt.Color;
     
    3941public class GameWindow extends JFrame implements ActionListener {
    4042    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"));
    4244        setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
    4345        setUndecorated(true);
  • applications/editors/josm/plugins/wms-turbo-challenge2/src/wmsturbochallenge/WMSRacer.java

    r23190 r26174  
    55 */
    66package wmsturbochallenge;
     7
     8import static org.openstreetmap.josm.tools.I18n.tr;
    79
    810import org.openstreetmap.josm.gui.layer.Layer;
     
    3840
    3941        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"),
    4244                    null, true);
    4345            setEnabled(false);
Note: See TracChangeset for help on using the changeset viewer.