Changeset 34208 in osm for applications


Ignore:
Timestamp:
2018-05-20T21:21:27+02:00 (6 years ago)
Author:
donvip
Message:

see #josm16288 - replace similar i18n strings (removes 4 strings from Launchpad)

Location:
applications/editors/josm/plugins
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLine.java

    r33733 r34208  
    504504            synchronized (debugstr) {
    505505                Logging.error(
    506                         tr("Error executing the script: ") +
    507                         debugstr.toString() + e.getMessage() + "\n" + Arrays.toString(e.getStackTrace()));
     506                        tr("Error executing the script:") + ' ' +
     507                        debugstr.toString() + e.getMessage() + '\n' + Arrays.toString(e.getStackTrace()));
    508508            }
    509509            return;
  • applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/preferences/CadastrePreferenceSetting.java

    r33640 r34208  
    5252    private JCheckBox transparency = new JCheckBox(tr("Set background transparent."));
    5353
    54     private JCheckBox drawBoundaries = new JCheckBox(tr("Draw boundaries of downloaded data."));
     54    private JCheckBox drawBoundaries = new JCheckBox(tr("Draw boundaries of downloaded data"));
    5555
    5656    private JComboBox<String> imageInterpolationMethod = new JComboBox<>();
  • applications/editors/josm/plugins/pdfimport/src/pdfimport/OsmBuilder.java

    r32542 r34208  
    5353        }
    5454
    55         monitor.beginTask(tr("Building JOSM layer."), this.monitorTotal);
     55        monitor.beginTask(tr("Building JOSM layer"), this.monitorTotal);
    5656
    5757
  • applications/editors/josm/plugins/reverter/src/reverter/corehacks/OsmServerChangesetReader.java

    r32905 r34208  
    147147                if (in == null)
    148148                    return null;
    149                 monitor.indeterminateSubTask(tr("({0}/{1}) Downloading changeset {2} ...", i, ids.size(), id));
     149                monitor.indeterminateSubTask(tr("({0}/{1}) Downloading changeset {2}...", i, ids.size(), id));
    150150                List<Changeset> changesets = OsmChangesetParser.parse(in, monitor.createSubTaskMonitor(1, true));
    151151                if (changesets == null || changesets.isEmpty()) {
Note: See TracChangeset for help on using the changeset viewer.