Changeset 2927 in josm
- Timestamp:
- 2010-02-02T23:46:54+01:00 (15 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorizationUI.java
r2877 r2927 236 236 String lbl = tr("Accept Access Token"); 237 237 msg.setText(tr("<html>" 238 + "You have suc essfully retrieved an OAuth Access Token from the OSM website. "238 + "You have successfully retrieved an OAuth Access Token from the OSM website. " 239 239 + "Click on <strong>{0}</strong> to accept the token. JOSM will use it in " 240 240 + "subsequent requests to gain access to the OSM API." -
trunk/src/org/openstreetmap/josm/plugins/Plugin.java
r2830 r2927 109 109 110 110 /** 111 * Copies the res source 'from' to the file in the plugin directory named 'to'.111 * Copies the resource 'from' to the file in the plugin directory named 'to'. 112 112 */ 113 113 public void copy(String from, String to) throws FileNotFoundException, IOException { -
trunk/src/org/openstreetmap/josm/plugins/PluginInformation.java
r2853 r2927 265 265 *<li>If not found, look for a jar file in the user specific plugin directory 266 266 * (~/.josm/plugins/<plugin name>.jar) 267 *<li>If not found and the environment variable JOSM_RES SOURCES + "/plugins/" exist, look there.268 *<li>Try for the java property josm.res sources + "/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=...) 269 269 *<li>If the environment variable ALLUSERSPROFILE and APPDATA exist, look in 270 270 * ALLUSERSPROFILE/<the last stuff from APPDATA>/JOSM/plugins. -
trunk/src/org/openstreetmap/josm/tools/ImageProvider.java
r2889 r2927 57 57 58 58 /** 59 * Add here all ClassLoader whose res source should be searched. Plugin's class loaders are added59 * Add here all ClassLoader whose resource should be searched. Plugin's class loaders are added 60 60 * by main. 61 61 */ … … 202 202 } catch (SecurityException e) { 203 203 System.out.println(tr( 204 "Warning: failed to acc cess directory ''{0}'' for security reasons. Exception was: {1}",204 "Warning: failed to access directory ''{0}'' for security reasons. Exception was: {1}", 205 205 name, e.toString())); 206 206 } … … 216 216 } catch (SecurityException e) { 217 217 System.out.println(tr( 218 "Warning: failed to acc cess directory ''{0}'' for security reasons. Exception was: {1}", dir, e218 "Warning: failed to access directory ''{0}'' for security reasons. Exception was: {1}", dir, e 219 219 .toString())); 220 220 } … … 225 225 return u; 226 226 227 // Try all other res source directories227 // Try all other resource directories 228 228 for (String location : Main.pref.getAllPossiblePreferenceDirs()) { 229 229 u = getImageUrl(location + "images", imageName);
Note:
See TracChangeset
for help on using the changeset viewer.