Skip to content

Commit

Permalink
updated command titles to use present instead of past
Browse files Browse the repository at this point in the history
  • Loading branch information
r00tat committed Jul 14, 2017
1 parent 2e00478 commit 809a84f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ public OsmPrimitive showAndSave() {
Collection<Command> cmds = new LinkedList<>();
log.info("updated properties "+osmObject + "\n" + osmObject.getKeys());
cmds.add(new ChangeCommand(originalOsmObject, osmObject));
Command c = new SequenceCommand(tr("updated building info"), cmds);
Command c = new SequenceCommand(tr("update building info"), cmds);
Main.main.undoRedo.add(c);
Main.getLayerManager().getEditDataSet().setSelected(osmObject);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ public void createArea() {
}
cmds.add(new AddCommand(way));

Command c = new SequenceCommand(/* I18n: Name of command */ tr("Created area"), cmds);
Command c = new SequenceCommand(/* I18n: Name of command */ tr("create building"), cmds);
Main.main.undoRedo.add(c);
Main.getLayerManager().getEditDataSet().setSelected(way);

Expand Down

0 comments on commit 809a84f

Please sign in to comment.