Ignore:
Timestamp:
2015-11-02T09:40:18+01:00 (8 years ago)
Author:
simon04
Message:

fix #12041 - Wrong message in relation member deletion confirmation

File:
1 edited

Legend:

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

    r8931 r8975  
    2525import org.openstreetmap.josm.data.osm.TagCollection;
    2626import org.openstreetmap.josm.gui.conflict.tags.PasteTagsConflictResolverDialog;
     27import org.openstreetmap.josm.tools.I18n;
    2728import org.openstreetmap.josm.tools.Shortcut;
    2829import org.openstreetmap.josm.tools.TextTagParser;
     
    302303            String title1 = trn("Pasting {0} tag", "Pasting {0} tags", commands.size(), commands.size());
    303304            String title2 = trn("to {0} object", "to {0} objects", selection.size(), selection.size());
     305            @I18n.QuirkyPluralString
     306            final String title = title1 + ' ' + title2;
    304307            Main.main.undoRedo.add(
    305308                    new SequenceCommand(
    306                             title1 + ' ' + title2,
     309                            title,
    307310                            commands
    308311                    ));
Note: See TracChangeset for help on using the changeset viewer.