- Timestamp:
- 2010-01-12T07:16:18+01:00 (15 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/Version.java
r2730 r2822 138 138 URL u = Main.class.getResource("/REVISION"); 139 139 if (u == null) { 140 System.err.println(tr("Warning: the revision file ' '/REVISION'' is missing."));140 System.err.println(tr("Warning: the revision file '/REVISION' is missing.")); 141 141 version = 0; 142 142 revision = ""; -
trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java
r2714 r2822 1038 1038 throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null", "other")); 1039 1039 if (other.isNew() ^ isNew()) 1040 throw new DataIntegrityProblemException(tr("Can' 't merge because either of the participating primitives is new and the other is not"));1040 throw new DataIntegrityProblemException(tr("Can't merge because either of the participating primitives is new and the other is not")); 1041 1041 if (! other.isNew() && other.getId() != id) 1042 1042 throw new DataIntegrityProblemException(tr("Can''t merge primitives with different ids. This id is {0}, the other is {1}", id, other.getId())); -
trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/AdvancedChangesetQueryPanel.java
r2801 r2822 940 940 public void fillInQuery(ChangesetQuery query) { 941 941 if (!isValidChangesetQuery()) 942 throw new IllegalStateException(tr("Can' 't restrict the changeset query to a specific bounding box. The input is invalid."));942 throw new IllegalStateException(tr("Can't restrict the changeset query to a specific bounding box. The input is invalid.")); 943 943 query.inBbox(getBoundingBox()); 944 944 } -
trunk/src/org/openstreetmap/josm/gui/preferences/server/ProxyPreferencesPanel.java
r2801 r2822 288 288 289 289 if (pp.equals(ProxyPolicy.USE_SYSTEM_SETTINGS) && ! DefaultProxySelector.willJvmRetrieveSystemProxies()) { 290 System.err.println(tr("Warning: JOSM is configured to use proxies from the system setting, but the JVM is not configured to retrieve them. Resetting preferences to ' 'No proxy''"));290 System.err.println(tr("Warning: JOSM is configured to use proxies from the system setting, but the JVM is not configured to retrieve them. Resetting preferences to 'No proxy'")); 291 291 pp = ProxyPolicy.NO_PROXY; 292 292 rbProxyPolicy.get(pp).setSelected(true); -
trunk/src/org/openstreetmap/josm/io/ChangesetQuery.java
r2789 r2822 359 359 if (k.equals("uid")) { 360 360 if (queryParams.containsKey("display_name")) 361 throw new ChangesetQueryUrlException(tr("Can' 't create a changeset query including both the query parameters ''uid'' and ''display_name''"));361 throw new ChangesetQueryUrlException(tr("Can't create a changeset query including both the query parameters 'uid' and 'display_name'")); 362 362 csQuery.forUser(parseUid(queryParams.get("uid"))); 363 363 } else if (k.equals("display_name")) { 364 364 if (queryParams.containsKey("uid")) 365 throw new ChangesetQueryUrlException(tr("Can' 't create a changeset query including both the query parameters ''uid'' and ''display_name''"));365 throw new ChangesetQueryUrlException(tr("Can't create a changeset query including both the query parameters 'uid' and 'display_name'")); 366 366 csQuery.forUser(queryParams.get("display_name")); 367 367 } else if (k.equals("open")) { -
trunk/src/org/openstreetmap/josm/io/DefaultProxySelector.java
r2801 r2822 150 150 case USE_SYSTEM_SETTINGS: 151 151 if (!JVM_WILL_USE_SYSTEM_PROXIES) { 152 System.err.println(tr("Warning: the JVM is not configured to lookup proxies from the system settings. The property ' 'java.net.useSystemProxies'' was missing at startup time. Won't use a proxy."));152 System.err.println(tr("Warning: the JVM is not configured to lookup proxies from the system settings. The property 'java.net.useSystemProxies' was missing at startup time. Won't use a proxy.")); 153 153 return Collections.singletonList(Proxy.NO_PROXY); 154 154 } -
trunk/src/org/openstreetmap/josm/io/OsmChangesetContentParser.java
r2711 r2822 239 239 || qName.equals("relation")) { 240 240 if (currentModificationType == null) { 241 throwException(tr("Illegal document structure. Found node, way, or relation outside of ' 'create'', ''modify'', or ''delete''."));241 throwException(tr("Illegal document structure. Found node, way, or relation outside of 'create', 'modify', or 'delete'.")); 242 242 } 243 243 data.put(currentPrimitive, currentModificationType);
Note:
See TracChangeset
for help on using the changeset viewer.