Changeset 2927 in josm


Ignore:
Timestamp:
Feb 2, 2010 11:46:54 PM (3 years ago)
Author:
mjulius
Message:

fix #4469 - JOSM typos - patch by andre68

Location:
trunk/src/org/openstreetmap/josm
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorizationUI.java

    r2877 r2927  
    236236        String lbl = tr("Accept Access Token"); 
    237237        msg.setText(tr("<html>" 
    238                 + "You have sucessfully retrieved an OAuth Access Token from the OSM website. " 
     238                + "You have successfully retrieved an OAuth Access Token from the OSM website. " 
    239239                + "Click on <strong>{0}</strong> to accept the token. JOSM will use it in " 
    240240                + "subsequent requests to gain access to the OSM API." 
  • trunk/src/org/openstreetmap/josm/plugins/Plugin.java

    r2830 r2927  
    109109 
    110110    /** 
    111      * Copies the ressource 'from' to the file in the plugin directory named 'to'. 
     111     * Copies the resource 'from' to the file in the plugin directory named 'to'. 
    112112     */ 
    113113    public void copy(String from, String to) throws FileNotFoundException, IOException { 
  • trunk/src/org/openstreetmap/josm/plugins/PluginInformation.java

    r2853 r2927  
    265265     *<li>If not found, look for a jar file in the user specific plugin directory 
    266266     *    (~/.josm/plugins/<plugin name>.jar) 
    267      *<li>If not found and the environment variable JOSM_RESSOURCES + "/plugins/" exist, look there. 
    268      *<li>Try for the java property josm.ressources + "/plugins/" (set via java -Djosm.plugins.path=...) 
     267     *<li>If not found and the environment variable JOSM_RESOURCES + "/plugins/" exist, look there. 
     268     *<li>Try for the java property josm.resources + "/plugins/" (set via java -Djosm.plugins.path=...) 
    269269     *<li>If the environment variable ALLUSERSPROFILE and APPDATA exist, look in 
    270270     *    ALLUSERSPROFILE/<the last stuff from APPDATA>/JOSM/plugins. 
  • trunk/src/org/openstreetmap/josm/tools/ImageProvider.java

    r2889 r2927  
    5757 
    5858    /** 
    59      * Add here all ClassLoader whose ressource should be searched. Plugin's class loaders are added 
     59     * Add here all ClassLoader whose resource should be searched. Plugin's class loaders are added 
    6060     * by main. 
    6161     */ 
     
    202202                } catch (SecurityException e) { 
    203203                    System.out.println(tr( 
    204                             "Warning: failed to acccess directory ''{0}'' for security reasons. Exception was: {1}", 
     204                            "Warning: failed to access directory ''{0}'' for security reasons. Exception was: {1}", 
    205205                            name, e.toString())); 
    206206                } 
     
    216216        } catch (SecurityException e) { 
    217217            System.out.println(tr( 
    218                     "Warning: failed to acccess directory ''{0}'' for security reasons. Exception was: {1}", dir, e 
     218                    "Warning: failed to access directory ''{0}'' for security reasons. Exception was: {1}", dir, e 
    219219                    .toString())); 
    220220        } 
     
    225225            return u; 
    226226 
    227         // Try all other ressource directories 
     227        // Try all other resource directories 
    228228        for (String location : Main.pref.getAllPossiblePreferenceDirs()) { 
    229229            u = getImageUrl(location + "images", imageName); 
Note: See TracChangeset for help on using the changeset viewer.