Changeset 12707 in osm


Ignore:
Timestamp:
2008-12-31T00:38:51+01:00 (16 years ago)
Author:
stoecker
Message:

fixed text strings, thanks to Andrew Gee

Location:
applications/editors/josm/plugins
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/DirectUpload/src/org/openstreetmap/josm/plugins/DirectUpload/UploadDataGui.java

    r12601 r12707  
    254254                !(Main.map.mapView.getActiveLayer() instanceof GpxLayer)){
    255255                JOptionPane.showMessageDialog(Main.parent,
    256                 tr("No GpxLayer selected. Cannot upload a trace.")
     256                tr("No GPX layer selected. Cannot upload a trace.")
    257257                );
    258258                return;
  • applications/editors/josm/plugins/agpifoj/src/org/openstreetmap/josm/plugins/agpifoj/CorrelateGpxWithImages.java

    r10525 r12707  
    441441        panelCb.add(cbGpx);
    442442       
    443         JButton buttonOpen = new JButton(tr("Open an other GPXtrace"));
     443        JButton buttonOpen = new JButton(tr("Open another GPX trace"));
    444444        buttonOpen.setIcon(ImageProvider.get("agpifoj-open"));
    445445        buttonOpen.addActionListener(new LoadGpxDataActionListener());
  • applications/editors/josm/plugins/globalsat/src/org/openstreetmap/josm/plugins/globalsat/GlobalsatPlugin.java

    r12588 r12707  
    110110        public GlobalsatImportAction(){
    111111            super(tr("Globalsat Import"), "globalsatImport",
    112             tr("Import Data from Globalsat Datalogger DG100 into GPXLayer."),
     112            tr("Import Data from Globalsat Datalogger DG100 into GPX layer."),
    113113            Shortcut.registerShortcut("menu:globalsatimport", tr("Menu: {0}", tr("Globalsat Import")),
    114114            KeyEvent.VK_I, Shortcut.GROUP_MENU), false);
  • applications/editors/josm/plugins/navigator/src/at/dallermassl/josm/plugin/navigator/NavigatorModeAction.java

    r3865 r12707  
    2626   
    2727    public NavigatorModeAction(MapFrame mapFrame, NavigatorModel navigatorModel, NavigatorLayer navigationLayer) {
    28         super(tr("Navigator"), "navigation", tr("Set start/end for autorouting. Middle Mouse button to reset."), KeyEvent.VK_F, mapFrame, ImageProvider.getCursor("crosshair", "selection"));
     28        super(tr("Navigator"), "navigation", tr("Set start/end for routing. Middle mouse button to reset."), KeyEvent.VK_F, mapFrame, ImageProvider.getCursor("crosshair", "selection"));
    2929        this.navigatorModel = navigatorModel;
    3030        this.navigatorLayer = navigationLayer;
  • applications/editors/josm/plugins/pluginmanager/src/at/dallermassl/josm/plugin/pluginmanager/PluginManagerPreference.java

    r12588 r12707  
    9090        addSite.addActionListener(new ActionListener(){
    9191            public void actionPerformed(ActionEvent e) {
    92                 String siteUrl = JOptionPane.showInputDialog(Main.parent, tr("Update Site Url"));
     92                String siteUrl = JOptionPane.showInputDialog(Main.parent, tr("Update Site URL"));
    9393                if (siteUrl == null)
    9494                    return;
     
    101101                  siteListModel.addElement(site);
    102102                } catch(MalformedURLException mue) {
    103                     JOptionPane.showMessageDialog(Main.parent, tr("Invalid Url"), tr("Error"), JOptionPane.ERROR_MESSAGE);
     103                    JOptionPane.showMessageDialog(Main.parent, tr("Invalid URL"), tr("Error"), JOptionPane.ERROR_MESSAGE);
    104104                    return;
    105105                }
  • applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/SimplifyWayAction.java

    r12677 r12707  
    6262                        if (!isInsideOneBoundingBox) {
    6363                            int option = JOptionPane.showConfirmDialog(Main.parent,
    64                                     tr("The selected way(s) have nodes outside of the downloaded data region."
    65                                             + "This can lead to nodes beeing deleted accidentially.\n"
     64                                    tr("The selected way(s) have nodes outside of the downloaded data region.\n"
     65                                            + "This can lead to nodes being deleted accidentally.\n"
    6666                                            + "Are you really sure to continue?"),
    6767                                    tr("Please abort if you are not sure"), JOptionPane.YES_NO_CANCEL_OPTION,
  • applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/TagChecker.java

    r11530 r12707  
    479479                Sources.setVisibleRowCount(3);
    480480
    481                 Sources.setToolTipText(tr("The sources (url or filename) of spell check (see http://wiki.openstreetmap.org/index.php/User:JLS/speller) or tag checking data files."));
     481                Sources.setToolTipText(tr("The sources (URL or filename) of spell check (see http://wiki.openstreetmap.org/index.php/User:JLS/speller) or tag checking data files."));
    482482                addSrcButton.setToolTipText(tr("Add a new source to the list."));
    483483                editSrcButton.setToolTipText(tr("Edit the selected source."));
  • applications/editors/josm/plugins/wmsplugin/sources.cfg

    r12427 r12707  
    1717# only for Germany
    1818false;Oberpfalz Geofabrik.de;http://oberpfalz.geofabrik.de/wms4josm?
    19 false;Strassen NRW Geofabrik.de;http://tools.geofabrik.de/osmi/view/strassennrw/josmwms
     19false;Streets NRW Geofabrik.de;http://tools.geofabrik.de/osmi/view/strassennrw/josmwms
  • applications/editors/josm/plugins/wmsplugin/src/wmsplugin/Help_WMSmenuAction.java

    r12187 r12707  
    3838                        "format=image/jpeg \n\n"+
    3939                       
    40                         "For Metacartas Map Rectifier http://labs.metacarta.com/rectifier/ , you only need to input the relevant 'id'.\n" +
    41                         "To add a Metacarta Map Rectifer menu item, manually create the url like in this example," +
     40                        "For Metacarta's Map Rectifier http://labs.metacarta.com/rectifier/ , you only need to input the relevant 'id'.\n" +
     41                        "To add a Metacarta Map Rectifier menu item, manually create the URL like in this example," +
    4242                        "replacing 73 with your image id: \n" +
    4343                        "http://labs.metacarta.com/rectifier/wms.cgi?id=73\n" +
  • applications/editors/josm/plugins/wmsplugin/src/wmsplugin/Map_Rectifier_WMSmenuAction.java

    r12444 r12707  
    1818
    1919        public Map_Rectifier_WMSmenuAction() {
    20                 super(tr("Rectified Image ..."), "OLmarker", tr("Download Rectified Image from Metacarta's Map Rectifer WMS"), null, false);
     20                super(tr("Rectified Image ..."), "OLmarker", tr("Download Rectified Image from Metacarta's Map Rectifier WMS"), null, false);
    2121        }
    2222
  • applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSLayer.java

    r12438 r12707  
    108108        @Override public String getToolTipText() {
    109109                if(startstop.isSelected())
    110                         return tr("WMS layer ({0}), automaticaly downloading in zoom {1}", name, resolution);
     110                        return tr("WMS layer ({0}), automatically downloading in zoom {1}", name, resolution);
    111111                else
    112112                        return tr("WMS layer ({0}), downloading in zoom {1}", name, resolution);
Note: See TracChangeset for help on using the changeset viewer.