Changeset 31918 in osm for applications/editors


Ignore:
Timestamp:
2016-01-02T23:07:25+01:00 (9 years ago)
Author:
stoecker
Message:

make shortcuts parseable by our extractor script

Location:
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/actions
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/actions/MapillaryImportAction.java

    r31909 r31918  
    4343        MapillaryPlugin.getProvider("icon24.png"),
    4444        tr("Import local pictures"),
    45         Shortcut.registerShortcut(
    46             "Import Mapillary",
    47             tr("Import pictures into Mapillary layer"),
    48             KeyEvent.CHAR_UNDEFINED,
    49             Shortcut.NONE
    50         ),
     45        Shortcut.registerShortcut("Import Mapillary", tr("Import pictures into Mapillary layer"),
     46            KeyEvent.CHAR_UNDEFINED, Shortcut.NONE),
    5147        false,
    5248        "mapillaryImport",
  • applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/actions/MapillaryImportIntoSequenceAction.java

    r31909 r31918  
    4646  public MapillaryImportIntoSequenceAction() {
    4747    super(tr("Import pictures into sequence"), MapillaryPlugin
    48         .getProvider("icon24.png"), tr("Import local pictures"), Shortcut
    49         .registerShortcut("Import Mapillary Sequence",
    50             tr("Import pictures into Mapillary layer in a sequence"),
     48        .getProvider("icon24.png"), tr("Import local pictures"),
     49        Shortcut.registerShortcut("Import Mapillary Sequence", tr("Import pictures into Mapillary layer in a sequence"),
    5150            KeyEvent.CHAR_UNDEFINED, Shortcut.NONE), false,
    5251        "mapillaryImportSequence", false);
  • applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/actions/MapillaryZoomAction.java

    r31799 r31918  
    3131  public MapillaryZoomAction() {
    3232    super(tr("Zoom to selected image"), MapillaryPlugin
    33         .getProvider("icon24.png"), tr("Zoom to selected image"), Shortcut
    34         .registerShortcut("Zoom Mapillary",
    35             tr("Zoom to the currently selected Mapillary image"),
     33        .getProvider("icon24.png"), tr("Zoom to selected image"),
     34        Shortcut.registerShortcut("Zoom Mapillary", tr("Zoom to the currently selected Mapillary image"),
    3635            KeyEvent.CHAR_UNDEFINED, Shortcut.NONE), false, "mapillaryZoom",
    3736        false);
Note: See TracChangeset for help on using the changeset viewer.