Ignore:
Timestamp:
2026-08-12T08:04:48+02:00 (16 hours ago)
Author:
stoecker
Message:

i18n update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/DirectUpload/src/org/openstreetmap/josm/plugins/DirectUpload/UploadDataGui.java

    r35858 r36503  
    5050     */
    5151    private enum visibility {
    52         PRIVATE      (tr("Private (only shared as anonymous, unordered points)")),
    53         PUBLIC       (tr("Public (shown in trace list and as anonymous, unordered points)")),
    5452        TRACKABLE    (tr("Trackable (only shared as anonymous, ordered points with timestamps)")),
    5553        IDENTIFIABLE (tr("Identifiable (shown in trace list and as identifiable, ordered points with timestamps)"));
     
    127125            visibilityCombo.addItem(v.description);
    128126        }
    129         visibilityCombo.setSelectedItem(visibility.valueOf(Config.getPref().get("directupload.visibility.last-used", visibility.PRIVATE.name())).description);
     127        visibilityCombo.setSelectedItem(visibility.valueOf(Config.getPref().get("directupload.visibility.last-used", visibility.TRACKABLE.name())).description);
    130128        /* I18n: either copy the link verbose or replace it by the translated version from the wiki for already translated languages */
    131129        UrlLabel visiUrl = new UrlLabel(tr("https://wiki.openstreetmap.org/wiki/Visibility_of_GPS_traces"), tr("(What does that mean?)"), 2);
Note: See TracChangeset for help on using the changeset viewer.