Ignore:
Timestamp:
2010-01-13T16:48:10+01:00 (14 years ago)
Author:
framm
Message:

fix messages

Location:
trunk/src/org/openstreetmap/josm/gui
Files:
2 edited

Legend:

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

    r2821 r2839  
    9696                "\tjava -Djosm.home=/home/user/.josm_dev -jar josm.jar\n"+
    9797                "\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"+
    9999                tr("Make sure you load some data if you use --selection.")+"\n"
    100100        );
  • trunk/src/org/openstreetmap/josm/gui/mappaint/MapPaintStyles.java

    r2832 r2839  
    4949        if(i == null)
    5050        {
    51             System.out.println("Mappaint-Style \""+styleName+"\" icon \"" + name + "\" not found.");
     51            System.out.println("Mappaint style \""+styleName+"\" icon \"" + name + "\" not found.");
    5252            i = ImageProvider.getIfAvailable(dirs, "mappaint."+styleName, null, "misc/no_icon.png");
    5353        }
     
    8989                xmlReader.parse(new InputSource(in));
    9090            } 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()));
    9292                e.printStackTrace();
    9393            } 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()));
    9595                e.printStackTrace();
    9696            }
Note: See TracChangeset for help on using the changeset viewer.