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
Files:
4 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
  • trunk/src/org/openstreetmap/josm/gui/conflict/tags/CombinePrimitiveResolverDialog.java

    r3719 r4310  
    6666 * merged to, see {@see #setTargetPrimitive(OsmPrimitive)}.
    6767 *
    68  * After the dialog is closed use {@see #isCancelled()} to check whether the user canceled
     68 * After the dialog is closed use {@see #isCanceled()} to check whether the user canceled
    6969 * the dialog. If it wasn't canceled you may build a collection of {@see Command} objects
    7070 * which reflect the conflict resolution decisions the user made in the dialog:
     
    9393    private TagConflictResolver pnlTagConflictResolver;
    9494    private RelationMemberConflictResolver pnlRelationMemberConflictResolver;
    95     private boolean cancelled;
     95    private boolean canceled;
    9696    private JPanel pnlButtons;
    9797    private OsmPrimitive targetPrimitive;
     
    318318    }
    319319
    320     protected void setCancelled(boolean cancelled) {
    321         this.cancelled = cancelled;
    322     }
    323 
    324     public boolean isCancelled() {
    325         return cancelled;
     320    protected void setCanceled(boolean canceled) {
     321        this.canceled = canceled;
     322    }
     323
     324    public boolean isCanceled() {
     325        return canceled;
    326326    }
    327327
     
    332332            new WindowGeometry(getClass().getName() + ".geometry", WindowGeometry.centerInWindow(Main.parent,
    333333                    new Dimension(600, 400))).applySafe(this);
    334             setCancelled(false);
     334            setCanceled(false);
    335335            btnApply.requestFocusInWindow();
    336336        } else {
     
    350350
    351351        public void actionPerformed(ActionEvent arg0) {
    352             setCancelled(true);
     352            setCanceled(true);
    353353            setVisible(false);
    354354        }
Note: See TracChangeset for help on using the changeset viewer.