Ignore:
Timestamp:
2011-08-11T00:45:56+02:00 (14 years ago)
Author:
stoecker
Message:

i18n fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/CadastreInterface.java

    r26228 r26509  
    2626
    2727public class CadastreInterface {
    28     public boolean downloadCancelled = false;
     28    public boolean downloadCanceled = false;
    2929    public HttpURLConnection urlConn = null;
    3030
     
    7676            interfaceRef = null;
    7777        // open the session with the French Cadastre web front end
    78         downloadCancelled = false;
     78        downloadCanceled = false;
    7979        try {
    8080            if (cookie == null || isCookieExpired) {
     
    306306                    // list of values parsed in listOfFeuilles (list all non-georeferenced images)
    307307                    lines = getFeuillesList();
    308                     if (!downloadCancelled) {
     308                    if (!downloadCanceled) {
    309309                        parseFeuillesList(lines);
    310310                        if (listOfFeuilles.size() > 0) {
     
    567567            //urlConn.disconnect();
    568568        }
    569         downloadCancelled = true;
     569        downloadCanceled = true;
    570570        lastWMSLayerName = null;
    571571    }
Note: See TracChangeset for help on using the changeset viewer.