Ignore:
Timestamp:
2006-07-03T00:31:24+02:00 (19 years ago)
Author:
imi
Message:
  • started i18n
  • started "download incomplete ways" action
  • added straight line selection mode
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/actions/AutoScaleAction.java

    r94 r104  
    11package org.openstreetmap.josm.actions;
     2
     3import static org.openstreetmap.josm.tools.I18n.tr;
    24
    35import java.awt.event.ActionEvent;
     
    3032                private final AutoScaleMode mode;
    3133                public Action(AutoScaleMode mode) {
    32                         super("Auto Scale: "+mode, ImageProvider.get("dialogs/autoscale/"+mode));
    33                         putValue(SHORT_DESCRIPTION, "Auto zoom the view to "+mode+". Disabled if the view is moved.");
     34                        super(tr("Auto Scale"+": "+tr(mode.toString())), ImageProvider.get("dialogs/autoscale/"+mode));
     35                        putValue(SHORT_DESCRIPTION, tr("Auto zoom the view")+tr("(to "+mode+")")+tr(". Disabled if the view is moved."));
    3436                        this.mode = mode;
    3537                }
Note: See TracChangeset for help on using the changeset viewer.