diff --git a/src/org/openstreetmap/josm/gui/MainApplication.java b/src/org/openstreetmap/josm/gui/MainApplication.java
index 42602e9..e232296 100644
|
a
|
b
|
public class MainApplication extends Main {
|
| 75 | 75 | "\t--geometry=widthxheight(+|-)x(+|-)y "+tr("Standard unix geometry argument")+"\n"+ |
| 76 | 76 | "\t[--download=]minlat,minlon,maxlat,maxlon "+tr("Download the bounding box")+"\n"+ |
| 77 | 77 | "\t[--download=]<url> "+tr("Download the location at the url (with lat=x&lon=y&zoom=z)")+"\n"+ |
| 78 | | "\t[--download=]<filename> "+tr("Open file (as raw gps, if .gpx)")+"\n"+ |
| | 78 | "\t[--download=]<filename> "+tr("Open a file (any file type that can be opened with File/Open)")+"\n"+ |
| 79 | 79 | "\t--downloadgps=minlat,minlon,maxlat,maxlon "+tr("Download the bounding box as raw gps")+"\n"+ |
| 80 | 80 | "\t--selection=<searchstring> "+tr("Select with the given search")+"\n"+ |
| 81 | 81 | "\t--[no-]maximize "+tr("Launch in maximized mode")+"\n"+ |
| 82 | 82 | "\t--reset-preferences "+tr("Reset the preferences to default")+"\n\n"+ |
| 83 | | "\t--language=<language> "+tr("Set the language.")+"\n\n"+ |
| | 83 | "\t--language=<language> "+tr("Set the language")+"\n\n"+ |
| 84 | 84 | tr("options provided as Java system properties")+":\n"+ |
| 85 | 85 | "\t-Djosm.home="+tr("/PATH/TO/JOSM/FOLDER/ ")+tr("Change the folder for all user settings")+"\n\n"+ |
| 86 | 86 | tr("note: For some tasks, JOSM needs a lot of memory. It can be necessary to add the following\n" + |
| 87 | | " Java option to increase the maximum size of allocated memory")+":\n"+ |
| | 87 | " Java option to specify the maximum size of allocated memory in megabytes")+":\n"+ |
| 88 | 88 | "\t-Xmx...m\n\n"+ |
| 89 | 89 | tr("examples")+":\n"+ |
| 90 | 90 | "\tjava -jar josm.jar track1.gpx track2.gpx london.osm\n"+ |
| … |
… |
public class MainApplication extends Main {
|
| 94 | 94 | "\tjava -Djosm.home=/home/user/.josm_dev -jar josm.jar\n"+ |
| 95 | 95 | "\tjava -Xmx400m -jar josm.jar\n\n"+ |
| 96 | 96 | tr("Parameters are read in the order they are specified, so make sure you load\n"+ |
| 97 | | "some data before --selection")+"\n\n"+ |
| 98 | | tr("Instead of --download=<bbox> you may specify osm://<bbox>\n")); |
| | 97 | "some data before --selection")+"\n"); |
| 99 | 98 | } |
| 100 | 99 | |
| 101 | 100 | /** |