Changeset 2839 in josm
- Timestamp:
- 2010-01-13T16:48:10+01:00 (15 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MainApplication.java
r2821 r2839 96 96 "\tjava -Djosm.home=/home/user/.josm_dev -jar josm.jar\n"+ 97 97 "\tjava -Xmx400m -jar josm.jar\n\n"+ 98 tr("Parameters --download, --downloadgps and --selection are processed in this order.")+"\n"+98 tr("Parameters --download, --downloadgps, and --selection are processed in this order.")+"\n"+ 99 99 tr("Make sure you load some data if you use --selection.")+"\n" 100 100 ); -
trunk/src/org/openstreetmap/josm/gui/mappaint/MapPaintStyles.java
r2832 r2839 49 49 if(i == null) 50 50 { 51 System.out.println("Mappaint -Style \""+styleName+"\" icon \"" + name + "\" not found.");51 System.out.println("Mappaint style \""+styleName+"\" icon \"" + name + "\" not found."); 52 52 i = ImageProvider.getIfAvailable(dirs, "mappaint."+styleName, null, "misc/no_icon.png"); 53 53 } … … 89 89 xmlReader.parse(new InputSource(in)); 90 90 } catch(IOException e) { 91 System.err.println(tr("Warning: failed to load Mappaint -Styles from ''{0}''. Exception was: {1}", a[1], e.toString()));91 System.err.println(tr("Warning: failed to load Mappaint styles from ''{0}''. Exception was: {1}", a[1], e.toString())); 92 92 e.printStackTrace(); 93 93 } catch(SAXException e) { 94 System.err.println(tr("Warning: failed to parse Mappaint -Styles from ''{0}''. Exception was: {1}", a[1], e.toString()));94 System.err.println(tr("Warning: failed to parse Mappaint styles from ''{0}''. Exception was: {1}", a[1], e.toString())); 95 95 e.printStackTrace(); 96 96 }
Note:
See TracChangeset
for help on using the changeset viewer.