Ticket #21962: josm_21962.patch

File josm_21962.patch, 1017 bytes (added by skyper, 3 years ago)

patch

  • src/org/openstreetmap/josm/gui/dialogs/SearchDialog.java

     
    346346                GBC.eol());
    347347        hintPanel.add(new SearchKeywordRow(hcbSearchString)
    348348                .addKeyword("<i>expr</i> ^ <i>expr</i>", "^ ", tr("logical xor (one and only one expression has to be satisfied)"))
    349                 .addKeyword("<i>expr</i> XOR <i>expr</i>", "XOR ", tr("logical or (one and only one expression has to be satisfied)"))
     349                .addKeyword("<i>expr</i> XOR <i>expr</i>", "XOR ", tr("logical xor (one and only one expression has to be satisfied)"))
    350350                .addKeyword("-<i>expr</i>", null, tr("logical not"))
    351351                .addKeyword("(<i>expr</i>)", "()", tr("use parenthesis to group expressions")),
    352352                GBC.eol().anchor(GBC.CENTER));