Changeset 16359 in josm


Ignore:
Timestamp:
2020-04-19T14:55:00+02:00 (4 years ago)
Author:
simon04
Message:

see #18164 - Rename Overpass query wizard in dialogs

Location:
trunk/src/org/openstreetmap/josm/gui/download
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/download/OverpassDownloadSource.java

    r16355 r16359  
    105105
    106106        private static final StringProperty DOWNLOAD_QUERY = new StringProperty("download.overpass.query",
    107                 "/*\n" + tr("Place your Overpass query below or generate one using the Overpass Turbo Query Wizard") + "\n*/");
     107                "/*\n" + tr("Place your Overpass query below or generate one using the query wizard") + "\n*/");
    108108
    109109        private final JosmTextArea overpassQuery;
  • trunk/src/org/openstreetmap/josm/gui/download/OverpassQueryWizardDialog.java

    r16358 r16359  
    4242    public OverpassQueryWizardDialog(OverpassWizardCallbacks callbacks) {
    4343        super(new SearchSetting(), OVERPASS_WIZARD_HISTORY.get(), new PanelOptions(false, true), callbacks.getParent(),
    44                 tr("Overpass Turbo Query Wizard"),
     44                tr("Overpass Query Wizard"),
    4545                tr("Build query"), tr("Build query and execute"), tr("Cancel"));
    4646        this.callbacks = callbacks;
  • trunk/src/org/openstreetmap/josm/gui/download/overpass/OverpassWizardRegistration.java

    r16355 r16359  
    5656        registerWizard(callbacks -> new AbstractAction(tr("Query Wizard")) {
    5757            {
    58                 putValue(SHORT_DESCRIPTION, tr("Build an Overpass query using the Overpass Turbo Query Wizard tool"));
     58                putValue(SHORT_DESCRIPTION, tr("Build an Overpass query using the query wizard"));
    5959                new ImageProvider("dialogs/magic-wand").getResource().attachImageIcon(this, true);
    6060            }
Note: See TracChangeset for help on using the changeset viewer.