Ignore:
Timestamp:
2016-02-24T09:17:10+01:00 (8 years ago)
Author:
simon04
Message:

fix #12535 - Splitting ways give wrong message in the Command Stack

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/SplitWayAction.java

    r9647 r9872  
    741741                new SequenceCommand(
    742742                        /* for correct i18n of plural forms - see #9110 */
    743                         trn("Split way {0} into {1} part", "Split way {0} into {1} parts", newWays.size(),
    744                                 way.getDisplayName(DefaultNameFormatter.getInstance()), newWays.size()),
     743                        trn("Split way {0} into {1} part", "Split way {0} into {1} parts", newWays.size() + 1,
     744                                way.getDisplayName(DefaultNameFormatter.getInstance()), newWays.size() + 1),
    745745                        commandList
    746746                        ),
Note: See TracChangeset for help on using the changeset viewer.