Ignore:
Timestamp:
2013-10-25T18:39:02+02:00 (10 years ago)
Author:
Don-vip
Message:

fix #9172 - rename "Properties / Memberships" as "Tags / Memberships"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/command/ChangePropertyCommand.java

    r5143 r6324  
    3636    /**
    3737     * Key and value pairs. If value is <code>null</code>, delete all key references with the given
    38      * key. Otherwise, change the properties of all objects to the given value or create keys of
     38     * key. Otherwise, change the tags of all objects to the given value or create keys of
    3939     * those objects that do not have the key yet.
    4040     */
     
    4242
    4343    /**
    44      * Creates a command to change multiple properties of multiple objects
     44     * Creates a command to change multiple tags of multiple objects
    4545     *
    4646     * @param objects the objects to modify
    47      * @param tags the properties to set
     47     * @param tags the tags to set
    4848     */
    4949    public ChangePropertyCommand(Collection<? extends OsmPrimitive> objects, AbstractMap<String, String> tags) {
     
    5555
    5656    /**
    57      * Creates a command to change one property of multiple objects
     57     * Creates a command to change one tag of multiple objects
    5858     *
    5959     * @param objects the objects to modify
    60      * @param key the key of the property to set
     60     * @param key the key of the tag to set
    6161     * @param value the value of the key to set
    6262     */
     
    6969
    7070    /**
    71      * Creates a command to change on property of one object
     71     * Creates a command to change one tag of one object
    7272     *
    7373     * @param object the object to modify
    74      * @param key the key of the property to set
     74     * @param key the key of the tag to set
    7575     * @param value the value of the key to set
    7676     */
     
    180180
    181181            if (allnull) {
    182                 text = tr("Deleted {0} properties for {1} objects", tags.size(), objects.size());
     182                text = tr("Deleted {0} tags for {1} objects", tags.size(), objects.size());
    183183            } else
    184                 text = tr("Set {0} properties for {1} objects", tags.size(), objects.size());
     184                text = tr("Set {0} tags for {1} objects", tags.size(), objects.size());
    185185        }
    186186        return text;
Note: See TracChangeset for help on using the changeset viewer.