Changeset 2849 in josm for trunk/src/org
- Timestamp:
- 2010-01-13T20:14:22+01:00 (15 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/preferences
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/preferences/DrawingPreference.java
r2745 r2849 102 102 // drawRawGpsMaxLineLengthLocal 103 103 drawRawGpsMaxLineLengthLocal.setText(Integer.toString(Main.pref.getInteger("draw.rawgps.max-line-length.local", -1))); 104 drawRawGpsMaxLineLengthLocal.setToolTipText(tr("Maximum length (in meters) to draw lines for local files. Set to ' -1' to draw all lines."));104 drawRawGpsMaxLineLengthLocal.setToolTipText(tr("Maximum length (in meters) to draw lines for local files. Set to ''-1'' to draw all lines.")); 105 105 drawRawGpsMaxLineLengthLocal.setEnabled(!drawRawGpsLinesNone.isSelected()); 106 106 panel.add(new JLabel(tr("Maximum length for local files (meters)")), GBC.std().insets(40,0,0,0)); … … 109 109 // drawRawGpsMaxLineLength 110 110 drawRawGpsMaxLineLength.setText(Integer.toString(Main.pref.getInteger("draw.rawgps.max-line-length", 200))); 111 drawRawGpsMaxLineLength.setToolTipText(tr("Maximum length (in meters) to draw lines. Set to ' -1' to draw all lines."));111 drawRawGpsMaxLineLength.setToolTipText(tr("Maximum length (in meters) to draw lines. Set to ''-1'' to draw all lines.")); 112 112 drawRawGpsMaxLineLength.setEnabled(!drawRawGpsLinesNone.isSelected()); 113 113 panel.add(new JLabel(tr("Maximum length (meters)")), GBC.std().insets(40,0,0,0)); … … 139 139 140 140 // drawGpsArrowsMinDist 141 drawGpsArrowsMinDist.setToolTipText(tr("Do n't draw arrows if they are not at least this distance away from the last one."));141 drawGpsArrowsMinDist.setToolTipText(tr("Do not draw arrows if they are not at least this distance away from the last one.")); 142 142 drawGpsArrowsMinDist.setText(Integer.toString(Main.pref.getInteger("draw.rawgps.min-arrow-distance", 0))); 143 143 drawGpsArrowsMinDist.setEnabled(drawGpsArrows.isSelected() && drawGpsArrows.isEnabled()); -
trunk/src/org/openstreetmap/josm/gui/preferences/PrefJPanel.java
r2789 r2849 181 181 +"conflict. If all alternatives would result in shortcuts that are already taken, it will assign a random shortcut " 182 182 +"instead.</p>")+ 183 tr("<p>The pseudo-modifier ' disabled' will disable the shortcut when encountered.</p>")183 tr("<p>The pseudo-modifier ''disabled'' will disable the shortcut when encountered.</p>") 184 184 ); 185 185 editor.setCaretPosition(0); // scroll up -
trunk/src/org/openstreetmap/josm/gui/preferences/server/ApiUrlTestTask.java
r2801 r2849 59 59 parent, 60 60 tr("<html>" 61 + "''{0}'' is n't a valid OSM API URL.<br>"61 + "''{0}'' is not a valid OSM API URL.<br>" 62 62 + "Please check the spelling and validate again." 63 + "</html>",63 + "</html>", 64 64 url 65 65 ), … … 123 123 parent, 124 124 tr("<html>" 125 + "The OSM API server at ''{0}'' did n''t return a valid response.<br>"126 + "It is likely that ''{0}'' is n''t an OSM API server.<br>"125 + "The OSM API server at ''{0}'' did not return a valid response.<br>" 126 + "It is likely that ''{0}'' is not an OSM API server.<br>" 127 127 + "Please check the spelling of ''{0}'' and validate again." 128 128 + "</html>", -
trunk/src/org/openstreetmap/josm/gui/preferences/server/OAuthAuthenticationPreferencesPanel.java
r2804 r2849 184 184 gc.weightx = 1.0; 185 185 JLabel lbl; 186 add(lbl = new JMultilineLabel(tr("You do n't have an Access Token yet to access the OSM server using OAuth. Please authorise first.")), gc);186 add(lbl = new JMultilineLabel(tr("You do not have an Access Token yet to access the OSM server using OAuth. Please authorise first.")), gc); 187 187 lbl.setFont(lbl.getFont().deriveFont(Font.PLAIN)); 188 188 -
trunk/src/org/openstreetmap/josm/gui/preferences/server/OsmApiUrlInputPanel.java
r2801 r2849 237 237 } 238 238 if (!isValid()) { 239 feedbackInvalid(tr("The current value is n't a valid URL"));239 feedbackInvalid(tr("The current value is not a valid URL")); 240 240 } else { 241 241 feedbackValid(tr("Please enter the OSM API URL.")); -
trunk/src/org/openstreetmap/josm/gui/preferences/server/UserNameValidator.java
r2801 r2849 24 24 feedbackValid(tr("Please enter your OSM user name")); 25 25 } else { 26 feedbackInvalid(tr("The user name can 't be empty. Please enter your OSM user name"));26 feedbackInvalid(tr("The user name cannot be empty. Please enter your OSM user name")); 27 27 } 28 28 }
Note:
See TracChangeset
for help on using the changeset viewer.