Changeset 35726 in osm


Ignore:
Timestamp:
2021-03-13T14:42:59+01:00 (3 years ago)
Author:
Don-vip
Message:

see #20341 - see #20046 - fix i18n string

File:
1 edited

Legend:

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

    r35725 r35726  
    118118            JLabel warn = new JLabel(notSupportedFilesCount == 1
    119119                    ? tr("The file \"{0}\" can not be updated. Only JPEG and TIFF images are supported.", notSupportedName)
    120                     : tr("{0} files can not be updated. Only JPEG and TIFF images are supported.", notSupportedFilesCount));
     120                    : trn("{0} file can not be updated. Only JPEG and TIFF images are supported.",
     121                          "{0} files can not be updated. Only JPEG and TIFF images are supported.", notSupportedFilesCount, notSupportedFilesCount));
    121122            warn.setForeground(Color.RED);
    122123            cont.add(warn, GBC.eol());
Note: See TracChangeset for help on using the changeset viewer.