Ignore:
Timestamp:
2011-03-20T01:29:48+01:00 (13 years ago)
Author:
mjulius
Message:

fix #3590 - Primitives or objects: Pick one

Location:
trunk/src/org/openstreetmap/josm/actions
Files:
5 edited

Legend:

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

    r3443 r3995  
    4242        String ret =  pattern.matcher(baseUrl).replaceAll("/browse");
    4343        if (ret.equals(baseUrl)) {
    44             System.out.println(tr("WARNING: unexpected format of API base URL. Redirection to info or history page for OSM primitive will probably fail. API base URL is: ''{0}''",baseUrl));
     44            System.out.println(tr("WARNING: unexpected format of API base URL. Redirection to info or history page for OSM object will probably fail. API base URL is: ''{0}''",baseUrl));
    4545        }
    4646        if (ret.startsWith("http://api.openstreetmap.org/")) {
  • trunk/src/org/openstreetmap/josm/actions/DownloadReferrersAction.java

    r3757 r3995  
    2727
    2828    public DownloadReferrersAction() {
    29         super(tr("Download parent ways/relations..."), "downloadreferrers", tr("Download primitives referring to one of the selected primitives"),
     29        super(tr("Download parent ways/relations..."), "downloadreferrers", tr("Download objects referring to one of the selected objects"),
    3030                Shortcut.registerShortcut("file:downloadreferrers", tr("File: {0}", tr("Download parent ways/relations...")), KeyEvent.VK_D, Shortcut.GROUPS_ALT2+Shortcut.GROUP_HOTKEY), true);
    3131        putValue("help", ht("/Action/DownloadReferrers"));
  • trunk/src/org/openstreetmap/josm/actions/MergeSelectionAction.java

    r3754 r3995  
    2020public class MergeSelectionAction extends AbstractMergeAction {
    2121    public MergeSelectionAction() {
    22         super(tr("Merge selection"), "dialogs/mergedown", tr("Merge the currently selected primitives into another layer"), Shortcut
     22        super(tr("Merge selection"), "dialogs/mergedown", tr("Merge the currently selected objects into another layer"), Shortcut
    2323                .registerShortcut("system:mergeselection", tr("Edit: {0}", tr("Merge selection")), KeyEvent.VK_M, Shortcut.GROUP_MENU, Shortcut.SHIFT_DEFAULT),
    2424                true /* register */
  • trunk/src/org/openstreetmap/josm/actions/PasteAction.java

    r3384 r3995  
    2020import org.openstreetmap.josm.data.osm.PrimitiveData;
    2121import org.openstreetmap.josm.data.osm.PrimitiveDeepCopy;
     22import org.openstreetmap.josm.data.osm.PrimitiveDeepCopy.PasteBufferChangedListener;
    2223import org.openstreetmap.josm.data.osm.RelationData;
    2324import org.openstreetmap.josm.data.osm.RelationMemberData;
    2425import org.openstreetmap.josm.data.osm.WayData;
    25 import org.openstreetmap.josm.data.osm.PrimitiveDeepCopy.PasteBufferChangedListener;
    2626import org.openstreetmap.josm.gui.ExtendedDialog;
    2727import org.openstreetmap.josm.gui.layer.Layer;
     
    154154                new String[] {tr("Paste without incomplete members"), tr("Cancel")});
    155155        ed.setButtonIcons(new String[] {"dialogs/relation/deletemembers.png", "cancel.png"});
    156         ed.setContent(tr("The copied data contains incomplete primitives.  "
    157                 + "When pasting the incomplete primitives are removed.  "
    158                 + "Do you want to paste the data without the incomplete primitives?"));
     156        ed.setContent(tr("The copied data contains incomplete objects.  "
     157                + "When pasting the incomplete objects are removed.  "
     158                + "Do you want to paste the data without the incomplete objects?"));
    159159        ed.showDialog();
    160160        return ed.getValue() == 1;
  • trunk/src/org/openstreetmap/josm/actions/PasteTagsAction.java

    r3640 r3995  
    254254        if (!commands.isEmpty()) {
    255255            String title1 = trn("Pasting {0} tag", "Pasting {0} tags", commands.size(), commands.size());
    256             String title2 = trn("to {0} primitive", "to {0} primtives", selection.size(), selection.size());
     256            String title2 = trn("to {0} object", "to {0} objects", selection.size(), selection.size());
    257257            Main.main.undoRedo.add(
    258258                    new SequenceCommand(
Note: See TracChangeset for help on using the changeset viewer.