Ignore:
Timestamp:
2021-07-15T10:47:00+02:00 (3 years ago)
Author:
Bjoeni
Message:

see #21019 - change warning text for ExifOverflowException

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/photo_geotagging/src/org/openstreetmap/josm/plugins/photo_geotagging/GeotaggingAction.java

    r35777 r35783  
    231231                int ret = GuiHelper.runInEDTAndWaitAndReturn(() -> {
    232232                    ExtendedDialog dlg = new ExtendedDialog(progressMonitor.getWindowParent(), tr("Warning"),
    233                             tr("Abort"), tr("Retry"));
    234 
    235                     dlg.setButtonIcons("cancel", "dialogs/refresh")
     233                            tr("Abort"), tr("Proceed"));
     234
     235                    dlg.setButtonIcons("cancel", "dialogs/next")
    236236                       .setIcon(JOptionPane.WARNING_MESSAGE);
    237237
     
    256256                    }
    257257                    sb.append("</ul><br>")
    258                       .append(tr("This can likely be fixed by rewriting the entire EXIF section, however some metadata may get lost in the process.<br><br>"
    259                               + "Would you like to try again using the lossy approach?"));
     258                      .append(tr("This can likely be fixed by rewriting the entire EXIF section, however some (rare) unknown tags may get lost in the process.<br>"
     259                              + "Would you like to proceed anyway?"));
    260260
    261261                    dlg.setContent(sb.toString())
Note: See TracChangeset for help on using the changeset viewer.