Ignore:
Timestamp:
2009-06-19T21:30:54+02:00 (15 years ago)
Author:
stoecker
Message:

fixed typos

Location:
applications/editors/josm/plugins/cadastre-fr
Files:
1 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/cadastre-fr/build.xml

    r15707 r16007  
    2424                <attribute name="Plugin-Class" value="cadastre_fr.CadastrePlugin"/>
    2525                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    26                 <attribute name="Plugin-Description" value="A special handler for the french land registry WMS server."/>
     26                <attribute name="Plugin-Description" value="A special handler for the French land registry WMS server."/>
    2727                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/FR:JOSM/Fr:Plugin/Cadastre"/>
    2828                <attribute name="Plugin-Mainversion" value="1646"/>
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/CadastreInterface.java

    r15961 r16007  
    5252        if (wmsLayer.name.equals(""))
    5353            return false;
    54         // open the session with the french Cadastre web front end
     54        // open the session with the French Cadastre web front end
    5555        downloadCancelled = false;
    5656        try {
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/CadastrePlugin.java

    r15961 r16007  
    2828/**
    2929 *
    30  * Plugin to access the french Cadastre WMS server at www.cadastre.gouv.fr This
     30 * Plugin to access the French Cadastre WMS server at www.cadastre.gouv.fr This
    3131 * WMS server requires some specific handling like retrieving a cookie for a
    3232 * limitation in case of no activity, or the request to the server shall provide
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/CadastrePreferenceSetting.java

    r15961 r16007  
    5353    public void addGui(final PreferenceDialog gui) {
    5454
    55         String description = tr("A special handler of the french cadastre wms at www.cadastre.gouv.fr" + "<BR><BR>"
    56                 + "Please read the Terms and Conditions of Use here (in french): <br>"
     55        String description = tr("A special handler of the French cadastre wms at www.cadastre.gouv.fr" + "<BR><BR>"
     56                + "Please read the Terms and Conditions of Use here (in French): <br>"
    5757                + "<a href=\"http://www.cadastre.gouv.fr/scpc/html/CU_01_ConditionsGenerales_fr.html\"> "
    5858                + "http://www.cadastre.gouv.fr/scpc/html/CU_01_ConditionsGenerales_fr.html</a> <BR>"
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/MenuActionGrab.java

    r15961 r16007  
    2020
    2121    public MenuActionGrab() {
    22         super(tr(name), "cadastre_small", tr("Download Image from french Cadastre WMS"),
    23                 Shortcut.registerShortcut("cadastre:grab", tr("Cadastre: {0}", tr("Download Image from french Cadastre WMS")),
     22        super(tr(name), "cadastre_small", tr("Download Image from French Cadastre WMS"),
     23                Shortcut.registerShortcut("cadastre:grab", tr("Cadastre: {0}", tr("Download Image from French Cadastre WMS")),
    2424                KeyEvent.VK_F11, Shortcut.GROUP_DIRECT), false);
    2525    }
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/WMSLayer.java

    r15972 r16007  
    3131
    3232/**
    33  * This is a layer that grabs the current screen from the french cadastre WMS
     33 * This is a layer that grabs the current screen from the French cadastre WMS
    3434 * server. The data fetched this way is tiled and managed to the disc to reduce
    3535 * server load.
Note: See TracChangeset for help on using the changeset viewer.