Ignore:
Timestamp:
2008-12-31T00:36:58+01:00 (15 years ago)
Author:
stoecker
Message:

fixed relation handling, applied language patches

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/markerlayer/PlayHeadMarker.java

    r1169 r1195  
    201201        if (ca == null) {
    202202            /* Not close enough to track, or no audio marker found for some other reason */
    203             JOptionPane.showMessageDialog(Main.parent, tr("You need to Drag the play head near to the GPX track whose associated sound track you were playing."));
     203            JOptionPane.showMessageDialog(Main.parent, tr("You need to drag the play head near to the GPX track whose associated sound track you were playing."));
    204204            endDrag(true);
    205205        } else {
     
    249249            WayPoint cw = recent.parentLayer.fromLayer.nearestPointOnTrack(en, enPlus25px.east() - en.east());
    250250            if (cw == null) {
    251                 JOptionPane.showMessageDialog(Main.parent, tr("You need to SHIFT-Drag the play head onto an audio marker or onto the track point where you want to synchronize."));
     251                JOptionPane.showMessageDialog(Main.parent, tr("You need to SHIFT-drag the play head onto an audio marker or onto the track point where you want to synchronize."));
    252252                endDrag(true);
    253253                return;
     
    259259        if(ca == null)
    260260        {
    261             JOptionPane.showMessageDialog(Main.parent,tr("Unable to create new Audio marker."));
     261            JOptionPane.showMessageDialog(Main.parent,tr("Unable to create new audio marker."));
    262262            endDrag(true);
    263263        }
Note: See TracChangeset for help on using the changeset viewer.