- Timestamp:
- 2025-01-28T13:52:14+01:00 (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/mapmode/ParallelWayAction.java
r19227 r19296 199 199 // TODO: dynamic messages based on preferences. (Could be problematic translation wise) 200 200 switch (mode) { 201 caseNORMAL:201 if (mode == NORMAL) { 202 202 // CHECKSTYLE.OFF: LineLength 203 203 return tr("Select ways as in Select mode. Drag selected ways or a single way to create a parallel copy (Alt toggles tag preservation)"); 204 204 // CHECKSTYLE.ON: LineLength 205 caseDRAGGING:205 } else { // mode == DRAGGING 206 206 return tr("Hold Ctrl to toggle snapping"); 207 207 } 208 return ""; // impossible ..209 208 } 210 209
Note:
See TracChangeset
for help on using the changeset viewer.