diff --git a/src/org/openstreetmap/josm/gui/dialogs/SearchDialog.java b/src/org/openstreetmap/josm/gui/dialogs/SearchDialog.java index 444f4e90d6d..13dc797ea3c 100644 --- a/src/org/openstreetmap/josm/gui/dialogs/SearchDialog.java +++ b/src/org/openstreetmap/josm/gui/dialogs/SearchDialog.java @@ -325,7 +325,7 @@ private static JPanel buildHintsSection(AutoCompComboBox hcbSearc .addKeyword("key=value", null, tr("''key'' with exactly ''value''")) .addKeyword("key~regexp", null, tr("value of ''key'' matching the regular expression ''regexp''")) .addKeyword("key=*", null, tr("''key'' with any value")) - .addKeyword("key=", null, tr("''key'' with empty value")) + .addKeyword("key is null", null, tr("matches if ''key'' does not exist")) .addKeyword("*=value", null, tr("''value'' in any key")) .addKeyword("key>value", null, tr("matches if ''key'' is greater than ''value'' (analogously, less than)")) .addKeyword("\"key\"=\"value\"", "\"\"=\"\"",