Ignore:
Timestamp:
2008-12-31T00:36:58+01:00 (15 years ago)
Author:
stoecker
Message:

fixed relation handling, applied language patches

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

Legend:

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

    r1169 r1195  
    4646     */
    4747    public OpenLocationAction() {
    48         super(tr("Open Location..."), "openlocation", tr("Open a URL."),
     48        super(tr("Open Location..."), "openlocation", tr("Open an URL."),
    4949        Shortcut.registerShortcut("system:open_location", tr("File: {0}", tr("Open Location...")), KeyEvent.VK_L, Shortcut.GROUP_MENU), true);
    5050    }
  • trunk/src/org/openstreetmap/josm/actions/OrthogonalizeAction.java

    r1169 r1195  
    4141        super(tr("Orthogonalize shape"),
    4242            "ortho",
    43             tr("Move nodes so all angles are 90 or 270deg"),
     43            tr("Move nodes so all angles are 90 or 270 degree"),
    4444            Shortcut.registerShortcut("tools:orthogonalize", tr("Tool: {0}", tr("Orthogonalize")),
    4545            KeyEvent.VK_Q,
     
    7373            Way way = (Way)osm;
    7474            if ((way.nodes.size() < 5) || (!way.nodes.get(0).equals(way.nodes.get(way.nodes.size() - 1)))) {
    75                 JOptionPane.showMessageDialog(Main.parent, tr("Please select closed way(s) of at least four nodes."));
     75                JOptionPane.showMessageDialog(Main.parent, tr("Please select one ore more closed ways of at least four nodes."));
    7676                return;
    7777            }
  • trunk/src/org/openstreetmap/josm/actions/UnGlueAction.java

    r1169 r1195  
    8686            if (tmpNodes.size() < 1) {
    8787                if (selection.size() > 1) {
    88                     JOptionPane.showMessageDialog(Main.parent, tr("None of these nodes is glued to anything else."));
     88                    JOptionPane.showMessageDialog(Main.parent, tr("None of these nodes are glued to anything else."));
    8989                } else {
    90                     JOptionPane.showMessageDialog(Main.parent, tr("None of this way's nodes is glued to anything else."));
     90                    JOptionPane.showMessageDialog(Main.parent, tr("None of this way's nodes are glued to anything else."));
    9191                }
    9292            } else {
  • trunk/src/org/openstreetmap/josm/actions/mapmode/ZoomAction.java

    r1169 r1195  
    7575
    7676    @Override public String getModeHelpText() {
    77         return tr("Zoom by dragging or Ctrl+. or Ctrl+,; move with Ctrl+up,left,down,right; move zoom with right button");
     77        return tr("Zoom by dragging or Ctrl+. or Ctrl+,; move with Ctrl+up, left, down, right; move zoom with right button");
    7878    }
    7979}
  • trunk/src/org/openstreetmap/josm/actions/search/SelectionWebsiteLoader.java

    r1169 r1195  
    5555        } catch (IOException e) {
    5656            e.printStackTrace();
    57             JOptionPane.showMessageDialog(Main.parent, tr("Could not read from url: \"{0}\"",url));
     57            JOptionPane.showMessageDialog(Main.parent, tr("Could not read from URL: \"{0}\"",url));
    5858        } catch (SAXException e) {
    5959            e.printStackTrace();
    60             JOptionPane.showMessageDialog(Main.parent,tr("Parsing error in url: \"{0}\"",url));
     60            JOptionPane.showMessageDialog(Main.parent,tr("Parsing error in URL: \"{0}\"",url));
    6161        }
    6262    }
Note: See TracChangeset for help on using the changeset viewer.