Ticket #3339: dirupl.patch
| File dirupl.patch, 1.1 KB (added by , 17 years ago) |
|---|
-
src/org/openstreetmap/josm/plugins/DirectUpload/UploadDataGui.java
101 101 JLabel descriptionLabel = new JLabel(tr("Description")); 102 102 descriptionField.setToolTipText(tr("Please enter Description about your trace.")); 103 103 104 JLabel tagsLabel = new JLabel(tr("Tags "));104 JLabel tagsLabel = new JLabel(tr("Tags (comma delimited)")); 105 105 tagsField.setToolTipText(tr("Please enter tags about your trace.")); 106 106 107 107 JPanel p = new JPanel(new GridBagLayout()); … … 167 167 168 168 // Clean description/tags from disallowed chars 169 169 description = description.replaceAll("[&?/\\\\]"," "); 170 tags = tags.replaceAll("[&?/\\\\. ,;]"," ");170 tags = tags.replaceAll("[&?/\\\\.;]"," "); 171 171 172 172 // Set progress dialog to indeterminate while connecting 173 173 progressMonitor.indeterminateSubTask(tr("Connecting..."));
