Changeset 28353 in osm


Ignore:
Timestamp:
2012-04-25T18:29:19+02:00 (12 years ago)
Author:
mzdila
Message:

tr

Location:
applications/editors/josm/plugins/simplifyarea/src/sk/zdila/josm/plugin/simplify
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/simplifyarea/src/sk/zdila/josm/plugin/simplify/SimplifyAreaAction.java

    r27905 r28353  
    191191        final Collection<Command> avgCommands = averageNearbyNodes(ways, nodesReallyToRemove);
    192192        if (avgCommands != null) {
    193             allCommands.add(new SequenceCommand("average nearby nodes", avgCommands));
     193            allCommands.add(new SequenceCommand(tr("average nearby nodes"), avgCommands));
    194194        }
    195195
  • applications/editors/josm/plugins/simplifyarea/src/sk/zdila/josm/plugin/simplify/SimplifyAreaPreferenceSetting.java

    r27857 r28353  
    3232
    3333    public SimplifyAreaPreferenceSetting() {
    34         super("simplifyArea", "Simplify Area", "Node of the way (area) is removed if all of <u>Angle Weight</u>, <u>Area Weight</u> and <u>Distance Weight</u> are greater than 1. " +
     34        super("simplifyArea", tr("Simplify Area"), tr("Node of the way (area) is removed if all of <u>Angle Weight</u>, <u>Area Weight</u> and <u>Distance Weight</u> are greater than 1. " +
    3535                "<u>Weight</u> is computed as <u>Value</u> / <u>Threshold</u>, where <u>Value</u> is one of <u>Angle</u>, <u>Area</u> and <u>Distance</u> " +
    3636                "computed from every three adjanced points of the way." +
     
    4040                "All three <u>Weight</u>s multiplied by its <u>Factor</u>s are summed and node of the lowest sum is removed first. " +
    4141                "Removal continues until there is no node to remove." +
    42                 "Merge Nearby Nodes is another step of the simplification that merges adjanced nodes that are closer than <u>Threshold</u> meters.");
     42                "Merge Nearby Nodes is another step of the simplification that merges adjanced nodes that are closer than <u>Threshold</u> meters."));
    4343    }
    4444
Note: See TracChangeset for help on using the changeset viewer.