Changeset 29547 in osm


Ignore:
Timestamp:
2013-04-30T23:17:36+02:00 (11 years ago)
Author:
stoecker
Message:

i18n fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/OsmInspectorPlugin/src/org/openstreetmap/josm/plugins/osminspector/gui/OsmInspectorDialog.java

    r29448 r29547  
    118118                this.add(scroll);
    119119
    120                 Shortcut sprev = Shortcut.registerShortcut("prev", "Prev OSMI bug",
     120                Shortcut sprev = Shortcut.registerShortcut("osmi:prev", tr("Prev OSMI bug"),
    121121                                KeyEvent.VK_J, Shortcut.CTRL_SHIFT);
    122122                Main.registerActionShortcut(actPrev, sprev);
    123123
    124                 Shortcut snext = Shortcut.registerShortcut("next", "Next OSMI bug",
     124                Shortcut snext = Shortcut.registerShortcut("osmi:next", tr("Next OSMI bug"),
    125125                                KeyEvent.VK_K, Shortcut.CTRL_SHIFT);
    126126                Main.registerActionShortcut(actNext, snext);
     
    141141
    142142                super(tr("Osm Inspector Bugs"), "selectionlist",
    143                                 tr("Open a OSM Inspector selection list window."), Shortcut.registerShortcut("subwindow:selection",
    144                                                                 tr("Toggle: {0}", tr("Current Selection")),
     143                                tr("Open a OSM Inspector selection list window."), Shortcut.registerShortcut("subwindow:osminspector",
     144                                                                tr("Toggle: {0}", tr("OSM Inspector Bugs")),
    145145                                                                KeyEvent.VK_W, Shortcut.ALT_SHIFT), 150, // default
    146146                                                                                                                                                        // height
     
    150150                buildContentPanel();
    151151                bugInfoDialog = new OsmInspectorBugInfoDialog(layer);
    152                 bugInfoDialog.setTitle("Selected Bug Info");
     152                bugInfoDialog.setTitle(tr("Selected Bug Info"));
    153153        }
    154154
Note: See TracChangeset for help on using the changeset viewer.