Changeset 2833 in josm for trunk/src/org
- Timestamp:
- 2010-01-13T02:12:18+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/io/UploadParameterSummaryPanel.java
r2711 r2833 56 56 msg.append(tr("The changeset is <strong>left open</strong> after this upload")); 57 57 } 58 msg.append(tr(" (<a href=\"urn:changeset-configuration\"> configure changeset</a>)"));58 msg.append(tr(" (<a href=\"urn:changeset-configuration\">" + tr("configure changeset") + "</a>)")); 59 59 return msg.toString(); 60 60 } … … 91 91 msg = tr("Uploading <strong>{0} objects</strong> to <strong>1 changeset</strong> using <strong>{1} requests</strong>", numObjects, numRequests); 92 92 } 93 msg = msg + " (<a href=\"urn:advanced-configuration\"> advanced configuration</a>)";93 msg = msg + " (<a href=\"urn:advanced-configuration\">" + tr("advanced configuration") + "</a>)"; 94 94 } else { 95 95 lblWarning.setVisible(true); … … 99 99 } else if (numRequests > 1){ 100 100 msg = tr("Uploading <strong>{0} objects</strong> to <strong>multiple changesets</strong> using <strong>{1} requests</strong>", numObjects, numRequests); 101 msg = msg + " (<a href=\"urn:advanced-configuration\"> advanced configuration</a>)";101 msg = msg + " (<a href=\"urn:advanced-configuration\">" + tr("advanced configuration") + "</a>)"; 102 102 } 103 103 }
Note:
See TracChangeset
for help on using the changeset viewer.