Ignore:
Timestamp:
2011-08-11T00:26:21+02:00 (13 years ago)
Author:
stoecker
Message:

fix #6680, fix #6677 - i18n issues

Location:
trunk/src/org/openstreetmap/josm/gui/conflict/pair
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/conflict/pair/ListMerger.java

    r4191 r4310  
    284284        gc.gridy = 0;
    285285        lblMergedVersion = new JLabel(tr("Merged version"));
    286         lblMergedVersion.setToolTipText(tr("List of merged elements. They will replace the my elements when the merge decisions are applied."));
     286        lblMergedVersion.setToolTipText(tr("List of merged elements. They will replace the list of my elements when the merge decisions are applied."));
    287287        add(lblMergedVersion, gc);
    288288
  • trunk/src/org/openstreetmap/josm/gui/conflict/pair/properties/PropertiesMergeModel.java

    r4116 r4310  
    2323/**
    2424 * This is the model for resolving conflicts in the properties of the
    25  * {@see OsmPrimitive}s. In particular, it represents conflicts in the coordiates of {@see Node}s and
     25 * {@see OsmPrimitive}s. In particular, it represents conflicts in the coordinates of {@see Node}s and
    2626 * the deleted or visible state of {@see OsmPrimitive}s.
    2727 *
  • trunk/src/org/openstreetmap/josm/gui/conflict/pair/properties/PropertiesMerger.java

    r4162 r4310  
    394394        public KeepMyCoordinatesAction() {
    395395            putValue(Action.SMALL_ICON, ImageProvider.get("dialogs/conflict", "tagkeepmine"));
    396             putValue(Action.SHORT_DESCRIPTION, tr("Keep my coordiates"));
     396            putValue(Action.SHORT_DESCRIPTION, tr("Keep my coordinates"));
    397397        }
    398398
     
    409409        public KeepTheirCoordinatesAction() {
    410410            putValue(Action.SMALL_ICON, ImageProvider.get("dialogs/conflict", "tagkeeptheir"));
    411             putValue(Action.SHORT_DESCRIPTION, tr("Keep their coordiates"));
     411            putValue(Action.SHORT_DESCRIPTION, tr("Keep their coordinates"));
    412412        }
    413413
Note: See TracChangeset for help on using the changeset viewer.