- Timestamp:
- 2020-10-10T23:30:50+02:00 (4 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/search/SearchCompiler.java
r16913 r17153 1623 1623 /** 1624 1624 * Matches objects that don't have any interesting tags (i.e. only has source, 1625 * FIXME, etc.). The complete list of uninteresting tags can be found here:1625 * fixme, etc.). The complete list of uninteresting tags can be found here: 1626 1626 * org.openstreetmap.josm.data.osm.OsmPrimitive.getUninterestingKeys() 1627 1627 */ -
trunk/src/org/openstreetmap/josm/data/validation/tests/TagChecker.java
r17139 r17153 628 628 if (checkFixmes && key != null && value != null && !value.isEmpty() && isFixme(key, value) && !withErrors.contains(p, "FIXME")) { 629 629 errors.add(TestError.builder(this, Severity.OTHER, FIXME) 630 .message(tr(" FIXMES"))630 .message(tr("fixme")) 631 631 .primitives(p) 632 632 .build()); … … 1106 1106 testPanel.add(prefCheckValuesBeforeUpload, a); 1107 1107 1108 prefCheckFixmes = new JCheckBox(tr("Check for FIXMES."), Config.getPref().getBoolean(PREF_CHECK_FIXMES, true));1109 prefCheckFixmes.setToolTipText(tr("Looks for nodes or ways with FIXMEin any property value."));1108 prefCheckFixmes = new JCheckBox(tr("Check for fixme."), Config.getPref().getBoolean(PREF_CHECK_FIXMES, true)); 1109 prefCheckFixmes.setToolTipText(tr("Looks for nodes or ways with fixme in any property value.")); 1110 1110 testPanel.add(prefCheckFixmes, GBC.std().insets(20, 0, 0, 0)); 1111 1111 -
trunk/src/org/openstreetmap/josm/data/validation/tests/UntaggedNode.java
r13561 r17153 64 64 /* translation note: don't translate quoted words */ 65 65 errors.add(TestError.builder(this, Severity.WARNING, UNTAGGED_NODE_FIXME) 66 .message(ERROR_MESSAGE, marktr("Has tag containing ''fixme'' or ''FIXME''"))66 .message(ERROR_MESSAGE, marktr("Has tag containing ''fixme''")) 67 67 .primitives(castPrim(n)) 68 68 .build()); -
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/actions/DuplicateRelationAction.java
r14030 r17153 25 25 super(editorAccess); 26 26 putValue(SHORT_DESCRIPTION, tr("Create a copy of this relation and open it in another editor window")); 27 // FIXME provide an icon28 27 new ImageProvider("duplicate").getResource().attachImageIcon(this, true); 29 28 putValue(NAME, tr("Duplicate"));
Note:
See TracChangeset
for help on using the changeset viewer.