From: John Firebaugh Date: Fri, 23 Aug 2013 18:56:46 +0000 (-0700) Subject: Update to iD v1.1.5 X-Git-Tag: live~4760 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/d23f2625437a93e028fbe74d1c606f8d30698a1e Update to iD v1.1.5 --- diff --git a/app/views/site/id.html.erb b/app/views/site/id.html.erb index 1b4cdf1bb..6000b7da0 100644 --- a/app/views/site/id.html.erb +++ b/app/views/site/id.html.erb @@ -68,16 +68,6 @@ }, 0); }); - var maximized = false; - id.on('toggleFullscreen.embed', function() { - if (maximized) { - parent.minimiseMap(); - } else { - parent.maximiseMap(); - } - maximized = !maximized; - }); - d3.select('#id-container') .call(id.ui()); } diff --git a/vendor/assets/iD/iD.css.erb b/vendor/assets/iD/iD.css.erb index 6463f2f1c..388dc8111 100644 --- a/vendor/assets/iD/iD.css.erb +++ b/vendor/assets/iD/iD.css.erb @@ -3488,11 +3488,11 @@ img.wiki-image { ------------------------------------------------------- */ .modal-actions .restore:before { - background-position: -500px -220px; + background-position: -600px -220px; } .modal-actions .reset:before { - background-position: -600px -220px; + background-position: -700px -220px; } /* Success Modal @@ -3506,16 +3506,28 @@ img.wiki-image { padding-top: 15px; } +.save-success .button.social { + height: 80px; +} + +.save-success .button.social:before { + height: 50px; +} + .save-success .button.osm:before { background-position: 0px -220px; } .save-success .button.twitter:before { - background-position: -100px -220px; + background-position: -100px -245px; } .save-success .button.facebook:before { - background-position: -200px -220px; + background-position: -200px -245px; +} + +.save-success .button.google:before { + background-position: -300px -245px; } /* Splash Modal @@ -3523,11 +3535,11 @@ img.wiki-image { .modal-actions .walkthrough:before, .walkthrough a:before { - background-position: -300px -220px; + background-position: -400px -220px; } .modal-actions .start:before { - background-position: -400px -220px; + background-position: -500px -220px; } /* Commit Modal diff --git a/vendor/assets/iD/iD.js b/vendor/assets/iD/iD.js index aeb16e7a4..873868e95 100644 --- a/vendor/assets/iD/iD.js +++ b/vendor/assets/iD/iD.js @@ -15044,7 +15044,7 @@ window.iD = function () { }; var history = iD.History(context), - dispatch = d3.dispatch('enter', 'exit', 'toggleFullscreen'), + dispatch = d3.dispatch('enter', 'exit'), mode, container, ui = iD.ui(context), @@ -15232,18 +15232,22 @@ window.iD = function () { return context; }; - context.imagePath = function(_) { - return assetPath + 'img/' + _; + var assetMap = {}; + context.assetMap = function(_) { + if (!arguments.length) return assetMap; + assetMap = _; + return context; }; - context.toggleFullscreen = function() { - dispatch.toggleFullscreen(); + context.imagePath = function(_) { + var asset = 'img/' + _; + return assetMap[asset] || assetPath + asset; }; return d3.rebind(context, dispatch, 'on'); }; -iD.version = '1.1.4'; +iD.version = '1.1.5'; (function() { var detected = {}; @@ -19071,11 +19075,11 @@ iD.operations.Delete = function(selectedIDs, context) { var operation = function() { var annotation, - mode; + nextSelectedID; if (selectedIDs.length > 1) { annotation = t('operations.delete.annotation.multiple', {n: selectedIDs.length}); - mode = iD.modes.Browse(context); + } else { var id = selectedIDs[0], entity = context.entity(id), @@ -19084,7 +19088,6 @@ iD.operations.Delete = function(selectedIDs, context) { parent = parents[0]; annotation = t('operations.delete.annotation.' + geometry); - mode = iD.modes.Browse(context); // Select the next closest node in the way. if (geometry === 'vertex' && parents.length === 1 && parent.nodes.length > 2) { @@ -19101,7 +19104,7 @@ iD.operations.Delete = function(selectedIDs, context) { i = a < b ? i - 1 : i + 1; } - mode = iD.modes.Select(context, [nodes[i]]); + nextSelectedID = nodes[i]; } } @@ -19109,8 +19112,11 @@ iD.operations.Delete = function(selectedIDs, context) { action, annotation); - context.enter(mode); - + if (nextSelectedID && context.hasEntity(nextSelectedID)) { + context.enter(iD.modes.Select(context, [nextSelectedID])); + } else { + context.enter(iD.modes.Browse(context)); + } }; operation.available = function() { @@ -19129,7 +19135,7 @@ iD.operations.Delete = function(selectedIDs, context) { }; operation.id = "delete"; - operation.keys = [iD.ui.cmd('⌫'), iD.ui.cmd('⌦')]; + operation.keys = [iD.ui.cmd('⌘⌫'), iD.ui.cmd('⌘⌦')]; operation.title = t('operations.delete.title'); return operation; @@ -21269,21 +21275,19 @@ iD.Background = function(context) { if (source.sourcetag === 'Bing') { return iD.BackgroundSource.Bing(source, dispatch); } else { - return iD.BackgroundSource.template(source); + return iD.BackgroundSource(source); } }); - backgroundSources.push(iD.BackgroundSource.Custom); - function findSource(sourcetag) { return _.find(backgroundSources, function(d) { - return d.data.sourcetag && d.data.sourcetag === sourcetag; + return d.sourcetag && d.sourcetag === sourcetag; }); } function updateImagery() { - var b = background.baseLayerSource().data, - o = overlayLayers.map(function (d) { return d.source().data.sourcetag; }).join(','), + var b = background.baseLayerSource(), + o = overlayLayers.map(function (d) { return d.source().sourcetag; }).join(','), q = iD.util.stringQs(location.hash.substring(1)); var tag = b.sourcetag; @@ -21313,7 +21317,10 @@ iD.Background = function(context) { } overlayLayers.forEach(function (d) { - imageryUsed.push(d.source().data.sourcetag || d.source().data.name); + var source = d.source(); + if (!source.isLocatorOverlay()) { + imageryUsed.push(source.sourcetag || source.name); + } }); if (background.showsGpxLayer()) { @@ -21341,7 +21348,7 @@ iD.Background = function(context) { gpx.call(gpxLayer); var overlays = selection.selectAll('.overlay-layer') - .data(overlayLayers, function(d) { return d.source().data.name }); + .data(overlayLayers, function(d) { return d.source().name }); overlays.enter().insert('div', '.layer-data') .attr('class', 'layer-layer overlay-layer'); @@ -21355,11 +21362,8 @@ iD.Background = function(context) { } background.sources = function(extent) { - return backgroundSources.filter(function(layer) { - return !layer.data.extents || - layer.data.extents.some(function(layerExtent) { - return iD.geo.Extent(layerExtent).intersects(extent); - }); + return backgroundSources.filter(function(source) { + return source.intersects(extent); }); }; @@ -21408,7 +21412,7 @@ iD.Background = function(context) { background.showsLayer = function(d) { return d === baseLayer.source() || - (d.data.name === 'Custom' && baseLayer.source().data.name === 'Custom') || + (d.name === 'Custom' && baseLayer.source().name === 'Custom') || overlayLayers.some(function(l) { return l.source() === d; }); }; @@ -21425,7 +21429,7 @@ iD.Background = function(context) { } } - layer = iD.TileLayer('overlay') + layer = iD.TileLayer() .source(d) .projection(context.projection) .dimensions(baseLayer.dimensions()); @@ -21436,14 +21440,14 @@ iD.Background = function(context) { }; background.nudge = function(d, zoom) { - baseLayer.nudge(d, zoom); + baseLayer.source().nudge(d, zoom); dispatch.change(); return background; }; background.offset = function(d) { - if (!arguments.length) return baseLayer.offset(); - baseLayer.offset(d); + if (!arguments.length) return baseLayer.source().offset(); + baseLayer.source().offset(d); dispatch.change(); return background; }; @@ -21452,7 +21456,7 @@ iD.Background = function(context) { chosen = q.background || q.layer; if (chosen && chosen.indexOf('custom:') === 0) { - background.baseLayerSource(iD.BackgroundSource.template({ + background.baseLayerSource(iD.BackgroundSource({ template: chosen.replace(/^custom:/, ''), name: 'Custom' })); @@ -21460,6 +21464,14 @@ iD.Background = function(context) { background.baseLayerSource(findSource(chosen) || findSource("Bing")); } + var locator = _.find(backgroundSources, function(d) { + return d.overlay && d.default; + }); + + if (locator) { + background.toggleOverlayLayer(locator); + } + var overlays = (q.overlays || '').split(','); overlays.forEach(function(overlay) { overlay = findSource(overlay); @@ -21468,12 +21480,25 @@ iD.Background = function(context) { return d3.rebind(background, dispatch, 'on'); }; -iD.BackgroundSource = {}; +iD.BackgroundSource = function(data) { + var source = _.clone(data), + offset = [0, 0]; -// derive the url of a 'quadkey' style tile from a coordinate object -iD.BackgroundSource.template = function(data) { + source.scaleExtent = data.scaleExtent || [0, 20]; - function generator(coord) { + source.offset = function(_) { + if (!arguments.length) return offset; + offset = _; + return source; + }; + + source.nudge = function(_, zoomlevel) { + offset[0] += _[0] / Math.pow(2, zoomlevel); + offset[1] += _[1] / Math.pow(2, zoomlevel); + return source; + }; + + source.url = function(coord) { var u = ''; for (var zoom = coord[2]; zoom > 0; zoom--) { var b = 0; @@ -21498,19 +21523,33 @@ iD.BackgroundSource.template = function(data) { var subdomains = r.split(':')[1].split(','); return subdomains[coord[2] % subdomains.length]; }); - } + }; - generator.data = data; - generator.copyrightNotices = function() {}; + source.intersects = function(extent) { + return !data.extents || data.extents.some(function(ex) { + return iD.geo.Extent(ex).intersects(extent); + }); + }; - return generator; + source.validZoom = function(z) { + return source.scaleExtent[0] <= z && + (!source.isLocatorOverlay() || source.scaleExtent[1] > z); + }; + + source.isLocatorOverlay = function() { + return source.name === 'Locator Overlay'; + }; + + source.copyrightNotices = function() {}; + + return source; }; iD.BackgroundSource.Bing = function(data, dispatch) { // http://msdn.microsoft.com/en-us/library/ff701716.aspx // http://msdn.microsoft.com/en-us/library/ff701701.aspx - var bing = iD.BackgroundSource.template(data), + var bing = iD.BackgroundSource(data), key = 'Arzdiw4nlOJzRwOz__qailc8NiR31Tt51dN2D7cm57NrnceZnCpgOkmJhNpGoppU', // Same as P2 and JOSM url = 'http://dev.virtualearth.net/REST/v1/Imagery/Metadata/Aerial?include=ImageryProviders&key=' + key + '&jsonp={callback}', @@ -21546,18 +21585,6 @@ iD.BackgroundSource.Bing = function(data, dispatch) { return bing; }; - -iD.BackgroundSource.Custom = function() { - var template = window.prompt('Enter a tile template. ' + - 'Valid tokens are {z}, {x}, {y} for Z/X/Y scheme and {u} for quadtile scheme.'); - if (!template) return null; - return iD.BackgroundSource.template({ - template: template, - name: 'Custom' - }); -}; - -iD.BackgroundSource.Custom.data = { 'name': 'Custom' }; iD.GpxLayer = function(context, dispatch) { var projection, gj = {}, @@ -22063,16 +22090,11 @@ iD.Map = function(context) { return d3.rebind(map, dispatch, 'on'); }; -iD.TileLayer = function(backgroundType) { - - backgroundType = backgroundType || 'background'; - +iD.TileLayer = function() { var tileSize = 256, tile = d3.geo.tile(), projection, cache = {}, - offset = [0, 0], - offsets = {}, tileOrigin, z, transformProp = iD.util.prefixCSSProperty('Transform'), @@ -22093,7 +22115,7 @@ iD.TileLayer = function(backgroundType) { function lookUp(d) { for (var up = -1; up > -d[2]; up--) { var tile = atZoom(d, up); - if (cache[source(tile)] !== false) { + if (cache[source.url(tile)] !== false) { return tile; } } @@ -22111,7 +22133,7 @@ iD.TileLayer = function(backgroundType) { } function addSource(d) { - d.push(source(d)); + d.push(source.url(d)); return d; } @@ -22135,7 +22157,7 @@ iD.TileLayer = function(backgroundType) { function render(selection) { var requests = []; - if (tile.scaleExtent()[0] <= z) { + if (source.validZoom(z)) { tile().forEach(function(d) { addSource(d); requests.push(d); @@ -22151,8 +22173,8 @@ iD.TileLayer = function(backgroundType) { } var pixelOffset = [ - Math.round(offset[0] * Math.pow(2, z)), - Math.round(offset[1] * Math.pow(2, z)) + Math.round(source.offset()[0] * Math.pow(2, z)), + Math.round(source.offset()[1] * Math.pow(2, z)) ]; function load(d) { @@ -22209,19 +22231,6 @@ iD.TileLayer = function(backgroundType) { .classed('tile-removing', false); } - background.offset = function(_) { - if (!arguments.length) return offset; - offset = _; - if (source.data) offsets[source.data.name] = offset; - return background; - }; - - background.nudge = function(_, zoomlevel) { - offset[0] += _[0] / Math.pow(2, zoomlevel); - offset[1] += _[1] / Math.pow(2, zoomlevel); - return background; - }; - background.projection = function(_) { if (!arguments.length) return projection; projection = _; @@ -22237,13 +22246,8 @@ iD.TileLayer = function(backgroundType) { background.source = function(_) { if (!arguments.length) return source; source = _; - if (source.data) { - offset = offsets[source.data.name] = offsets[source.data.name] || [0, 0]; - } else { - offset = [0, 0]; - } cache = {}; - tile.scaleExtent((source.data && source.data.scaleExtent) || [1, 20]); + tile.scaleExtent(source.scaleExtent); return background; }; @@ -23571,8 +23575,7 @@ iD.ui = function(context) { .on('←', pan([pa, 0])) .on('↑', pan([0, pa])) .on('→', pan([-pa, 0])) - .on('↓', pan([0, -pa])) - .on('M', function() { context.toggleFullscreen(); }); + .on('↓', pan([0, -pa])); d3.select(document) .call(keybinding); @@ -23674,22 +23677,22 @@ iD.ui.Attribution = function(context) { } var attribution = selection.selectAll('.provided-by') - .data([context.background().baseLayerSource()], function(d) { return d.data.name; }); + .data([context.background().baseLayerSource()], function(d) { return d.name; }); attribution.enter() .append('span') .attr('class', 'provided-by') .each(function(d) { - var source = d.data.sourcetag || d.data.name; + var source = d.sourcetag || d.name; - if (d.data.logo) { - source = ''; + if (d.logo) { + source = ''; } - if (d.data.terms_url) { + if (d.terms_url) { d3.select(this) .append('a') - .attr('href', d.data.terms_url) + .attr('href', d.terms_url) .attr('target', '_blank') .html(source); } else { @@ -23759,7 +23762,7 @@ iD.ui.Background = function(context) { return context.background().showsLayer(d); } - content.selectAll('label.layer') + content.selectAll('label.layer, label.custom_layer') .classed('active', active) .selectAll('input') .property('checked', active); @@ -23767,18 +23770,24 @@ iD.ui.Background = function(context) { function clickSetSource(d) { d3.event.preventDefault(); - if (d.data.name === 'Custom') { - var configured = d(); - if (!configured) { - selectLayer(); - return; - } - d = configured; - } context.background().baseLayerSource(d); selectLayer(); } + function clickCustom() { + d3.event.preventDefault(); + var template = window.prompt(t('background.custom_prompt')); + if (!template) { + selectLayer(); + return; + } + context.background().baseLayerSource(iD.BackgroundSource({ + template: template, + name: 'Custom' + })); + selectLayer(); + } + function clickSetOverlay(d) { d3.event.preventDefault(); context.background().toggleOverlayLayer(d); @@ -23796,29 +23805,27 @@ iD.ui.Background = function(context) { .filter(filter); var layerLinks = layerList.selectAll('label.layer') - .data(sources, function(d) { return d.data.name; }); + .data(sources, function(d) { return d.name; }); var layerInner = layerLinks.enter() - .append('label') + .insert('label', '.custom_layer') .attr('class', 'layer'); // only set tooltips for layers with tooltips layerInner - .filter(function(d) { return d.data.description; }) + .filter(function(d) { return d.description; }) .call(bootstrap.tooltip() - .title(function(d) { return d.data.description; }) - .placement('left') - ); + .title(function(d) { return d.description; }) + .placement('left')); layerInner.append('input') .attr('type', type) .attr('name', 'layers') - .attr('value', function(d) { return d.data.name; }) + .attr('value', function(d) { return d.name; }) .on('change', change); - layerInner.insert('span').text(function(d) { - return d.data.name; - }); + layerInner.append('span') + .text(function(d) { return d.name; }); layerLinks.exit() .remove(); @@ -23827,13 +23834,8 @@ iD.ui.Background = function(context) { } function update() { - backgroundList.call(drawList, 'radio', clickSetSource, function(d) { - return !d.data.overlay; - }); - - overlayList.call(drawList, 'checkbox', clickSetOverlay, function(d) { - return d.data.overlay; - }); + backgroundList.call(drawList, 'radio', clickSetSource, function(d) { return !d.overlay; }); + overlayList.call(drawList, 'checkbox', clickSetOverlay, function(d) { return d.overlay; }); var hasGpx = context.background().hasGpxLayer(), showsGpx = context.background().showsGpxLayer(); @@ -23950,6 +23952,19 @@ iD.ui.Background = function(context) { .append('div') .attr('class', 'toggle-list layer-list'); + var custom = backgroundList + .append('label') + .attr('class', 'custom_layer') + .datum({name: 'Custom'}); + + custom.append('input') + .attr('type', 'radio') + .attr('name', 'layers') + .on('change', clickCustom); + + custom.append('span') + .text(t('background.custom')); + var overlayList = content .append('div') .attr('class', 'toggle-list layer-list'); @@ -24104,9 +24119,9 @@ iD.ui.Commit = function(context) { header.append('button') .attr('class', 'fr') + .on('click', event.cancel) .append('span') - .attr('class', 'icon close') - .on('click', event.cancel); + .attr('class', 'icon close'); header.append('h3') .text(t('commit.title')); @@ -24867,7 +24882,8 @@ iD.ui.Help = function(context) { 'help.imagery', 'help.addresses', 'help.inspector', - 'help.buildings']; + 'help.buildings', + 'help.relations']; function one(f) { return function(x) { return f(x); }; } var docs = docKeys.map(one(t)).map(function(text) { @@ -25786,6 +25802,7 @@ iD.ui.PresetList = function(context) { list.call(drawList, results); } else { list.call(drawList, context.presets().defaults(geometry, 36)); + message.text(t('inspector.choose')); } } @@ -26951,31 +26968,29 @@ iD.ui.Success = function(context) { body.append('p') .html(t('success.help_html')); + var changesetURL = context.connection().changesetURL(changeset.id); + body.append('a') .attr('class', 'button col12 osm') .attr('target', '_blank') - .attr('href', function() { - return context.connection().changesetURL(changeset.id); - }) + .attr('href', changesetURL) .text(t('success.view_on_osm')); - body.append('a') - .attr('class', 'button col12 twitter') - .attr('target', '_blank') - .attr('href', function() { - return 'https://twitter.com/intent/tweet?source=webclient&text=' + - encodeURIComponent(message); - }) - .text(t('success.tweet')); + var sharing = { + facebook: 'https://facebook.com/sharer/sharer.php?u=' + encodeURIComponent(changesetURL), + twitter: 'https://twitter.com/intent/tweet?source=webclient&text=' + encodeURIComponent(message), + google: 'https://plus.google.com/share?url=' + encodeURIComponent(changesetURL) + }; - body.append('a') - .attr('class', 'button col12 facebook') + body.selectAll('.button.social') + .data(d3.entries(sharing)) + .enter().append('a') + .attr('class', function(d) { return 'button social col4 ' + d.key; }) .attr('target', '_blank') - .attr('href', function() { - return 'https://facebook.com/sharer/sharer.php?u=' + - encodeURIComponent(context.connection().changesetURL(changeset.id)); - }) - .text(t('success.facebook')); + .attr('href', function(d) { return d.value; }) + .call(bootstrap.tooltip() + .title(function(d) { return t('success.' + d.key); }) + .placement('bottom')); } success.changeset = function(_) { @@ -29105,7 +29120,11 @@ iD.presets.Preset = function(id, preset, fields) { tags = _.clone(tags); for (var k in applyTags) { - if (applyTags[k] !== '*') tags[k] = applyTags[k]; + if (applyTags[k] === '*') { + tags[k] = 'yes'; + } else { + tags[k] = applyTags[k]; + } } for (var f in preset.fields) { @@ -29361,12 +29380,29 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "2", "3" ], - "default": "yes", + "default": true, "sourcetag": "Bing", "logo": "bing_maps.png", "logo_url": "http://www.bing.com/maps", "terms_url": "http://opengeodata.org/microsoft-imagery-details" }, + { + "name": "Locator Overlay", + "template": "http://{t}.tiles.mapbox.com/v3/openstreetmap.map-btyhiati/{z}/{x}/{y}.png", + "description": "Shows major features to help orient you.", + "overlay": true, + "default": true, + "scaleExtent": [ + 0, + 16 + ], + "subdomains": [ + "a", + "b", + "c" + ], + "terms_url": "http://mapbox.com/tos/" + }, { "name": "MapBox Satellite", "template": "http://{t}.tiles.mapbox.com/v3/openstreetmap.map-4wvf9l0l/{z}/{x}/{y}.png", @@ -32321,6 +32357,27 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "terms": [], "name": "Pub" }, + "amenity/ranger_station": { + "fields": [ + "building_area", + "opening_hours", + "operator", + "phone" + ], + "geometry": [ + "point", + "area" + ], + "terms": [ + "visitor center", + "permit center", + "backcountry office" + ], + "tags": { + "amenity": "ranger_station" + }, + "name": "Ranger Station" + }, "amenity/restaurant": { "icon": "restaurant", "fields": [ @@ -32472,8 +32529,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," }, "amenity/toilets": { "fields": [ + "toilets/disposal", "operator", - "building_area" + "building_area", + "access" ], "geometry": [ "point", @@ -32482,7 +32541,15 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," ], "terms": [ "bathroom", - "restroom" + "restroom", + "outhouse", + "privy", + "head", + "lavatory", + "latrine", + "water closet", + "WC", + "W.C." ], "tags": { "amenity": "toilets" @@ -35911,6 +35978,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "tags": { "tourism": "artwork" }, + "terms": [ + "mural", + "sculpture", + "statue" + ], "name": "Artwork" }, "tourism/attraction": { @@ -37261,6 +37333,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "type": "combo", "label": "Surface" }, + "toilets/disposal": { + "key": "toilets:disposal", + "type": "combo", + "label": "Disposal" + }, "tourism": { "key": "tourism", "type": "combo", @@ -49209,6 +49286,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "title": "Background", "description": "Background settings", "percent_brightness": "{opacity}% brightness", + "custom": "Custom", + "custom_prompt": "Enter a tile template. Valid tokens are {z}, {x}, {y} for Z/X/Y scheme and {u} for quadtile scheme.", "fix_misalignment": "Fix misalignment", "reset": "reset" }, @@ -49231,7 +49310,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "just_edited": "You just edited OpenStreetMap!", "view_on_osm": "View on OSM", "facebook": "Share on Facebook", - "tweet": "Tweet", + "twitter": "Share on Twitter", + "google": "Share on Google+", "help_html": "Your changes should appear in the \"Standard\" layer in a few minutes. Other layers, and certain features, may take longer\n(details).\n" }, "confirm": { @@ -49279,7 +49359,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "imagery": "# Imagery\n\nAerial imagery is an important resource for mapping. A combination of\nairplane flyovers, satellite views, and freely-compiled sources are available\nin the editor under the 'Background Settings' menu on the left.\n\nBy default a [Bing Maps](http://www.bing.com/maps/) satellite layer is\npresented in the editor, but as you pan and zoom the map to new geographical\nareas, new sources will become available. Some countries, like the United\nStates, France, and Denmark have very high-quality imagery available for some areas.\n\nImagery is sometimes offset from the map data because of a mistake on the\nimagery provider's side. If you see a lot of roads shifted from the background,\ndon't immediately move them all to match the background. Instead you can adjust\nthe imagery so that it matches the existing data by clicking 'Fix alignment' at\nthe bottom of the Background Settings UI.\n", "addresses": "# Addresses\n\nAddresses are some of the most useful information for the map.\n\nAlthough addresses are often represented as parts of streets, in OpenStreetMap\nthey're recorded as attributes of buildings and places along streets.\n\nYou can add address information to places mapped as building outlines\nas well as those mapped as single points. The optimal source of address\ndata is from an on-the-ground survey or personal knowledge - as with any\nother feature, copying from commercial sources like Google Maps is strictly\nforbidden.\n", "inspector": "# Using the Inspector\n\nThe inspector is the user interface element on the right-hand side of the\npage that appears when a feature is selected and allows you to edit its details.\n\n### Selecting a Feature Type\n\nAfter you add a point, line, or area, you can choose what type of feature it\nis, like whether it's a highway or residential road, supermarket or cafe.\nThe inspector will display buttons for common feature types, and you can\nfind others by typing what you're looking for in the search box.\n\nClick the 'i' in the bottom-right-hand corner of a feature type button to\nlearn more about it. Click a button to choose that type.\n\n### Using Forms and Editing Tags\n\nAfter you choose a feature type, or when you select a feature that already\nhas a type assigned, the inspector will display fields with details about\nthe feature like its name and address.\n\nBelow the fields you see, you can click icons to add other details,\nlike [Wikipedia](http://www.wikipedia.org/) information, wheelchair\naccess, and more.\n\nAt the bottom of the inspector, click 'Additional tags' to add arbitrary\nother tags to the element. [Taginfo](http://taginfo.openstreetmap.org/) is a\ngreat resource for learn more about popular tag combinations.\n\nChanges you make in the inspector are automatically applied to the map.\nYou can undo them at any time by clicking the 'Undo' button.\n\n### Closing the Inspector\n\nYou can close the inspector by clicking the close button in the top-right,\npressing the 'Escape' key, or clicking on the map.\n", - "buildings": "# Buildings\n\nOpenStreetMap is the world's largest database of buildings. You can create\nand improve this database.\n\n### Selecting\n\nYou can select a building by clicking on its border. This will highlight the\nbuilding and open a small tools menu and a sidebar showing more information\nabout the building.\n\n### Modifying\n\nSometimes buildings are incorrectly placed or have incorrect tags.\n\nTo move an entire building, select it, then click the 'Move' tool. Move your\nmouse to shift the building, and click when it's correctly placed.\n\nTo fix the specific shape of a building, click and drag the nodes that form\nits border into better places.\n\n### Creating\n\nOne of the main questions around adding buildings to the map is that\nOpenStreetMap records buildings both as shapes and points. The rule of thumb\nis to _map a building as a shape whenever possible_, and map companies, homes,\namenities, and other things that operate out of buildings as points placed\nwithin the building shape.\n\nStart drawing a building as a shape by clicking the 'Area' button in the top\nleft of the interface, and end it either by pressing 'Return' on your keyboard\nor clicking on the first node drawn to close the shape.\n\n### Deleting\n\nIf a building is entirely incorrect - you can see that it doesn't exist in satellite\nimagery and ideally have confirmed locally that it's not present - you can delete\nit, which removes it from the map. Be cautious when deleting features -\nlike any other edit, the results are seen by everyone and satellite imagery\nis often out of date, so the building could simply be newly built.\n\nYou can delete a building by clicking on it to select it, then clicking the\ntrash can icon or pressing the 'Delete' key.\n" + "buildings": "# Buildings\n\nOpenStreetMap is the world's largest database of buildings. You can create\nand improve this database.\n\n### Selecting\n\nYou can select a building by clicking on its border. This will highlight the\nbuilding and open a small tools menu and a sidebar showing more information\nabout the building.\n\n### Modifying\n\nSometimes buildings are incorrectly placed or have incorrect tags.\n\nTo move an entire building, select it, then click the 'Move' tool. Move your\nmouse to shift the building, and click when it's correctly placed.\n\nTo fix the specific shape of a building, click and drag the nodes that form\nits border into better places.\n\n### Creating\n\nOne of the main questions around adding buildings to the map is that\nOpenStreetMap records buildings both as shapes and points. The rule of thumb\nis to _map a building as a shape whenever possible_, and map companies, homes,\namenities, and other things that operate out of buildings as points placed\nwithin the building shape.\n\nStart drawing a building as a shape by clicking the 'Area' button in the top\nleft of the interface, and end it either by pressing 'Return' on your keyboard\nor clicking on the first node drawn to close the shape.\n\n### Deleting\n\nIf a building is entirely incorrect - you can see that it doesn't exist in satellite\nimagery and ideally have confirmed locally that it's not present - you can delete\nit, which removes it from the map. Be cautious when deleting features -\nlike any other edit, the results are seen by everyone and satellite imagery\nis often out of date, so the building could simply be newly built.\n\nYou can delete a building by clicking on it to select it, then clicking the\ntrash can icon or pressing the 'Delete' key.\n", + "relations": "# Relations\n\nA relation is a special type of feature in OpenStreetMap that groups together\nother features. For example, two common types of relations are *route relations*,\nwhich group together sections of road that belong to a specific freeway or\nhighway, and *multipolygons*, which group together several lines that define\na complex area (one with several pieces or holes in it like a donut).\n\nThe group of features in a relation are called *members*. In the sidebar, you can\nsee which relations a feature is a member of, and click on a relation there\nto select the it. When the relation is selected, you can see all of its\nmembers listed in the sidebar and highlighted on the map.\n\nFor the most part, iD will take care of maintaining relations automatically\nwhile you edit. The main thing you should be aware of is that if you delete a\nsection of road to redraw it more accurately, you should make sure that the\nnew section is a member of the same relations as the original.\n\n## Editing Relations\n\nIf you want to edit relations, here are the basics.\n\nTo add a feature to a relation, select the feature, click the \"+\" button in the\n\"All relations\" section of the sidebar, and select or type the name of the relation.\n\nTo create a new relation, select the first feature that should be a member,\nclick the \"+\" button in the \"All relations\" section, and select \"New relation...\".\n\nTo remove a feature from a relation, select the feature and click the trash\nbutton next to the relation you want to remove it from.\n\nYou can create multipolygons with holes using the \"Merge\" tool. Draw two areas (inner\nand outer), hold the Shift key and click on each of them to select them both, and then\nclick the \"Merge\" (+) button.\n" }, "intro": { "navigation": { @@ -49663,6 +49744,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "surface": { "label": "Surface" }, + "toilets/disposal": { + "label": "Disposal" + }, "tourism": { "label": "Type" }, @@ -49887,6 +49971,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "name": "Pub", "terms": "" }, + "amenity/ranger_station": { + "name": "Ranger Station", + "terms": "visitor center,permit center,backcountry office" + }, "amenity/restaurant": { "name": "Restaurant", "terms": "bar,cafeteria,café,canteen,chophouse,coffee shop,diner,dining room,dive*,doughtnut shop,drive-in,eatery,eating house,eating place,fast-food place,greasy spoon,grill,hamburger stand,hashery,hideaway,hotdog stand,inn,joint*,luncheonette,lunchroom,night club,outlet*,pizzeria,saloon,soda fountain,watering hole" @@ -49913,7 +50001,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," }, "amenity/toilets": { "name": "Toilets", - "terms": "bathroom,restroom" + "terms": "bathroom,restroom,outhouse,privy,head,lavatory,latrine,water closet,WC,W.C." }, "amenity/townhall": { "name": "Town Hall", @@ -50833,7 +50921,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," }, "tourism/artwork": { "name": "Artwork", - "terms": "" + "terms": "mural,sculpture,statue" }, "tourism/attraction": { "name": "Tourist Attraction", diff --git a/vendor/assets/iD/iD/img/sprite.svg b/vendor/assets/iD/iD/img/sprite.svg index 771354c8b..760579c35 100644 --- a/vendor/assets/iD/iD/img/sprite.svg +++ b/vendor/assets/iD/iD/img/sprite.svg @@ -10,10 +10,10 @@ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" - width="700" + width="800" height="560" id="svg12393" - inkscape:version="0.48.2 r9819" + inkscape:version="0.48.4 r9939" sodipodi:docname="sprite.svg"> + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-global="false"> + id="grid6326" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> @@ -47,7 +53,8 @@ + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:0.99999988;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> image/svg+xml - + + style="display:inline"> + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.99999905;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.25;fill:#000000;fill-opacity:1;display:inline" /> + style="color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.1;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.4;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.6;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.1;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.1;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> @@ -179,39 +194,44 @@ d="m 388,72.362183 0,-2 10,-4 2,0 0,2 -4,10 -2,0 0,-6 z" transform="translate(0,-62.362186)" id="path15565" - style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"> + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.55555558;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"> + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.55555558;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;fill:#000000;fill-opacity:1;display:inline"> + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.4;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.6;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.1;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#1c1c1c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;fill:#000000;fill-opacity:1;display:inline"> + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;fill:#000000;fill-opacity:1;display:inline"> + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.4;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.6;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.55555558;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#7092ff;fill-opacity:1;stroke:none;stroke-width:0.50000125;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#222222;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#222222;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#222222;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#a9a9a9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#a9a9a9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#a9a9a9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#a9a9a9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#a9a9a9;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#a9a9a9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#a9a9a9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#a9a9a9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#a9a9a9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#a9a9a9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#a9a9a9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#e06d5f;fill-opacity:0.15686275;stroke:#e06d5f;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="color:#000000;fill:#77d3de;fill-opacity:0.19215686;stroke:#77d3de;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="color:#000000;fill:#8cd05f;fill-opacity:0.15686275;stroke:#8cd05f;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="color:#000000;fill:#aaaaaa;fill-opacity:0.15686275;stroke:#aaaaaa;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> @@ -591,12 +676,14 @@ d="m 106.03125,-129.34375 a 3.46875,3.46875 0 1 1 -6.9375,0 3.46875,3.46875 0 1 1 6.9375,0 z" transform="matrix(1.009009,0,0,1.009009,-410.98649,14.371188)" id="path20243-7" - style="opacity:0.20000000000000001;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.15;color:#000000;fill:#000000;fill-opacity:0.15686275;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> @@ -892,12 +1010,14 @@ d="m 106.03125,-129.34375 a 3.46875,3.46875 0 1 1 -6.9375,0 3.46875,3.46875 0 1 1 6.9375,0 z" transform="matrix(1.009009,0,0,1.009009,-410.98649,14.371188)" id="path7074" - style="opacity:0.20000000000000001;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.2;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.15;color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.15;color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.15;color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.15;color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="opacity:0.15;color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="opacity:0.15;color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#e06d5f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#e06d5f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#7092ff;fill-opacity:1;stroke:none;stroke-width:11.66666508;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.055;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> @@ -1168,7 +1315,8 @@ + style="color:#000000;fill:#a9a9a9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#a9a9a9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#a9a9a9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#a9a9a9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#a9a9a9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> @@ -1283,39 +1440,47 @@ d="m 67.183962,443.57193 a 14.904482,5.9469357 0 1 1 -29.808964,0 14.904482,5.9469357 0 1 1 29.808964,0 z" transform="matrix(1.8169101,0.18420004,-0.74043709,1.8891074,360.32499,-422.91527)" id="path10275" - style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#a9a9a9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#a9a9a9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#8cd05f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#c1c1c1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#c1c1c1;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#a9a9a9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#a9a9a9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> @@ -1349,129 +1517,158 @@ + style="color:#000000;fill:#60d4de;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#60d4de;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#60d4de;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#60d4de;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#60d4de;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#60d4de;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#60d4de;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter8013-4);enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.50000125;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#597be7;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.99999905;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.99999905;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.99999905;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.99999905;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#bfbfbf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#bfbfbf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#bfbfbf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#bfbfbf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#bfbfbf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.25;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.15;color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="font-size:17.49651146px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:120.00000477%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#e4a4be;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Avenir;-inkscape-font-specification:Avenir" /> + style="font-size:16.71258354px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:100%;letter-spacing:0px;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#222222;fill-rule:nonzero;enable-background:accumulate;font-family:Helvetica Neue" + inkscape:connector-curvature="0" /> + style="font-size:16.71258354px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:100%;letter-spacing:0px;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.5;color:#000000;fill:#000000;fill-rule:nonzero;enable-background:accumulate;font-family:Helvetica Neue" + inkscape:connector-curvature="0" /> + style="font-size:16.71258354px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:100%;letter-spacing:0px;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-rule:nonzero;enable-background:accumulate;font-family:Helvetica Neue" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.79999375;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7092ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> @@ -1627,15 +1848,18 @@ d="m 524,5 -1,1 0,2 1,1 2,0 1,-1 0,-2 -1,-1 -2,0 z m 10,0 -1,1 0,2 1,1 2,0 1,-1 0,-2 -1,-1 -2,0 z m -9,1 c 0.5523,0 1,0.4477 1,1 0,0.5523 -0.4477,1 -1,1 -0.5523,0 -1,-0.4477 -1,-1 0,-0.5523 0.4477,-1 1,-1 z m 10,0 c 0.5523,0 1,0.4477 1,1 0,0.5523 -0.4477,1 -1,1 -0.5523,0 -1,-0.4477 -1,-1 0,-0.5523 0.4477,-1 1,-1 z m -6,6 -1,1 0,2 1,1 2,0 1,-1 0,-2 -1,-1 -2,0 z m 1,1 c 0.5523,0 1,0.4477 1,1 0,0.5523 -0.4477,1 -1,1 -0.5523,0 -1,-0.4477 -1,-1 0,-0.5523 0.4477,-1 1,-1 z" transform="translate(25,-3.0624999e-6)" id="path17679" - style="color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + style="color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.5;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.5;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.5;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.5;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.5;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.5;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="opacity:0.5"> + style="color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.5;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.5;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="opacity:0.5"> + style="color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5"> + style="color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="opacity:0.5;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.5;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.5;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.5;color:#000000;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + inkscape:connector-curvature="0" /> @@ -1833,5 +2090,13 @@ d="m 34,43.999997 -7,11 1,1 14,0 1,-1 -7,-11 z m 1,3 1,1 0,2 -1,1 -1,-1 0,-2 z m 0,5 1,1 -1,1 -1,-1 z" id="path6503" sodipodi:nodetypes="ccccccccccccccccccc" /> + diff --git a/vendor/assets/iD/iD/locales/ast.json b/vendor/assets/iD/iD/locales/ast.json index 0a2426782..05fbe0f98 100644 --- a/vendor/assets/iD/iD/locales/ast.json +++ b/vendor/assets/iD/iD/locales/ast.json @@ -184,8 +184,7 @@ "edited_osm": "¡Editáu OSM!", "just_edited": "¡Acaba d'editar OpenStreetMap!", "view_on_osm": "Ver en OSM", - "facebook": "Compartir en Facebook", - "tweet": "Tuitear" + "facebook": "Compartir en Facebook" }, "confirm": { "okay": "Aceutar" diff --git a/vendor/assets/iD/iD/locales/bg-BG.json b/vendor/assets/iD/iD/locales/bg-BG.json index 58f21b20a..d9d860186 100644 --- a/vendor/assets/iD/iD/locales/bg-BG.json +++ b/vendor/assets/iD/iD/locales/bg-BG.json @@ -252,8 +252,7 @@ "edited_osm": "Редактирахте OSM!", "just_edited": "Вие редактирахте OpenStreetMap!", "view_on_osm": "Вижте в OSM", - "facebook": "Споделете във Facebook", - "tweet": "Tweet" + "facebook": "Споделете във Facebook" }, "confirm": { "okay": "Окей" diff --git a/vendor/assets/iD/iD/locales/bs.json b/vendor/assets/iD/iD/locales/bs.json index ce94246df..9b4374c06 100644 --- a/vendor/assets/iD/iD/locales/bs.json +++ b/vendor/assets/iD/iD/locales/bs.json @@ -167,9 +167,11 @@ } }, "undo": { + "tooltip": "Poništiti: {action}", "nothing": "Ništa za poništiti." }, "redo": { + "tooltip": "Obnoviti: {action}", "nothing": "Ništa za vratiti." }, "tooltip_keyhint": "Prečica:", @@ -261,7 +263,7 @@ "just_edited": "Upravo ste uredili OpenStreetMap kartu!", "view_on_osm": "Pogledajte na OSM-u", "facebook": "Podijeliti na Facebooku", - "tweet": "Podijeliti na Twitteru" + "help_html": "Vaše promjene bi se trebale pojaviti u \"standardnom\" sloju za nekoliko minuta. Drugi slojevi, i određene značajke, mogu uzeti više vremena\n(details).\n" }, "confirm": { "okay": "Uredu" @@ -517,9 +519,21 @@ "fee": { "label": "Provizija" }, + "fire_hydrant/type": { + "label": "Vrsta" + }, "fixme": { "label": "Popravi me" }, + "generator/method": { + "label": "Način" + }, + "generator/source": { + "label": "Izvor" + }, + "generator/type": { + "label": "Vrsta" + }, "highway": { "label": "Vrsta" }, @@ -678,6 +692,9 @@ "surface": { "label": "Površina" }, + "toilets/disposal": { + "label": "Način odlaganja otpada iz toaleta" + }, "tourism": { "label": "Vrsta" }, @@ -1058,6 +1075,10 @@ "name": "Stanica hitne pomoći", "terms": "stanica hitne pomoći,hitna pomoć,hitna medicinska pomoć" }, + "emergency/fire_hydrant": { + "name": "Hidrant za požar", + "terms": "hidrant,hidrant za požar" + }, "emergency/phone": { "name": "Telefon za hitne slučajeve", "terms": "telefon za hitne slučajeve,hitna telefonska linija" @@ -1374,6 +1395,10 @@ "name": "Bazen", "terms": "bazen,bazen za plivanje,plivački bazen" }, + "leisure/track": { + "name": "Staza za utrku", + "terms": "staza za utrku,trkaća staza" + }, "line": { "name": "Linija", "terms": "linija" @@ -1542,6 +1567,10 @@ "name": "Energija", "terms": "enegija,napajanje" }, + "power/generator": { + "name": "Generator električne energije", + "terms": "generator el. energije,generator " + }, "power/line": { "name": "Energetski vod", "terms": "energetski vod,naponski vod,elektroenergetska linija" diff --git a/vendor/assets/iD/iD/locales/ca.json b/vendor/assets/iD/iD/locales/ca.json index 79e5bfa30..f4163bd3a 100644 --- a/vendor/assets/iD/iD/locales/ca.json +++ b/vendor/assets/iD/iD/locales/ca.json @@ -263,7 +263,6 @@ "just_edited": "Acabes d'editar l'OpenStreetMap!", "view_on_osm": "Mostra-ho a OSM", "facebook": "Comparteix a Facebook", - "tweet": "Tuiteja-ho", "help_html": "Els canvis haurien d'aparèxier a la capa \"Estàndard\" en pocs minuts. Altres capes i algunes característiques, poden trigar més temps.\n(detalls).\n" }, "confirm": { @@ -693,6 +692,9 @@ "surface": { "label": "Superfície" }, + "toilets/disposal": { + "label": "Contenidor" + }, "tourism": { "label": "Tipus" }, diff --git a/vendor/assets/iD/iD/locales/cs.json b/vendor/assets/iD/iD/locales/cs.json index 5a3444941..b3eef9af7 100644 --- a/vendor/assets/iD/iD/locales/cs.json +++ b/vendor/assets/iD/iD/locales/cs.json @@ -263,7 +263,6 @@ "just_edited": "Právě jste upravil OpenStreetMap!", "view_on_osm": "Zobrazit na OSM", "facebook": "Sdílet na Facebooku", - "tweet": "Tweet", "help_html": "Vaše úpravy by se obvykle měly objevit na \"Standardní\" vrstvě během několika minut. U některých objektů a ostatních vrstev to může trvat déle⏎\n(detaily anglicky).⏎\n" }, "confirm": { @@ -810,32 +809,40 @@ "terms": "kino,film,cinema,multikino,bio,biograf,kinematograf" }, "amenity/college": { - "name": "College" + "name": "College", + "terms": "Vysoká škola,univerzita,akademie" }, "amenity/courthouse": { - "name": "Soud" + "name": "Soud", + "terms": "soud,soudní budova,soudní dvůr" }, "amenity/drinking_water": { "name": "Pitná voda", "terms": "pítko,fontána,fontánka" }, "amenity/embassy": { - "name": "Velvyslanectví" + "name": "Velvyslanectví", + "terms": "velvyslanectví,vyslanectví,ambasáda,zastupitelství" }, "amenity/fast_food": { - "name": "Rychlé občerstvení" + "name": "Rychlé občerstvení", + "terms": "rychlé občerstvení" }, "amenity/fire_station": { - "name": "Hasiči" + "name": "Hasiči", + "terms": "požární stanice,hasičská stanice" }, "amenity/fountain": { - "name": "Fontána, vodotrysk" + "name": "Fontána, vodotrysk", + "terms": "vodotrysk,fontána,fontánka,kašna" }, "amenity/fuel": { - "name": "Čerpací stanice" + "name": "Čerpací stanice", + "terms": "benzinová pumpa,čerpací stanice,pumpa" }, "amenity/grave_yard": { - "name": "Pohřebiště" + "name": "Pohřebiště", + "terms": "hřbitov,pohřebiště" }, "amenity/hospital": { "name": "Nemocnice", @@ -846,16 +853,20 @@ "terms": "jesle,školka,kindergarten,předškolní" }, "amenity/library": { - "name": "Knihovna" + "name": "Knihovna", + "terms": "knihovna" }, "amenity/marketplace": { - "name": "Trhoviště" + "name": "Trhoviště", + "terms": "tržiště,trh" }, "amenity/parking": { - "name": "Parkoviště" + "name": "Parkoviště", + "terms": "parkoviště,parkování,parkovací stání" }, "amenity/pharmacy": { - "name": "Lékárna" + "name": "Lékárna", + "terms": "lékárna,apatyka" }, "amenity/place_of_worship": { "name": "Chrám", @@ -886,10 +897,12 @@ "terms": "schránka,poštovní schránka,schránka na dopisy" }, "amenity/post_office": { - "name": "Pošta" + "name": "Pošta", + "terms": "pošta,poštovní úřad,hlavní pošta" }, "amenity/pub": { - "name": "Hospoda" + "name": "Hospoda", + "terms": "hospoda,hostinec,hospůdka,pivnice,výčep,lokál" }, "amenity/restaurant": { "name": "Restaurace", @@ -900,14 +913,16 @@ "terms": "univerzita,universita,fakulta,vysoká škola,univerzitní,universitní,katedra,ústav,college" }, "amenity/swimming_pool": { - "name": "Plavecký bazén" + "name": "Plavecký bazén", + "terms": "koupaliště,bazén,plovárna" }, "amenity/taxi": { "name": "Stanoviště taxi", "terms": "taxi,taxi stání,drožka" }, "amenity/telephone": { - "name": "Telefon" + "name": "Telefon", + "terms": "telefon" }, "amenity/theatre": { "name": "Divadlo", @@ -930,32 +945,40 @@ "terms": "popelnice,kontejner,odpadkový koš,odpadky" }, "area": { - "name": "Plocha" + "name": "Plocha", + "terms": "území,oblast,plocha,prostor" }, "barrier": { - "name": "Zábrana" + "name": "Zábrana", + "terms": "zábrana,ohrada,bariéra" }, "barrier/block": { - "name": "Masivní blok" + "name": "Masivní blok", + "terms": "betonový blok,beton,zátaras,překážka" }, "barrier/bollard": { - "name": "Sloupek" + "name": "Sloupek", + "terms": "patník,sloupek" }, "barrier/cattle_grid": { - "name": "Přejezdový rošt" + "name": "Přejezdový rošt", + "terms": "Mříž proti pohybu dobytka,mříž,příkop,krávy" }, "barrier/city_wall": { "name": "Hradby", "terms": "hradby" }, "barrier/cycle_barrier": { - "name": "Zábrana proti kolům" + "name": "Zábrana proti kolům", + "terms": "zábrana pro cyklisty" }, "barrier/ditch": { - "name": "Příkop" + "name": "Příkop", + "terms": "příkop,járek,jáma,strouha,škarpa,stoka" }, "barrier/entrance": { - "name": "Vchod" + "name": "Vchod", + "terms": "vstup,vchod,přístup,vjezd" }, "barrier/fence": { "name": "Plot", @@ -966,10 +989,12 @@ "terms": "brána" }, "barrier/hedge": { - "name": "Živý plot" + "name": "Živý plot", + "terms": "živý plot,keříky,křoví,okrasný plot" }, "barrier/kissing_gate": { - "name": "Turniket" + "name": "Turniket", + "terms": "Zábrana pro dobytek,krávy" }, "barrier/lift_gate": { "name": "Závora", @@ -980,41 +1005,67 @@ "terms": "opěrná zeď" }, "barrier/stile": { - "name": "Schůdky přes ohradu" + "name": "Schůdky přes ohradu", + "terms": "schůdky,žebřík" }, "barrier/toll_booth": { - "name": "Mýtná brána" + "name": "Mýtná brána", + "terms": "budka pro výběr mýta,mýtnice,výběr mýta,mýto,myto,poplatek,vstupné,kasa,pokladna" }, "barrier/wall": { "name": "Zeď", "terms": "zděný plot, zeď" }, "boundary/administrative": { - "name": "Administrativní hranice" + "name": "Administrativní hranice", + "terms": "administrativní hranice,stát,kraj,okres" }, "building": { "name": "Budova", "terms": "budova" }, "building/apartments": { - "name": "Byty" + "name": "Byty", + "terms": "bytovka,obytná budova,panelák,věžák,barák,činžák" + }, + "building/commercial": { + "name": "Obchodní budova", + "terms": "Obchody,firmy,firma,prodej,podnik,podniky,kanceláře" }, "building/entrance": { "name": "Vchod", "terms": "vchod" }, + "building/garage": { + "name": "Garáž", + "terms": "garáž,garáže,parkování,kryté parkování" + }, "building/house": { "name": "Dům", "terms": "dům" }, + "building/hut": { + "name": "Chata", + "terms": "chatka,dřevěnice" + }, + "building/industrial": { + "name": "Průmyslová budova", + "terms": "průmyslová budova,industriální,výroba" + }, + "building/residential": { + "name": "Obytná budova", + "terms": "obytná budova,ubytování,bývání,byt" + }, "emergency/ambulance_station": { "name": "Zdravotní pohotovost" }, "emergency/phone": { - "name": "Tísňový telefon" + "name": "Tísňový telefon", + "terms": "nouzový telefon,SOS,tísňová linka" }, "entrance": { - "name": "Vchod" + "name": "Vchod", + "terms": "vchod,východ,únikový východ,brána,dveře,vrata" }, "highway": { "name": "Pozemní komunikace", @@ -1157,53 +1208,68 @@ "terms": "historické místo" }, "historic/archaeological_site": { - "name": "Archeologické naleziště" + "name": "Archeologické naleziště", + "terms": "archeologické naleziště,vykopávky,archeologický průzkum" }, "historic/boundary_stone": { - "name": "Hraniční káme" + "name": "Hraniční káme", + "terms": "hraniční kámen,hranice,značka" }, "historic/castle": { - "name": "Hrad, zámek" + "name": "Hrad, zámek", + "terms": "hradiště,zámek,král,sídlo,ruina,zřícenina" }, "historic/memorial": { - "name": "Památník" + "name": "Památník", + "terms": "pamětihodnost,památník,pomník,hrdina" }, "historic/monument": { - "name": "Monument" + "name": "Monument", + "terms": "pamětihodnost,památník,pomník,hrdina" }, "historic/ruins": { - "name": "Zřícenina, ruiny" + "name": "Zřícenina, ruiny", + "terms": "zříceniny,zřícenina" }, "historic/wayside_cross": { - "name": "Kříž" + "name": "Kříž", + "terms": "boží muka,křesťanský,kříž při cestě,krucifix" }, "historic/wayside_shrine": { - "name": "Boží muka" + "name": "Boží muka", + "terms": "svatostánek u cesty,svatyně,svatostánek" }, "landuse": { - "name": "Užití krajiny" + "name": "Užití krajiny", + "terms": "využití území,využití,les,louka,hora,pole" }, "landuse/allotments": { - "name": "Zahrádky" + "name": "Zahrádky", + "terms": "zahradkářská osada,zahrádky,zahrady,zahradkářská kolonie" }, "landuse/basin": { - "name": "Umělá vodní plocha" + "name": "Umělá vodní plocha", + "terms": "zdrž,nádrž,voda,jezero,rybník" }, "landuse/cemetery": { "name": "Hřbitov", "terms": "hřbitov,pohřebiště" }, "landuse/commercial": { - "name": "Obchody" + "name": "Obchody", + "terms": "obchodní,komerční" }, "landuse/construction": { - "name": "Výstavba" + "name": "Výstavba", + "terms": "stavba,konstrukce,výstavba" }, "landuse/farm": { - "name": "Zemědělská půda" + "name": "Zemědělská půda", + "terms": "pole,farma,dobytek,zahrady,pěstitelská plocha" }, "landuse/farmyard": { - "name": "Farma" + "name": "Farma", + "terms": "pole,farma,dobytek,zahrady,pěstitelská plocha" }, "landuse/forest": { "name": "Les", @@ -1214,110 +1280,144 @@ "terms": "tráva" }, "landuse/industrial": { - "name": "Průmysl" + "name": "Průmysl", + "terms": "průmyslové,výroba,industriální" }, "landuse/meadow": { - "name": "Louka" + "name": "Louka", + "terms": "louka,pastviny,tráva" }, "landuse/orchard": { - "name": "Sad" + "name": "Sad", + "terms": "sad,stromy,ovoce,ovocné stromy,ovocný sad" }, "landuse/quarry": { - "name": "Lom" + "name": "Lom", + "terms": "kamenolom,lom,důl,skála,kameny,štěrk" }, "landuse/residential": { - "name": "Rezidenční oblast" + "name": "Rezidenční oblast", + "terms": "obytné,domy" }, "landuse/retail": { - "name": "Obchody" + "name": "Obchody", + "terms": "obchod,maloobchodní" }, "landuse/vineyard": { - "name": "Vinice" + "name": "Vinice", + "terms": "vinice,vinohrad,hrozny,víno" }, "leisure": { - "name": "Volný čas" + "name": "Volný čas", + "terms": "oddech,volno,volná chvíle,odpočinek,volný čas" + }, + "leisure/dog_park": { + "name": "Psí park", + "terms": "park pro psy,psí park" }, "leisure/garden": { "name": "Zahrada", "terms": "zahrada" }, "leisure/golf_course": { - "name": "Golfové hřiště" + "name": "Golfové hřiště", + "terms": "golfové hřiště,golf" }, "leisure/marina": { - "name": "Přístaviště" + "name": "Přístaviště", + "terms": "přístav,jachta,jachty,loď" }, "leisure/park": { "name": "Park", "terms": "les,prales,louka,trávník,park,hřiště,parčík,zeleň,lesní,strom,křoví" }, "leisure/pitch": { - "name": "Hřiště" + "name": "Hřiště", + "terms": "sportovní kurt,hřiště,dvorec,kurt,stadion" }, "leisure/pitch/american_football": { - "name": "Hřiště pro americký fotbal" + "name": "Hřiště pro americký fotbal", + "terms": "hřiště amerického fotbalu,americký fotbal" }, "leisure/pitch/baseball": { - "name": "Baseballové hřiště" + "name": "Baseballové hřiště", + "terms": "basebalové hřiště,basebal" }, "leisure/pitch/basketball": { - "name": "Basketbalové hřiště" + "name": "Basketbalové hřiště", + "terms": "basketbalové hřiště,basketbal" }, "leisure/pitch/soccer": { - "name": "Fotbalové hřiště" + "name": "Fotbalové hřiště", + "terms": "fotbalové hřiště,fotbal" }, "leisure/pitch/tennis": { - "name": "Tenisové kurty" + "name": "Tenisové kurty", + "terms": "tenisové hřiště,tenis,kurt,dvorec" }, "leisure/pitch/volleyball": { - "name": "Volejbalové hřiště" + "name": "Volejbalové hřiště", + "terms": "volejbalové hřiště,volejbal" }, "leisure/playground": { "name": "Dětské hřiště", "terms": "hřiště,dětské hřiště,prolézačky,prolézačka,pískoviště,houpačky,houpačka,skluzavky,skluzavka" }, "leisure/slipway": { - "name": "Vodní skluz" + "name": "Vodní skluz", + "terms": "spouštění lodi,dok,loděnice,skluz v loděnici,skluzavka" }, "leisure/stadium": { - "name": "Stadion" + "name": "Stadion", + "terms": "stadion,fotbal,fotbalový stadión,hřiště" }, "leisure/swimming_pool": { - "name": "Plavecký bazén" + "name": "Plavecký bazén", + "terms": "plovárna,koupaliště" }, "line": { - "name": "Cesta" + "name": "Cesta", + "terms": "čára,cesta,trať,kanál,trasa" }, "man_made": { - "name": "Umělý objekt" + "name": "Umělý objekt", + "terms": "lidský výtvor,artefakt,konstrukce,dílo,stavba,objekt,mechanizmus" }, "man_made/breakwater": { - "name": "Vlnolam" + "name": "Vlnolam", + "terms": "pobřežní hráz,násep,kameny,molo,zábrana" }, "man_made/cutline": { - "name": "Průsek" + "name": "Průsek", + "terms": "lesní průsek,holina" }, "man_made/lighthouse": { - "name": "Maják" + "name": "Maják", + "terms": "maják,světlo" }, "man_made/pier": { - "name": "Molo" + "name": "Molo", + "terms": "molo,sloupy,pilíř,vlnolam,hráz,kotva,kotvení,ukotvení,lodě,promenáda,lávka,promenáda a přístaviště,přístavní hráz" }, "man_made/pipeline": { - "name": "Dálkové potrubí" + "name": "Dálkové potrubí", + "terms": "rouura,roury,transport,vodovod,ropovod,plynovod,kanál,rozvod" }, "man_made/survey_point": { - "name": "Triangulační bod" + "name": "Triangulační bod", + "terms": "triangulační bod,nivelizační bod,nivelace,referenční bod" }, "man_made/tower": { - "name": "Věž" + "name": "Věž", + "terms": "věž,sloup,stožár,bašta,pevnost,hrad" }, "man_made/wastewater_plant": { "name": "Čistička odpadních vod", "terms": "čistírna,čistička,čistírna odpadních vod,ČOV,čovka" }, "man_made/water_tower": { - "name": "Vodárenská věž" + "name": "Vodárenská věž", + "terms": "vodojem,věž s vodojemem,věž,vodárenská věž" }, "man_made/water_well": { "name": "Studna" @@ -1431,7 +1531,8 @@ "name": "Transformátorová stanice" }, "power/tower": { - "name": "Elektrický stožár" + "name": "Elektrický stožár", + "terms": "sloup vysokého napětí,vysoké napětí" }, "power/transformer": { "name": "Transformátor" diff --git a/vendor/assets/iD/iD/locales/da.json b/vendor/assets/iD/iD/locales/da.json index c4ab89168..bdbb7187a 100644 --- a/vendor/assets/iD/iD/locales/da.json +++ b/vendor/assets/iD/iD/locales/da.json @@ -241,6 +241,8 @@ "title": "Baggrund", "description": "Baggrundsindstillinger", "percent_brightness": "{opacity}% lysstyrke", + "custom": "Brugerdefineret", + "custom_prompt": "Angiv en tile skabelon. Valide værdier er {z}, {x}, {y} for Z/X/Y skemaer og {u} for quadtile skema. ", "fix_misalignment": "Ret fejljustering", "reset": "nulstil" }, @@ -263,7 +265,8 @@ "just_edited": "Du har lige redigeret OpenStreetMap!", "view_on_osm": "Vis på OSM", "facebook": "Del på Facebook", - "tweet": "Tweet", + "twitter": "Del på Twitter", + "google": "Del på Google+", "help_html": "Dine ændringer skulle blive synlige om nogle få minutter i \"Standard\" laget. Andre lag og specielle objekter kan tage længere tid\n(mere information).\n" }, "confirm": { @@ -693,6 +696,9 @@ "surface": { "label": "Overflade" }, + "toilets/disposal": { + "label": "Bortskaffelse affald" + }, "tourism": { "label": "Type" }, diff --git a/vendor/assets/iD/iD/locales/de.json b/vendor/assets/iD/iD/locales/de.json index e73992318..58146f041 100644 --- a/vendor/assets/iD/iD/locales/de.json +++ b/vendor/assets/iD/iD/locales/de.json @@ -167,9 +167,11 @@ } }, "undo": { + "tooltip": "Rückgängig: {action}", "nothing": "Nichts zum Rückgängigmachen." }, "redo": { + "tooltip": "Wiederherstellen: {action}", "nothing": "Nichts zum Wiederherstellen." }, "tooltip_keyhint": "Tastenkürzel:", @@ -215,7 +217,7 @@ "title": "Zeige meine Position" }, "inspector": { - "no_documentation_combination": "Für dieses Attribut ist keine Dokumentation verfügbar.", + "no_documentation_combination": "Für dieses Attribut-Kombination ist keine Dokumentation verfügbar.", "no_documentation_key": "Für dieses Schlüsselwort ist keine Dokumentation verfügbar", "show_more": "Zeige mehr", "view_on_osm": "Auf openstreetmap.org ansehen", @@ -239,6 +241,8 @@ "title": "Hintergrund", "description": "Hintergrundeinstellungen", "percent_brightness": "{opacity}% Helligkeit", + "custom": "Benutzerdefiniert", + "custom_prompt": "Geben Sie eine Kachel-Vorlage ein. Gültige Token sind {z}, {x}, {y} für das Z/X/Y Schema und {u} für das 'quadtile'-Schema.", "fix_misalignment": "Fehlerhafte Ausrichtung korrigieren", "reset": "Zurücksetzen" }, @@ -261,7 +265,9 @@ "just_edited": "Sie haben gerade OpenStreetMap editiert!", "view_on_osm": "auf OpenStreetMap ansehen", "facebook": "Auf Facebook teilen", - "tweet": "Twittern" + "twitter": "Auf Twitter teilen", + "google": "Auf Google+ teilen", + "help_html": "Deine Änderungen sollten in ein paar Minuten in der \"Standard\"-Ebene erscheinen. Auf anderen Kartenebenen und bei bestimmten Eigenschaften kann das auch länger dauern. (Details).\n" }, "confirm": { "okay": "OK" @@ -302,9 +308,9 @@ "help": { "title": "Hilfe", "help": "#Hilfe\n\nDies ist ein Editor für [OpenStreetMap](http://www.openstreetmap.org/), der freien und editierbaren Weltkarte. Du kannst ihn verwenden, um Daten in deiner Umgebung hinzuzufügen oder zu verändern und so diese Karte mit freien Quellen und freien Daten für jeden verbessern.\n\nVeränderungen werden für alle Nutzer von OpenStreetMap sichtbar. Um Veränderungen vornehmen zu können, musst du ein [kostenloses OpenStreetMap Profil](https://www.openstreetmap.org/user/new) anlegen.\n\nDer [iD editor](http://ideditor.com/) ist ein Gemeinschaftsprojekt dessen [Quellcode\nauf GitHub verfügbar ist](https://github.com/systemed/iD).\n\n", - "editing_saving": "# Editieren & Speichern\n\nDieser Editor wurde entworfen, um online zu arbeiten und du erreichst ihn über diese Webseite.\n\n###Objekte auswählen\n\nUm ein Kartenobjekt wie eine Straße oder ein Sonderziel (POI) auszuwählen, klicke auf der Karte darauf. Dadurch wird das Objekt hervorgehoben und ein Bedienfeld mit Details und Möglichkeiten zur Veränderung aufgerufen. \n\nMehrere Objekte kannst du auswählen indem du die Shift-Taste (Umschaltaste) drückst und die Objekte einzeln anklickst oder klickst und einen Rahmen darum ziehst.\nSo können mehrere Objekte gleichzeitig geändert werden.\n\n### Speichern der Änderungen\n\nWenn du Änderungen an einer Straße, einem Gebäude oder einem Platz vorgenommen hast sind diese lokal gespeichert, bis du sie auf dem Server speicherst. Keine Sorge falls du einen Fehler machen solltest: Du kannst Änderungen jederzeit über den Rückgängig-Knopf rückgängig machen oder über den Wiederherstellen-Knopf noch einmal ausführen.\n\nKlicke auf \"Speichern\", um eine Gruppe von Änderungen zu speichern. Zum Beispiel, wenn du in einem Stadtteil fertig bist und in einer neuen Gegend editieren willst.\nDu bekommst dann die Möglichkeit noch einmal zu überprüfen, was du gerade getan hast und der Editor zeigt dir nützliche Hinweise oder mögliche Fehler, wenn etwas nicht in Ordnung zu sein scheint.\n\nWenn alles gut aussieht kannst du einen kurzen Kommentar schreiben, der erklärt, was du gemacht hast. Drücke nun \"Speichern\", um die Änderungen auf dem Server zu speichern.\nNun können es alle auf [OpenStreetMap.org](http://www.openstreetmap.org/) sehen und darauf aufbauen.\n\nWenn du es zeitlich nicht schaffst, kannst du das Editor-Fenster einfach schließen. Wenn du die Seite wieder aufrufst (mit dem gleichen Browser und Computer) wird dir angeboten, die letzte Sitzung wiederherzustellen. \n", - "roads": "# Straßen\n\nMit dem Editor kannst du Wege erstellen, verändern und löschen. Wege können alles möglich sein, zum Beispiel Pfade, Straßen, Schienen, Fahrradwege und anderes.\n\n### Auswählen\n\nKlicke auf einem Weg, um ihn auszuwählen. Er sollte nun hervorgehoben werden. Außerdem erscheint ein kleines Werkzeugmenü und eine Seitenleiste mit den Eigenschaften des Weges.\n\n### Modifizieren\n\nOft sieht man, dass Wege nicht mit dem Luftbild oder einer GPS-Spur übereinstimmen. Du kannst den Weg aber so anpassen, das er an der richtigen Stelle ist. Beachte jedoch, dass Luftbilder einen Versatz aufweisen können.\n\nAls Erstes wählst du einen Weg aus. Dieser wird nun hervorgehoben und es werden die Knoten des Weges angezeigt. Diese kannst du verschieben, bis sie an der richtigen Stelle sind. Wenn du einen neuen Knoten hinzufügen möchtest, klicke doppelt zwischen bestehenden Knoten auf der Linie und es wird ein neuer Punkt erzeugt.\n\nWenn zwei Wege in Wirklichkeit mit einander verbunden sind aber auf der Karte nicht, kannst du sie verbinden, indem du einen Knoten des einen Weges auf den anderen Weg ziehst. Dass Wege verbunden sind, ist wichtig für die Karte und essentiell für die Nutzung von Routenführung.\n\nDu kannst auch das \"Bewegen\"-Werkzeug nutzen oder \"M\" drücken, um den kompletten Weg zu verschieben. Beende die Aktion mit einem Klick.\n\n### Löschen\n\nWenn du weißt, dass ein Weg nicht existiert, kannst du ihn löschen, um ihn von der Karte zu entfernen. Sei beim Löschen von Objekten besonders vorsichtig, da diese Änderungen von jedem gesehen werden können und Luftbilder oft veraltet sind. Das heißt, dass ein Weg, der im Luftbild nicht zusehen ist, vielleicht einfach neu gebaut wurde.\n\nDu kannst Wege löschen, indem du sie anklickst und das Papierkorbsymbol auswählst oder die \"Entfernen\"-Taste drückst.\n\n### Erstellen\n\nDu kennst einen Weg der nicht eingezeichnet ist? Dann klicke auf das \"Linien\"-Symbol oben links im Editor oder drücke die Taste \"2\" und beginne mit dem Zeichnen einer Linie.\n\nKlick dort hin, wo die Straße anfängt. Sollte sie von einer bereits existierenden Straße abzweigen, klicke an der entsprechenden Stelle auf diese Straße.\n\nZeichne nun den Weg, indem du Punkte anhand der Luftaufnahme oder der GPS-Spur entlang des Weges setzt. Sollte der Weg einen anderen kreuzen, klicke auf den Kreuzungspunkt, um sie zu verbinden. Wenn du mit dem Zeichnen fertig bist, klicke doppelt oder drücke \"Enter\" auf der Tastatur, um den Weg abzuschließen.\n", - "gps": "# GPS\n\nGPS Daten sind die vertrauenswürdigste Quelle für OpenStreetMap.\nDieser Editor unterstützt lokale GPS-Spuren - \".gpx\" Dateien auf deinem Computer. \nDu kannst diese GPS-Spuren mit Hilfe diverser Smartphone-Apps oder anderen GPS-Geräten aufnehmen.\n\nFür Informationen über das Sammeln von GPS-Daten kannst du dir folgende Anleitung durchlesen: [Surveying with a GPS](http://learnosm.org/en/beginner/using-gps/) (bis jetzt nur auf Englisch)\n\nUm einen GPX-Track zu verwenden, ziehe ihn einfach in den Karteneditor.\nWenn er erkannt wurde, wird dieser Track als leuchtend grüne Linie auf der Karte dargestellt.\nKlicke auf \"Hintergrundeinstellungen\", um sie zu deaktivieren und zu aktivieren, oder zum Gebiet des Tracks zu gelangen (Lupe).\n\nDer GPX-Track wird nicht automatisch direkt zu OpenStreetMap hochgeladen. Am besten verwendest du ihn, um neue Wege hinzuzufügen. \nMöchtest du den GPX-Track jedem zugänglich machen, kannst du ihn über die [Track-Upload-Seite](http://www.openstreetmap.org/trace/create) hochladen.\n", + "editing_saving": "# Editieren & Speichern\n\nDieser Editor wurde entworfen, um online zu arbeiten und du erreichst ihn über diese Webseite.\n\n###Objekte auswählen\n\nUm ein Kartenobjekt wie eine Straße oder ein Sonderziel (POI) auszuwählen, klicke auf der Karte darauf. Dadurch wird das Objekt hervorgehoben und ein Bedienfeld mit Details und Möglichkeiten zur Veränderung aufgerufen. \n\nMehrere Objekte kannst du auswählen indem du die Shift-Taste (Umschalttaste) drückst und die Objekte einzeln anklickst oder klickst und einen Rahmen darum ziehst.\nSo können mehrere Objekte gleichzeitig geändert werden.\n\n### Speichern der Änderungen\n\nWenn du Änderungen an einer Straße, einem Gebäude oder einem Platz vorgenommen hast sind diese lokal gespeichert, bis du sie auf dem Server speicherst. Keine Sorge falls du einen Fehler machen solltest: Du kannst Änderungen jederzeit über den Rückgängig-Knopf rückgängig machen oder über den Wiederherstellen-Knopf noch einmal ausführen.\n\nKlicke auf \"Speichern\", um eine Gruppe von Änderungen zu speichern. Zum Beispiel, wenn du in einem Stadtteil fertig bist und in einer neuen Gegend editieren willst.\nDu bekommst dann die Möglichkeit noch einmal zu überprüfen, was du gerade getan hast und der Editor zeigt dir nützliche Hinweise oder mögliche Fehler, wenn etwas nicht in Ordnung zu sein scheint.\n\nWenn alles gut aussieht kannst du einen kurzen Kommentar schreiben, der erklärt, was du gemacht hast. Drücke nun \"Speichern\", um die Änderungen auf dem Server zu speichern.\nNun können es alle auf [OpenStreetMap.org](http://www.openstreetmap.org/) sehen und darauf aufbauen.\n\nWenn du es zeitlich nicht schaffst, kannst du das Editor-Fenster einfach schließen. Wenn du die Seite wieder aufrufst (mit dem gleichen Browser und Computer) wird dir angeboten, die letzte Sitzung wiederherzustellen. \n", + "roads": "# Straßen\n\nMit dem Editor kannst du Wege erstellen, verändern und löschen. Wege können alles mögliche sein, zum Beispiel Pfade, Straßen, Schienen, Fahrradwege und anderes.\n\n### Auswählen\n\nKlicke auf einen Weg, um ihn auszuwählen. Er sollte nun hervorgehoben werden. Außerdem erscheint ein kleines Werkzeugmenü und eine Seitenleiste mit den Eigenschaften des Weges.\n\n### Modifizieren\n\nOft sieht man, dass Wege nicht mit dem Luftbild oder einer GPS-Spur übereinstimmen. Du kannst den Weg aber so anpassen, dass er an der richtigen Stelle ist. Beachte jedoch, dass Luftbilder einen Versatz aufweisen können.\n\nAls Erstes wählst du einen Weg aus. Dieser wird nun hervorgehoben und es werden die Knoten des Weges angezeigt. Diese kannst du verschieben, bis sie an der richtigen Stelle sind. Wenn du neue Knoten hinzufügen möchtest, klicke doppelt zwischen den Knoten auf die Linie und es wird ein neuer Punkt erzeugt.\n\nWenn zwei Wege in Wirklichkeit mit einander verbunden sind, aber auf der Karte nicht, kannst du sie verbinden, indem du einen Knoten des einen Weges auf den anderen Weg ziehst. Dass Wege verbunden sind, ist wichtig für die Karte und essentiell für die Nutzung von Routenführung.\n\nDu kannst auch das \"Bewegen\"-Werkzeug nutzen oder \"M\" drücken, um den kompletten Weg zu verschieben. Beende die Aktion mit einem Klick.\n\n### Löschen\n\nWenn du weißt, dass ein Weg nicht existiert, kannst du ihn löschen, um ihn von der Karte zu entfernen. Sei beim Löschen von Objekten besonders vorsichtig, da diese Änderungen von jedem gesehen werden können und Luftbilder oft veraltet sind. Das heißt, dass ein Weg, der im Luftbild nicht zu sehen ist, vielleicht einfach neu gebaut wurde.\n\nDu kannst Wege löschen, indem du sie anklickst und das Mülltonnensymbol auswählst oder die \"Entfernen\"-Taste drückst.\n\n### Erstellen\n\nDu kennst einen Weg der nicht eingezeichnet ist? Dann klicke auf das \"Linien\"-Symbol oben links im Editor oder drücke die Taste \"2\" und beginne mit dem Zeichnen einer Linie.\n\nKlicke dort hin, wo die Straße anfängt. Sollte sie von einer bereits existierenden Straße abzweigen, klicke an der entsprechenden Stelle auf diese Straße.\n\nZeichne nun den Weg, indem du Punkte anhand der Luftaufnahme oder der GPS-Spur entlang des Weges setzt. Sollte der Weg einen anderen kreuzen, klicke auf den Kreuzungspunkt, um beide Wege zu verbinden. Wenn du mit dem Zeichnen fertig bist, klicke doppelt oder drücke \"Enter\" auf der Tastatur, um den Weg abzuschließen.\n", + "gps": "# GPS\n\nGPS-Daten sind die vertrauenswürdigste Quelle für OpenStreetMap.\nDieser Editor unterstützt lokale GPS-Spuren - \".gpx\"-Dateien auf deinem Computer. \nDu kannst diese GPS-Spuren mit Hilfe diverser Smartphone-Apps oder anderen GPS-Geräten aufnehmen.\n\nFür Informationen über das Sammeln von GPS-Daten kannst du dir folgende Anleitung durchlesen: [Surveying with a GPS](http://learnosm.org/en/beginner/using-gps/) (zur Zeit nur auf Englisch)\n\nUm einen GPX-Track zu verwenden, ziehe ihn einfach in den Karteneditor.\nWenn er erkannt wurde, wird dieser Track als leuchtend grüne Linie auf der Karte dargestellt.\nKlicke auf \"Hintergrundeinstellungen\", um sie zu deaktivieren und zu aktivieren, oder zum Gebiet des Tracks zu gelangen (Lupe).\n\nDer GPX-Track wird nicht automatisch direkt zu OpenStreetMap hochgeladen. Am besten verwendest du ihn, um neue Wege hinzuzufügen.\n", "imagery": "# Bildmaterial\n\nLuftbilder sind eine wichtige Quelle für das Kartografieren. Eine Kombination aus Luftbildern von Flugzeugen, Satellitenbilder und freien Quellen sind im Editor über das \"Hintergrundeinstellungen\"- Menü auf der linken Seite verfügbar. \n\nAls Standard ist der [Bing Maps](http://www.bing.com/maps/) Satelliten-Layer ausgewählt. Je nach Gegend werden dir verschiedene andere Quellen angezeigt.\nIn einigen Länder wie den USA, Frankreich, Deutschland und Dänemark stehen zum Teil sehr hochauflösende Luftbilder zur Verfügung.\n\nLuftbilder sind manchmal durch Fehler der Luftbild-Anbieter verschoben. \nWenn du feststellst, dass viele Straßen gegenüber dem Hintergrund verschoben sind, dann verschiebe nicht die Straßen sondern das Luftbild, bis sie übereinstimmen. Um das Luftbild zu korrigieren, klicke auf \"Fehlerhafte Ausrichtung korrigieren\" in den Hintergrundeinstellungen.\n\n", "addresses": "# Adressen\n\nAdressen sind eine der wichtigsten Informationen einer Karte.\n\nObwohl Adressen oft als Teil einer Straße repräsentiert werden, werden sie in OpenStreetMap als Attribute von Gebäuden oder Objekten neben der Straße eingetragen.\n\nDu kannst Adressinformationen sowohl zu Flächen die als Gebäudegrundriss gezeichnet sind, als auch zu einzelnen Punkten hinzufügen. Adressen musst du über eine Stadtbegehung oder dein eigenes Wissen herausfinden, da die Nutzung kommerzieller Quellen wie Google Maps strikt verboten ist.\n", "inspector": "# Den Inspektor benutzen\n \nDer Inspektor ist das Bedienelement, das rechts im Editor erscheint, wenn du ein Objekt auswählst. Mit dem Inspektor kannst du die Details des Objektes bearbeiten.\n\n ### Eine Eigenschaft auswählen\n \nNachdem du einen Punkt, eine Linie oder eine Fläche hinzugefügt hast kannst du auswählen, welche Eigenschaft das Objekt hat - ob es eine Autobahn oder eine Wohnstraße; ein Supermarkt oder ein Café ist.\nDer Inspektor wird Knöpfe für die am häufigsten verwendeten Eigenschaften zeigen. Andere Eigenschaften findest du, indem du im Suchfeld eingibst wonach du suchst. \n \nKlicke auf den 'i'-Knopf in der Ecke rechts unten in einem Eigenschaften-Knopf, um mehr darüber zu erfahren. \n\n ### Vorlagen verwenden und Tags editieren\n \nNachdem du ein Objekt mit einer Eigenschaft versehen oder ausgewählt hast, zeigt der Inspektor Felder mit Details zu der Eigenschaft wie Name und Adresse an.\n\nUnter diesen Feldern kannst du Icons anklicken, um weitere Details hinzuzufügen wie zum Beispiel einen [Wikipedia](http://www.wikipedia.org/)-Link, Zugänglichkeit für Rollstühle und anderes.\n\nGanz unten im Inspektor kannst du auf 'Weitere Merkmale' klicken, um das Objekt mit beliebigen anderen Tags zu versehen.\n[Taginfo](http://taginfo.openstreetmap.org/) ist eine gute Quelle, um oft genutzte Kombinationen von Eigenschaften zu finden.\n\nÄnderungen die du im Inspektor vornimmst, werden automatisch auf die ausgewählten Objekte angewendet. Durch Klicken auf den 'Rückgängig'-Knopf kannst du sie rückgängig machen.\n\n ### Den Inspektor schließen\n\nDu kannst den Inspektor schließen, indem du auf den Schließen-Knopf oben rechts klickst, den 'Escape'-Knopf auf der Tastatur drückst oder in die Karte klickst.\n", @@ -706,10 +712,12 @@ }, "presets": { "address": { - "name": "Adresse" + "name": "Adresse", + "terms": "Adresse" }, "aeroway": { - "name": "Luftfahrt" + "name": "Luftfahrt", + "terms": "Flugplatz, Flughafen" }, "aeroway/aerodrome": { "name": "Flughafen", @@ -720,10 +728,12 @@ "terms": "Ramp,Apron" }, "aeroway/gate": { - "name": "Flugsteig" + "name": "Flugsteig", + "terms": "Flugsteig, Gate am Flughafen" }, "aeroway/hangar": { - "name": "Hangar" + "name": "Hangar", + "terms": "Hangar, Flugzeughalle" }, "aeroway/helipad": { "name": "Hubschrauberlandeplatz", @@ -734,7 +744,8 @@ "terms": "Start-/Landebahn,Startbahn,Landebahn" }, "aeroway/taxiway": { - "name": "Rollweg" + "name": "Rollweg", + "terms": "Rollweg" }, "aeroway/terminal": { "name": "Flughafenterminal", @@ -744,36 +755,43 @@ "name": "Einrichtungen" }, "amenity/atm": { - "name": "Geldautomat" + "name": "Geldautomat", + "terms": "Geldautomat" }, "amenity/bank": { "name": "Bank", "terms": "Kasse,Kontor,Kreditgenossenschaft,Lagerstelle,Fiskus,Fonds,Vermögen,Investmentfirma,Register,Rücklage,Vorrat,Tresor,Rücklagen,Grundkapital,Vorrat,Lager,Lagerhaus,Sparkasse,Schatz,Treuhandgesellschaft,Tresorraum" }, "amenity/bar": { - "name": "Bar" + "name": "Bar", + "terms": "Bar" }, "amenity/bench": { - "name": "Bank" + "name": "Bank", + "terms": "Bank, Sitzbank" }, "amenity/bicycle_parking": { - "name": "Fahrradparkplatz" + "name": "Fahrradparkplatz", + "terms": "Fahrrad-Parkplatz, Fahrradständer" }, "amenity/bicycle_rental": { - "name": "Fahrradverleih" + "name": "Fahrradverleih", + "terms": "Fahrrad-Verleih" }, "amenity/cafe": { "name": "Café", "terms": "Kaffee,Tee,Kaffeehandlung" }, "amenity/car_rental": { - "name": "Autovermietung" + "name": "Autovermietung", + "terms": "Autovermietung, Kfz-Verleih" }, "amenity/car_sharing": { "name": "Carsharing" }, "amenity/car_wash": { - "name": "Autowäsche" + "name": "Autowäsche", + "terms": "Auto-Waschanlage, Waschanlage" }, "amenity/childcare": { "name": "Kindertagesbetreuung", @@ -787,29 +805,36 @@ "name": "Hochschule" }, "amenity/courthouse": { - "name": "Gericht" + "name": "Gericht", + "terms": "Gericht, Amtsgericht" }, "amenity/drinking_water": { "name": "Trinkwasserstelle", "terms": "Brunnen,Trinkwasser,Trinkwasserbrunnen,Wasserhahn" }, "amenity/embassy": { - "name": "Botschaft" + "name": "Botschaft", + "terms": "Botschaft" }, "amenity/fast_food": { - "name": "Fast Food" + "name": "Fast Food", + "terms": "Fast Food, Imbiss" }, "amenity/fire_station": { - "name": "Feuerwehr" + "name": "Feuerwehr", + "terms": "Feuerwehr, Feuerwehrstation" }, "amenity/fountain": { - "name": "Brunnen" + "name": "Brunnen", + "terms": "Springbrunnen" }, "amenity/fuel": { - "name": "Tankstelle" + "name": "Tankstelle", + "terms": "Tankstelle" }, "amenity/grave_yard": { - "name": "Friedhof" + "name": "Friedhof", + "terms": "Friedhof" }, "amenity/hospital": { "name": "Krankenhaus", @@ -820,16 +845,20 @@ "terms": "Kindergarten,Kindertagesstätte,Hort" }, "amenity/library": { - "name": "Bibliothek" + "name": "Bibliothek", + "terms": "Bibliothek, Bücherei" }, "amenity/marketplace": { - "name": "Marktplatz" + "name": "Marktplatz", + "terms": "Marktplatz" }, "amenity/parking": { - "name": "Parkplatz" + "name": "Parkplatz", + "terms": "Parkmöglichkeit" }, "amenity/pharmacy": { - "name": "Apotheke" + "name": "Apotheke", + "terms": "Apotheke" }, "amenity/place_of_worship": { "name": "Gebetsort", @@ -852,24 +881,28 @@ "terms": "muslimisch,Moschee" }, "amenity/police": { - "name": "Polizei" + "name": "Polizei", + "terms": "Polizei, Polizeistation, Polizeirevier" }, "amenity/post_box": { "name": "Briefkasten", "terms": "Briefkasten,Postkasten,Postbriefkasten" }, "amenity/post_office": { - "name": "Poststelle" + "name": "Poststelle", + "terms": "Post, Postamt" }, "amenity/pub": { - "name": "Pub" + "name": "Pub", + "terms": "Kneipe, Pub" }, "amenity/restaurant": { "name": "Restaurant", "terms": "Bar,Cafeteria,Café,Kantine,Speisehaus,Coffee-Shop,Kaffeehaus,Imbiss,Speisesaal,Kneipe,Donut Shop,Drive-In,Restaurant,Speiserestaurant,Wirtschaft,Fast-Food-Restaurant,Grill,Hamburgerstand,Hotdogstand,Gasthaus,Gasthof,Wirtshaus,Imbissstube,Imbiss,Pizzeria,Lokal" }, "amenity/school": { - "name": "Schule" + "name": "Schule", + "terms": "Schule" }, "amenity/swimming_pool": { "name": "Schwimmbecken" @@ -879,7 +912,8 @@ "terms": "Taxi" }, "amenity/telephone": { - "name": "Telefon" + "name": "Telefon", + "terms": "Telefonzelle, Telefon" }, "amenity/theatre": { "name": "The­a­ter", @@ -905,61 +939,74 @@ "name": "Fläche" }, "barrier": { - "name": "Barrieren" + "name": "Barrieren", + "terms": "Barriere, Hindernis" }, "barrier/block": { "name": "Steinblock" }, "barrier/bollard": { - "name": "Poller" + "name": "Poller", + "terms": "Poller, Pfosten" }, "barrier/cattle_grid": { "name": "Weiderost" }, "barrier/city_wall": { - "name": "Stadtmauer" + "name": "Stadtmauer", + "terms": "Stadtmauer" }, "barrier/cycle_barrier": { - "name": "Umlaufgitter" + "name": "Umlaufgitter", + "terms": "Drängelgitter, Umlaufsperre" }, "barrier/ditch": { "name": "Graben" }, "barrier/entrance": { - "name": "Eingang" + "name": "Eingang", + "terms": "Graben" }, "barrier/fence": { - "name": "Zaun" + "name": "Zaun", + "terms": "Zaun" }, "barrier/gate": { - "name": "Tor" + "name": "Tor", + "terms": "Tor, Gatter" }, "barrier/hedge": { - "name": "Hecke" + "name": "Hecke", + "terms": "Hecke" }, "barrier/kissing_gate": { "name": "Schwinggatter" }, "barrier/lift_gate": { - "name": "Schlagbaum" + "name": "Schlagbaum", + "terms": "Schranke, Schlagbaum" }, "barrier/retaining_wall": { - "name": "Stützmauer" + "name": "Stützmauer", + "terms": "Stützmauer" }, "barrier/stile": { "name": "Zaunübertritt" }, "barrier/toll_booth": { - "name": "Mautstation" + "name": "Mautstation", + "terms": "Mautstelle" }, "barrier/wall": { - "name": "Mauer" + "name": "Mauer", + "terms": "Mauer" }, "boundary/administrative": { "name": "Administrative Grenze" }, "building": { - "name": "Gebäude" + "name": "Gebäude", + "terms": "Gebäude" }, "building/apartments": { "name": "Wohnungen" @@ -972,7 +1019,8 @@ "name": "Eingang" }, "building/garage": { - "name": "Garage" + "name": "Garage", + "terms": "Garage" }, "building/house": { "name": "Haus" @@ -988,11 +1036,21 @@ "name": "Wohngebäude", "terms": "Wohnhaus,Einfamilienhaus,Mehrfamilienhaus" }, + "emergency/ambulance_station": { + "name": "Rettungswache", + "terms": "Rettungswache" + }, + "emergency/fire_hydrant": { + "name": "Hydrant", + "terms": "Hydrant" + }, "emergency/phone": { - "name": "Notruftelefon" + "name": "Notruftelefon", + "terms": "Notruf-Telefon, Notrufsäule, Notfallsäule" }, "entrance": { - "name": "Eingang" + "name": "Eingang", + "terms": "Eingang" }, "highway": { "name": "Straße/Weg" @@ -1002,29 +1060,36 @@ "terms": "Reitweg" }, "highway/bus_stop": { - "name": "Bushaltestelle" + "name": "Bushaltestelle", + "terms": "Bushaltestelle" }, "highway/crossing": { "name": "Fußgängerüberweg", "terms": "Zebrastreifen" }, "highway/cycleway": { - "name": "Radweg" + "name": "Radweg", + "terms": "Radweg" }, "highway/footway": { - "name": "Fußweg" + "name": "Fußweg", + "terms": "Fußweg" }, "highway/living_street": { - "name": "Verkehrsberuhigter Bereich (\"Spielstraße\")" + "name": "Verkehrsberuhigter Bereich (\"Spielstraße\")", + "terms": "Verkehrsberuhigter Bereich, Wohnstraße, Spielstraße" }, "highway/mini_roundabout": { - "name": "Mini-Kreisverkehr" + "name": "Mini-Kreisverkehr", + "terms": "Kreisverkehr mit befahrbarer Mitte, Mini-Kreisverkehr" }, "highway/motorway": { - "name": "Autobahn" + "name": "Autobahn", + "terms": "Autobahn" }, "highway/motorway_junction": { - "name": "Autobahnausfahrt" + "name": "Autobahnausfahrt", + "terms": "Autobahn-Anschlussstelle, Autobahn-Abfahrt" }, "highway/motorway_link": { "name": "Autobahnanschluss", @@ -1034,7 +1099,8 @@ "name": "Pfad" }, "highway/pedestrian": { - "name": "Fußgängerzone" + "name": "Fußgängerzone", + "terms": "Fußgängerzone" }, "highway/primary": { "name": "Hauptverbindungsstraße" @@ -1060,7 +1126,8 @@ "name": "Erschließungsweg" }, "highway/service/alley": { - "name": "Gasse" + "name": "Gasse", + "terms": "Gasse" }, "highway/service/drive-through": { "name": "Drive-in" @@ -1069,10 +1136,12 @@ "name": "Zufahrtsstraße" }, "highway/service/emergency_access": { - "name": "Zufahrtsstraße für Rettungskräfte" + "name": "Zufahrtsstraße für Rettungskräfte", + "terms": "Rettungszufahrt, Feuerwehrzufahrt" }, "highway/service/parking_aisle": { - "name": "Parkplatzweg" + "name": "Parkplatzweg", + "terms": "Fahrweg auf Parkplatz" }, "highway/steps": { "name": "Treppen", @@ -1100,7 +1169,8 @@ "terms": "Auffahrt" }, "highway/turning_circle": { - "name": "Wendestelle" + "name": "Wendestelle", + "terms": "Wendekreis, Wendeplatz, Wendehammer, Wendestelle" }, "highway/unclassified": { "name": "Nebenstraße" @@ -1112,43 +1182,52 @@ "name": "Archeologische Stätte" }, "historic/boundary_stone": { - "name": "Grenzstein" + "name": "Grenzstein", + "terms": "Grenzstein" }, "historic/castle": { - "name": "Burg" + "name": "Burg", + "terms": "Burg, Schloss, Festung, Kastell" }, "historic/memorial": { - "name": "Denkmal" + "name": "Denkmal", + "terms": "Denkmal, Mahnmal" }, "historic/monument": { "name": "Monument" }, "historic/ruins": { - "name": "Ruine" + "name": "Ruine", + "terms": "Ruine, Ruinen" }, "historic/wayside_cross": { - "name": "Wegkreuz" + "name": "Wegkreuz", + "terms": "Wegkreuz" }, "historic/wayside_shrine": { - "name": "Bildstock" + "name": "Bildstock", + "terms": "Bildstock, Betsäule, Marterl" }, "landuse": { "name": "Landnutzung" }, "landuse/allotments": { - "name": "Kleigartenanlage" + "name": "Kleigartenanlage", + "terms": "Schrebergärten, Kleingärten, Kleingartenanlage" }, "landuse/basin": { "name": "Becken" }, "landuse/cemetery": { - "name": "Friedhof" + "name": "Friedhof", + "terms": "Friedhof, Friedwald" }, "landuse/commercial": { "name": "Geschäfte" }, "landuse/construction": { - "name": "Baustelle" + "name": "Baustelle", + "terms": "Baugebiet, Baustelle, Großbaustelle" }, "landuse/farm": { "name": "Bauernhof" @@ -1157,31 +1236,39 @@ "name": "Bauernhof" }, "landuse/forest": { - "name": "Wald" + "name": "Wald", + "terms": "Forst, bewirtschafteter Wald" }, "landuse/grass": { - "name": "Gras" + "name": "Gras", + "terms": "Grünfläche, Wiese" }, "landuse/industrial": { - "name": "Industrie" + "name": "Industrie", + "terms": "Industriegebiet, Gewerbegebiet" }, "landuse/meadow": { - "name": "Weide" + "name": "Weide", + "terms": "Wiese, Weide" }, "landuse/orchard": { - "name": "Obstplantage" + "name": "Obstplantage", + "terms": "Obstplantage, Streuobstwiese" }, "landuse/quarry": { - "name": "Steinbruch" + "name": "Steinbruch", + "terms": "Steinbruch, Kiesgrube, Sandgrube, Tongrube" }, "landuse/residential": { - "name": "Wohngebiet" + "name": "Wohngebiet", + "terms": "Wohngebiet" }, "landuse/retail": { "name": "Einzelhandel" }, "landuse/vineyard": { - "name": "Weinberg" + "name": "Weinberg", + "terms": "Weinberg" }, "leisure": { "name": "Erholung" @@ -1191,38 +1278,47 @@ "terms": "Hundefreilaufzone,Hundeauslaufzone,Hundezone,Hundeauslaufplatz" }, "leisure/garden": { - "name": "Garten" + "name": "Garten", + "terms": "Garten" }, "leisure/golf_course": { - "name": "Golfplatz" + "name": "Golfplatz", + "terms": "Golfplatz" }, "leisure/marina": { - "name": "Yachthafen" + "name": "Yachthafen", + "terms": "Yachthafen, Marina" }, "leisure/park": { "name": "Park", "terms": "Promenade,Esplanade,Gut,Wald,Garten,Gras,Grün,Außenanlagen,Rasen,Land,Wiese,Park,Platz,Spielplatz,Piazza,Lustgarten,Erholungsgebiet,Dorfanger,Dorfwiese,Waldgelände" }, "leisure/pitch": { - "name": "Sportplatz" + "name": "Sportplatz", + "terms": "Sportplatz, Sportfeld, Spielfeld" }, "leisure/pitch/american_football": { "name": "American Football Feld" }, "leisure/pitch/baseball": { - "name": "Baseballfeld" + "name": "Baseballfeld", + "terms": "Baseball-Platz, Baseball-Feld" }, "leisure/pitch/basketball": { - "name": "Basketballfeld" + "name": "Basketballfeld", + "terms": "Basketball-Platz, Basketball-Feld" }, "leisure/pitch/soccer": { - "name": "Fußballplatz" + "name": "Fußballplatz", + "terms": "Fußballplatz" }, "leisure/pitch/tennis": { - "name": "Tennisplatz" + "name": "Tennisplatz", + "terms": "Tennisplatz" }, "leisure/pitch/volleyball": { - "name": "Volleyballplatz" + "name": "Volleyballplatz", + "terms": "Volleyballplatz, Volleyballfeld" }, "leisure/playground": { "name": "Spielplatz", @@ -1232,10 +1328,12 @@ "name": "Gleitbahn" }, "leisure/stadium": { - "name": "Stadium" + "name": "Stadium", + "terms": "Stadion, Arena" }, "leisure/swimming_pool": { - "name": "Schwimmbecken" + "name": "Schwimmbecken", + "terms": "Schwimmbecken" }, "line": { "name": "Linie" @@ -1244,63 +1342,78 @@ "name": "Zivilbauten" }, "man_made/breakwater": { - "name": "Wellenbrecher" + "name": "Wellenbrecher", + "terms": "Mole" }, "man_made/cutline": { - "name": "Schneise" + "name": "Schneise", + "terms": "Schneise" }, "man_made/lighthouse": { - "name": "Leuchtturm" + "name": "Leuchtturm", + "terms": "Leuchtturm" }, "man_made/pier": { - "name": "Steg" + "name": "Steg", + "terms": "Anleger, Pier" }, "man_made/pipeline": { - "name": "Pipeline" + "name": "Pipeline", + "terms": "Pipeline, Rohrleitung" }, "man_made/survey_point": { - "name": "Vermessungspunkt" + "name": "Vermessungspunkt", + "terms": "Trigonometrischer Punkt, Geodätischer Festpunkt" }, "man_made/tower": { - "name": "Turm" + "name": "Turm", + "terms": "Turm" }, "man_made/wastewater_plant": { "name": "Kläranlage", "terms": "Kläranlage,Abwasseranlage,Abwasserreinigungsanlage,Wasseraufbereitungsanlage,Wasserrückgewinnungsanlage" }, "man_made/water_tower": { - "name": "Wasserturm" + "name": "Wasserturm", + "terms": "Wasserturm" }, "man_made/water_well": { - "name": "Brunnen" + "name": "Brunnen", + "terms": "Tiefbrunnen, Brunnen" }, "man_made/water_works": { - "name": "Wasserkraftwerk" + "name": "Wasserkraftwerk", + "terms": "Wasserwerk" }, "natural": { "name": "Natur" }, "natural/bay": { - "name": "Bucht" + "name": "Bucht", + "terms": "Bucht" }, "natural/beach": { - "name": "Strand" + "name": "Strand", + "terms": "Strand" }, "natural/cliff": { - "name": "Klippe" + "name": "Klippe", + "terms": "Klippe, Kliff" }, "natural/coastline": { "name": "Küstenlinie", "terms": "Ufer" }, "natural/glacier": { - "name": "Gletscher" + "name": "Gletscher", + "terms": "Gletscher" }, "natural/grassland": { "name": "Grasland" }, "natural/heath": { - "name": "Heide" + "name": "Heide", + "terms": "Heide" }, "natural/peak": { "name": "Gipfel", @@ -1310,13 +1423,16 @@ "name": "Gestrüpp" }, "natural/spring": { - "name": "Quelle" + "name": "Quelle", + "terms": "Quelle" }, "natural/tree": { - "name": "Baum" + "name": "Baum", + "terms": "Baum" }, "natural/water": { - "name": "Wasser" + "name": "Wasser", + "terms": "Wasser, Wasserfläche" }, "natural/water/lake": { "name": "See", @@ -1330,10 +1446,12 @@ "name": "Speicherbecken" }, "natural/wetland": { - "name": "Feuchtgebiet" + "name": "Feuchtgebiet", + "terms": "Feuchtgebiet, Sumpf, Moor, Ried, Marsch, Aue, Röhricht, Watt, Salzwiese, Mangrove" }, "natural/wood": { - "name": "Wald" + "name": "Wald", + "terms": "Urwald, Naturwald" }, "office": { "name": "Büro" @@ -1361,7 +1479,8 @@ "name": "Kleinstadt" }, "place/village": { - "name": "Dorf" + "name": "Dorf", + "terms": "Dorf" }, "point": { "name": "Punkt" @@ -1382,38 +1501,47 @@ "name": "Hochspannungsmast" }, "power/transformer": { - "name": "Transformator" + "name": "Transformator", + "terms": "Transformator" }, "railway": { - "name": "Eisenbahn" + "name": "Eisenbahn", + "terms": "Eisenbahn" }, "railway/abandoned": { - "name": "Stillgelegte Eisenbahnstrecke" + "name": "Stillgelegte Eisenbahnstrecke", + "terms": "stillgelegte Eisenbahn" }, "railway/disused": { - "name": "ungenutzte Eisenbahnstrecke" + "name": "ungenutzte Eisenbahnstrecke", + "terms": "ungenutzte Eisenbahn" }, "railway/level_crossing": { "name": "Bahnübergang", "terms": "Bahnübergang" }, "railway/monorail": { - "name": "Einschienenbahn" + "name": "Einschienenbahn", + "terms": "Einschienenbahn" }, "railway/platform": { "name": "Bahnsteig" }, "railway/rail": { - "name": "Eisenbahn" + "name": "Eisenbahn", + "terms": "Eisenbahnschienen" }, "railway/station": { - "name": "Bahnhof" + "name": "Bahnhof", + "terms": "Bahnhof" }, "railway/subway": { - "name": "U-Bahn" + "name": "U-Bahn", + "terms": "Untergrundbahn, U-Bahn" }, "railway/subway_entrance": { - "name": "U-Bahn-Eingang" + "name": "U-Bahn-Eingang", + "terms": "U-Bahn-Eingang, Eingang zur U-Bahn" }, "railway/tram": { "name": "Straßenbahn", @@ -1423,123 +1551,154 @@ "name": "Relation" }, "route/ferry": { - "name": "Fährenroute" + "name": "Fährenroute", + "terms": "Fährlinie" }, "shop": { - "name": "Laden" + "name": "Laden", + "terms": "Geschäft, Ladenlokal" }, "shop/alcohol": { "name": "Spirituosenladen", "terms": "Alkohol" }, "shop/bakery": { - "name": "Bäcker" + "name": "Bäcker", + "terms": "Bäckerei" }, "shop/beauty": { - "name": "Kosmetikladen" + "name": "Kosmetikladen", + "terms": "Schönheits-Salon, Nagelstudio" }, "shop/beverages": { - "name": "Getränkeladen" + "name": "Getränkeladen", + "terms": "Getränkehandlung" }, "shop/bicycle": { - "name": "Fahrradladen" + "name": "Fahrradladen", + "terms": "Fahrradladen, Fahrrad-Geschäft, Fahrrad-Handlung" }, "shop/books": { - "name": "Buchhandlung" + "name": "Buchhandlung", + "terms": "Buchhandlung, Buchladen" }, "shop/boutique": { - "name": "Boutique" + "name": "Boutique", + "terms": "Boutique" }, "shop/butcher": { - "name": "Fleischer" + "name": "Fleischer", + "terms": "Fleischer, Schlachter" }, "shop/car": { "name": "Autohändler" }, "shop/car_parts": { - "name": "Autoteilehandel" + "name": "Autoteilehandel", + "terms": "Kfz-Teile-Handlung, Autoteile-Geschäft, Auto-Zubehör-Handlung" }, "shop/car_repair": { - "name": "Autowerkstatt" + "name": "Autowerkstatt", + "terms": "Autowerkstatt, Kfz-Werkstatt, Autoreparatur" }, "shop/chemist": { - "name": "Apotheke" + "name": "Apotheke", + "terms": "Drogerie" }, "shop/clothes": { - "name": "Bekleidungsgeschäft" + "name": "Bekleidungsgeschäft", + "terms": "Bekleidungs-Geschäft, Klamottenladen" }, "shop/computer": { "name": "Computerfachhandel" }, "shop/confectionery": { - "name": "Konditor" + "name": "Konditor", + "terms": "Süßwarenladen, Süßigkeiten-Laden" }, "shop/convenience": { "name": "Gemischtwarenhandel" }, "shop/deli": { - "name": "Feinkostladen" + "name": "Feinkostladen", + "terms": "Feinkost-Geschäft, Delikatessen-Laden" }, "shop/department_store": { - "name": "Kaufhaus" + "name": "Kaufhaus", + "terms": "Kaufhaus" }, "shop/doityourself": { - "name": "Heimwerkerladen" + "name": "Heimwerkerladen", + "terms": "Baumarkt, Heimwerker-Markt" }, "shop/dry_cleaning": { - "name": "Chemische Reinigung" + "name": "Chemische Reinigung", + "terms": "Chemische Reinigung" }, "shop/electronics": { - "name": "Elektronikfachgeschäft" + "name": "Elektronikfachgeschäft", + "terms": "Elektro-Geschäft, Elektronik-Geschäft" }, "shop/farm": { "name": "Obst- und Gemüsestand", "terms": "Hofladen" }, "shop/fishmonger": { - "name": "Fischhändler" + "name": "Fischhändler", + "terms": "Fischgeschäft, Fischhandlung, Fischladen" }, "shop/florist": { - "name": "Blumenhändler" + "name": "Blumenhändler", + "terms": "Florist, Blumenladen, Blumengeschäft" }, "shop/furniture": { - "name": "Möbelhaus" + "name": "Möbelhaus", + "terms": "Möbelladen, Möbelgeschäft, Einrichtungsgeschäft" }, "shop/garden_centre": { - "name": "Gartenzentrum" + "name": "Gartenzentrum", + "terms": "Gartenzentrum, Gartencenter" }, "shop/gift": { - "name": "Geschenkladen" + "name": "Geschenkladen", + "terms": "Geschenkeladen, Geschenkehandlung" }, "shop/greengrocer": { - "name": "Obst- u. Gemüsehändler" + "name": "Obst- u. Gemüsehändler", + "terms": "Obsthandlung, Gemüsehandlung, Obst- und Gemüsehandlung" }, "shop/hairdresser": { - "name": "Friseur" + "name": "Friseur", + "terms": "Friseur, Barbier" }, "shop/hardware": { - "name": "Eisenwarenhandel" + "name": "Eisenwarenhandel", + "terms": "Baustoffmarkt, Baustoff-Handlung" }, "shop/hifi": { "name": "Hifi-Laden" }, "shop/jewelry": { - "name": "Juwelier" + "name": "Juwelier", + "terms": "Juwelier, Schmuckgeschäft" }, "shop/kiosk": { "name": "Kiosk" }, "shop/laundry": { - "name": "Wäscherei" + "name": "Wäscherei", + "terms": "Wäscherei" }, "shop/mall": { - "name": "Einkaufzentrum" + "name": "Einkaufzentrum", + "terms": "Einkaufszentrum, Mall" }, "shop/mobile_phone": { "name": "Handy-Laden" }, "shop/motorcycle": { - "name": "Motorradhändler" + "name": "Motorradhändler", + "terms": "Motorrad-Handlung, Motorradladen" }, "shop/music": { "name": "Musikgeschäft" @@ -1548,34 +1707,43 @@ "name": "Zeitschriftenladen" }, "shop/optician": { - "name": "Optiker" + "name": "Optiker", + "terms": "Optiker" }, "shop/outdoor": { - "name": "Outdoor-Geschäft" + "name": "Outdoor-Geschäft", + "terms": "Outdoor-Laden" }, "shop/pet": { - "name": "Tierhandlung" + "name": "Tierhandlung", + "terms": "Tierhandlung, Zoohandlung" }, "shop/shoes": { - "name": "Schuhgeschäft" + "name": "Schuhgeschäft", + "terms": "Schuhgeschäft" }, "shop/sports": { - "name": "Sportgeschäft" + "name": "Sportgeschäft", + "terms": "Sporthandlung" }, "shop/stationery": { "name": "Schreibwarengeschäft" }, "shop/supermarket": { - "name": "Supermarkt" + "name": "Supermarkt", + "terms": "Supermarkt" }, "shop/toys": { - "name": "Spielwarengeschäft" + "name": "Spielwarengeschäft", + "terms": "Spielwarengeschäft, Spielzeughandlung, Spielzeugladen, Spielzeuggeschäft" }, "shop/travel_agency": { - "name": "Reisebüro" + "name": "Reisebüro", + "terms": "Reisebüro" }, "shop/tyres": { - "name": "Reifenhandel" + "name": "Reifenhandel", + "terms": "Reifenhandlung" }, "shop/vacant": { "name": "Freistehendes Geschäft" @@ -1599,7 +1767,8 @@ "name": "Touristenattracktion" }, "tourism/camp_site": { - "name": "Campingplatz" + "name": "Campingplatz", + "terms": "Campingplatz, Zeltplatz" }, "tourism/caravan_site": { "name": "Wohnmobilstellplatz" @@ -1612,16 +1781,19 @@ "terms": "Frühstückspension" }, "tourism/hostel": { - "name": "Hostel" + "name": "Hostel", + "terms": "Hostel" }, "tourism/hotel": { - "name": "Hotel" + "name": "Hotel", + "terms": "Hotel" }, "tourism/information": { "name": "Information" }, "tourism/motel": { - "name": "Motel" + "name": "Motel", + "terms": "Motel" }, "tourism/museum": { "name": "Museum", @@ -1631,16 +1803,20 @@ "name": "Picknickplatz" }, "tourism/theme_park": { - "name": "Themenpark" + "name": "Themenpark", + "terms": "Themenpark, Freizeitpark" }, "tourism/viewpoint": { - "name": "Aussichtspunkt" + "name": "Aussichtspunkt", + "terms": "Aussichtspunkt" }, "tourism/zoo": { - "name": "Zoo" + "name": "Zoo", + "terms": "Zoo" }, "type/boundary": { - "name": "Grenze" + "name": "Grenze", + "terms": "Grenze" }, "type/boundary/administrative": { "name": "Administrative Grenze" @@ -1655,22 +1831,27 @@ "name": "Route" }, "type/route/bicycle": { - "name": "Radweg" + "name": "Radweg", + "terms": "Radroute" }, "type/route/bus": { - "name": "Buslinie" + "name": "Buslinie", + "terms": "Buslinie" }, "type/route/detour": { "name": "Bedarfsumleitungsroute" }, "type/route/ferry": { - "name": "Fährenroute" + "name": "Fährenroute", + "terms": "Fähr-Linie" }, "type/route/foot": { - "name": "Wanderweg" + "name": "Wanderweg", + "terms": "Wanderweg, Spazierweg" }, "type/route/pipeline": { - "name": "Pipelinenetz" + "name": "Pipelinenetz", + "terms": "Pipeline" }, "type/route/power": { "name": "Stromnetz" @@ -1679,10 +1860,12 @@ "name": "Straßennetz" }, "type/route/train": { - "name": "Bahnlinie" + "name": "Bahnlinie", + "terms": "Eisenbahn-Linie" }, "type/route/tram": { - "name": "Tramlinie" + "name": "Tramlinie", + "terms": "Straßenbahn-Linie" }, "type/route_master": { "name": "Hauptroute" @@ -1691,31 +1874,39 @@ "name": "Andere" }, "waterway": { - "name": "Wasserweg" + "name": "Wasserweg", + "terms": "Wasserweg" }, "waterway/canal": { - "name": "Kanal" + "name": "Kanal", + "terms": "Kanal" }, "waterway/dam": { - "name": "Damm" + "name": "Damm", + "terms": "Staudamm, Staumauer" }, "waterway/ditch": { - "name": "Graben" + "name": "Graben", + "terms": "Entwässerungsgraben" }, "waterway/drain": { "name": "Ablauf" }, "waterway/river": { - "name": "Fluss" + "name": "Fluss", + "terms": "Fluss" }, "waterway/riverbank": { - "name": "Flussufer" + "name": "Flussufer", + "terms": "Fluss (als Fläche)" }, "waterway/stream": { - "name": "Bach" + "name": "Bach", + "terms": "Bach" }, "waterway/weir": { - "name": "Wehr" + "name": "Wehr", + "terms": "Wehr" } } } diff --git a/vendor/assets/iD/iD/locales/el.json b/vendor/assets/iD/iD/locales/el.json index f2b8066d2..fd793c428 100644 --- a/vendor/assets/iD/iD/locales/el.json +++ b/vendor/assets/iD/iD/locales/el.json @@ -1,74 +1,345 @@ { "modes": { "add_area": { - "title": "Περιοχή" + "title": "Περιοχή", + "description": "Προσθήκη πάρκων, λιμνών ή άλλων περιοχών στο χάρτη.", + "tail": "Πατήστε στο χάρτη για να αρχίσετε τη σχεδίαση μιας περιοχής, όπως πάρκο, λίμνη ή κτήριο." + }, + "add_line": { + "title": "Γραμμή", + "description": "Προσθήκη λεωφόρων, οδών, πεζόδρομων, καναλιών ή άλλων γραμμών στο χάρτη.", + "tail": "Πατήστε στο χάρτη για να αρχίσετε τη σχεδίαση ενός δρόμου, μονοπατιού ή διαδρομής." }, "add_point": { - "title": "Σημείο" + "title": "Σημείο", + "description": "Προσθήκη εστιατορίων, μνημείων, γραμματοκιβωτίων ή άλλων σημείων στο χάρτη.", + "tail": "Πατήστε στο χάρτη για να προσθέσετε ένα σημείο." + }, + "browse": { + "title": "Επισκόπηση", + "description": "Μετακίνηση και εστίαση του χάρτη." } }, "operations": { + "add": { + "annotation": { + "point": "Προστέθηκε ένα σημείο.", + "vertex": "Προστέθηκε κόμβος σε διαδρομή.", + "relation": "Προστέθηκε μια σχέση." + } + }, + "start": { + "annotation": { + "line": "Άρχησε μια γραμμή.", + "area": "Άρχισε μια περιοχή." + } + }, + "continue": { + "annotation": { + "line": "Συνέχιση μιας γραμμής.", + "area": "Συνέχιση μιας περιοχής." + } + }, + "cancel_draw": { + "annotation": "Ακύρωση σχεδίασης." + }, + "change_role": { + "annotation": "Αλλάχτηκε ο ρόλος ενός μέλους σχέσης." + }, + "change_tags": { + "annotation": "Αλάχτικαν ετικέτες." + }, + "circularize": { + "title": "Σχηματισμός κύκλου", + "description": { + "line": "Κάντε αυτή τη γραμμή κυκλική.", + "area": "Κάντε αυτή την περιοχή κυκλική." + }, + "key": "Ο", + "annotation": { + "line": "Κάντε μια γραμμή κυκλική.", + "area": "Κάντε μια περιοχή κυκλική." + }, + "not_closed": "Αυτό δεν μπορεί να γίνει κυκλικό επειδή δεν είναι βρόγχος." + }, + "orthogonalize": { + "title": "Ορθογωνισμός", + "description": "Τετραγωνισμός των γωνιών", + "key": "Q", + "annotation": { + "line": "Τετραγωνισμός των γωνιών μιας γραμμής.", + "area": "Τετραγωνίστηκαν οι γωνίες μιας περιοχής" + }, + "not_closed": "Αυτό δεν μπορεί να γίνει τετράγωνο επειδή δεν είναι βρόγχος." + }, + "delete": { + "title": "Διαγραφή", + "description": "Αφαιρέστε αυτό από το χάρτη.", + "annotation": { + "point": "Διαγραφή ενός σημείου.", + "vertex": "Διαγράφηκε ένας κόμβος από μια διαδρομή.", + "line": "Διαγράφηκε μια γραμμή.", + "area": "Διαγράφηκε μια περιοχή.", + "relation": "Διαγράφηκε μια σχέση.", + "multiple": "Διαγράφηκαν {n} αντικείμενα." + } + }, + "add_member": { + "annotation": "Προστέθηκε ένα μέλος σε μία σχέση." + }, + "delete_member": { + "annotation": "Αφαιρέθηκε ένα μέλος από μια σχέση." + }, + "connect": { + "annotation": { + "point": "Συνδέθηκε μια διαδρομή σε ένα σημείο.", + "vertex": "Συνδέθηκε μια διαδρομή σε μια άλλη.", + "line": "Συνδέθηκε μια διαδρομή σε μια γραμμή.", + "area": "Συνδέθηκε μια διαδρομή σε μια περιοχή." + } + }, + "disconnect": { + "title": "Αποσύνδεση", + "key": "D", + "not_connected": "Δεν υπάρχουν αρκετές γραμμές/περιοχές εδώ για αποσύνδεση." + }, + "merge": { + "title": "Συγχώνευση", + "description": "Συγχώνευση αυτών των γραμμών.", + "key": "C", + "annotation": "Συγχωνεύτηκαν {n} γραμμές.", + "not_adjacent": "Αυτές οι γραμμές δεν μπορούν να συγχωνευτούν επειδή δεν είναι ενωμένες." + }, "move": { - "title": "Μετακίνησε" + "title": "Μετακίνηση", + "description": "Μετακίνηση σε διαφορετική τοποθεσία.", + "key": "M", + "annotation": { + "point": "Μετακινήθηκε ένα σημείο.", + "vertex": "Μετακινήθηκε ένας κόμβος σε μια διαδρομή.", + "line": "Μετακινήθηκε μια γραμμή.", + "area": "Μετακινήθηκε μια περιοχή.", + "multiple": "Μετακινήθηκαν πολλαπλά αντικείμενα." + } + }, + "rotate": { + "title": "Περιστροφή", + "description": "Περιστρέψτε αυτό το αντικείμενο γύρω από το κέντρο του.", + "key": "R", + "annotation": { + "line": "Περιστράφηκε μια γραμμή.", + "area": "Περιστράφηκε μια περιοχή." + } + }, + "reverse": { + "title": "Αντιστροφή", + "description": "Κάντε αυτή τη γραμμή να πάει προς την αντίθετη κατεύθυνση.", + "key": "V", + "annotation": "Αντιστράφηκε μια γραμμή." + }, + "split": { + "title": "Διαχωρισμός", + "key": "X" } }, + "undo": { + "tooltip": "Αναίρεση: {action}", + "nothing": "Τίποτα προς αναίρεση." + }, + "redo": { + "tooltip": "Επαναφορά: {action}", + "nothing": "Τίποτα προς επαναφορά." + }, + "browser_notice": "Αυτός ο επεξεργαστής υποστηρίζεται στον Firefox, Chrome, Safari, Opera, και Internet Explorer 9 ή νεότερο. Παρακαλώ αναβαθμίστε τον φυλλομετρητή σας ή χρησιμοποιήστε το Potlatch 2 για να επεξεργαστείτε το χάρτη.", + "translate": { + "translate": "Μεταφράστε", + "localized_translation_language": "Επιλογή γλώσσας", + "localized_translation_name": "Όνομα" + }, + "zoom_in_edit": "Μεγεθύνετε για να Επεξεργαστείτε", + "logout": "Αποσύνδεση", + "loading_auth": "Σύνδεση στο OpenStreetMap...", + "report_a_bug": "αναφορά σφάλματος", "commit": { + "title": "Αποθήκευση Αλλαγών", + "description_placeholder": "Σύντομη περιγραφή των συνεισφορών σας", + "message_label": "Υποβολή μηνύματος", "save": "Αποθήκευση", - "cancel": "Ακύρωση" + "cancel": "Ακύρωση", + "warnings": "Προειδοποιήσεις", + "modified": "Τροποποιήθηκε", + "deleted": "Διαγράφηκε", + "created": "Δημιουργήθηκε" + }, + "contributors": { + "list": "Επεξεργασίες από {users}", + "truncated_list": "Επεξεργασίες από {users} και {count} άλλους" + }, + "geocoder": { + "no_results_worldwide": "Δεν βρέθηκαν αποτελέσματα" + }, + "geolocate": { + "title": "Εμφάνισε την Τοποθεσία μου" + }, + "inspector": { + "no_documentation_combination": "Δεν υπάρχει διαθέσιμη τεκμηρίωση για αυτό το συνδυασμό ετικετών", + "no_documentation_key": "Δεν υπάρχει διαθέσιμη τεκμηρίωση για αυτό το κλειδί", + "show_more": "Εμφάνιση Περισσότερων", + "all_members": "Όλα τα μέλη", + "all_relations": "Όλες οι σχέσεις", + "new_relation": "Νέα σχέση", + "role": "Ρόλος", + "choose": "Επιλογή τύπου χαρακτηριστικού", + "results": "{n} αποτελέσματα για {search}", + "remove": "Αφαίρεση", + "search": "Αναζήτηση", + "unknown": "Άγνωστο" + }, + "background": { + "title": "Παρασκήνιο", + "description": "Ρυθμίσεις παρασκηνίου", + "percent_brightness": "{opacity}% φωτεινότητα", + "fix_misalignment": "Διόρθωση ευθυγράμμισης", + "reset": "Μηδενισμός" + }, + "restore": { + "heading": "Έχετε μη αποθηκευμένες αλλαγές", + "restore": "Επαναφορά" + }, + "save": { + "title": "Αποθήκευση", + "help": "Αποθήκευση των αλλαγών στο OpenStreetMap, κάντε τες ορατές στου άλλους χρήστες.", + "no_changes": "Δεν υπάρχουν αλλαγές για αποθήκευση.", + "error": "Παρουσιάστηκε ένα σφάλμα κατά την προσπάθεια αποθήκευσης", + "uploading": "Αποστολή αλλαγών στο OpenStreetMap.", + "unsaved_changes": "Έχετε μη αποθηκευμένες αλλαγές" + }, + "success": { + "just_edited": "Μόλις επεξεργαστήκατε το OpenStreetMap!" + }, + "splash": { + "welcome": "Καλώς ήλθατε στον iD, επεξεργαστή για το OpenStreetMap", + "start": "Επεξεργασία Τώρα" + }, + "source_switch": { + "lose_changes": "Έχετε μη αποθηκευμένες αλλαγές. Αλλάζοντας τον διακομιστή χάρτη θα τις απορρίψετε. Είστε σίγουρος ότι θέλετε να αλλάξετε διακομιστή;" + }, + "tag_reference": { + "description": "Περιγραφή", + "on_wiki": "{tag} στο wiki.osm.org" + }, + "validations": { + "untagged_line": "Γραμμή χωρίς ετικέτα", + "untagged_area": "Περιοχή χωρίς ετικέτα", + "many_deletions": "Διαγράφετε {n} αντικείμενα. Είστε σίγουρος ότι θέλετε να το κάνετε αυτό; Αυτό θα τα διαγράψει από το χάρτη πού όλοι οι άλλοι βλέπουν στο openstreetmap.org.", + "tag_suggests_area": "Η ετικέτα {tag} προτείνει η γραμμή πρέπει να είναι περιοχή, αλλά δεν είναι περιοχή", + "deprecated_tags": "Παρωχημένες ετικέτες: {tags}" + }, + "zoom": { + "in": "Μεγέθυνση", + "out": "Σμίκρυνση" + }, + "gpx": { + "local_layer": "Τοπικό αρχείο GPX" }, "help": { - "title": "Βοήθεια" + "title": "Βοήθεια", + "help": "# Βοήθεια\n\nΑυτός είναι ένας επεξεργαστής για το [OpenStreetMap](http://www.openstreetmap.org/),\n τον ελεύθερο και επεξεργάσιμο παγκόσμιο χάρτη. Μπορείτε να τον χρησιμοποιήσετε για\n προσθήκη ή ενημέρωση δεδομένων στην περιοχή σας, φτιάχνοντας έναν ανοικτού-κώδικα\n και ανοικτών-δεδομένων παγκόσμιο χάρτη καλύτερο για όλους.\n\nΟι διορθώσεις που κάνετε σε αυτό το χάρτη θα είναι ορατές σε όλους όσους \nχρησιμοποιούν το OpenStreetMap. Για να είναι δυνατόν να κάνετε κάποια \nδιόρθωση, χρειάζεστε ένα \n[δωρεάν λογαριασμό OpenStreetMap](https://www.openstreetmap.org/user/new).\n\nΟ [iD editor](http://ideditor.com/) είναι ένα συνεργατικό έργο με τον [πηγαίο κώδικα\nδιαθέσιμο στο GitHub](https://github.com/systemed/iD).\n" + }, + "intro": { + "points": { + "title": "Σημεία" + }, + "areas": { + "title": "Περιοχές", + "search": "**Αναζήτηση για '{name}'.**" + }, + "lines": { + "title": "Γραμμές" + }, + "startediting": { + "title": "Εκκίνηση Επεξεργασίας", + "start": "Αρχίστε να χαρτογραφείτε!" + } }, "presets": { "categories": { + "category-landuse": { + "name": "Χρήση Γης" + }, "category-rail": { "name": "Σιδηροδρομική Γραμμή" }, "category-road": { "name": "Δρόμος" }, + "category-route": { + "name": "Διαδρομή" + }, "category-water": { "name": "Νερό" } }, "fields": { "access": { + "label": "Πρόσβαση", + "placeholder": "Άγνωστο", "types": { "access": "Γενική", "foot": "Πεζοί", - "motor_vehicle": "Μηχανάκια", - "bicycle": "Μοτοσικλέτες", + "motor_vehicle": "Μηχανοκίνητα", + "bicycle": "Ποδήλατα", "horse": "Άλογα" }, "options": { "yes": { - "title": "Επιτρέπεται" + "title": "Επιτρέπεται", + "description": "Η πρόσβαση επιτρέπεται νόμιμα, Δικαίωμα διέλευσης" }, "no": { - "title": "Απαγορεύεται" + "title": "Απαγορεύεται", + "description": "Η πρόσβαση δεν επιτρέπεται στο ευρύ κοινό" + }, + "permissive": { + "title": "Ανεκτική", + "description": "Η πρόσβαση επιτρέπεται μέχρι ο ιδιοκτήτης αναιρέσει την άδεια" }, "private": { - "title": "Ιδιωτική" + "title": "Ιδιωτική", + "description": "Η πρόσβαση επιτρέπεται μόνο με άδεια από τον ιδιοκτήτη σε ατομική βάση" + }, + "designated": { + "title": "Καθορισμένο", + "description": "Η πρόσβαση επιτρέπεται βάσει πινακίδων ή συγκεκριμένων τοπικών νόμων" }, "destination": { - "title": "Προορισμός" + "title": "Προορισμός", + "description": "Η πρόσβαση επιτρέπεται μόνο για για να φτάσετε σε κάποιο προορισμό" } } }, "address": { "label": "Διεύθυνση", "placeholders": { + "housename": "Όνομα Σπιτιού", + "number": "123", "street": "Οδός", "city": "Πόλη", "postcode": "Ταχυδρομικός Κώδικας" } }, + "admin_level": { + "label": "Δοιηκητική Βαθμίδα" + }, "aeroway": { "label": "Είδος" }, "amenity": { "label": "Είδος" }, + "atm": { + "label": "ATM" + }, "barrier": { "label": "Είδος" }, @@ -85,6 +356,7 @@ "label": "Κτίριο" }, "capacity": { + "label": "Χωρητικότητα", "placeholder": "50, 100, 200..." }, "cardinal_direction": { @@ -106,8 +378,17 @@ "crossing": { "label": "Είδος" }, + "cuisine": { + "label": "Κουζίνα" + }, + "denomination": { + "label": "Δόγμα" + }, + "description": { + "label": "Περιγραφή" + }, "emergency": { - "label": "Επείγον" + "label": "Επείγοντα" }, "entrance": { "label": "Είδος" @@ -115,16 +396,38 @@ "fax": { "placeholder": "+31 42 123 4567" }, + "fee": { + "label": "Αμοιβή" + }, + "fire_hydrant/type": { + "label": "Τύπος" + }, + "generator/method": { + "label": "Μέθοδος" + }, + "generator/source": { + "label": "Πηγή" + }, + "generator/type": { + "label": "Τύπος" + }, "highway": { "label": "Είδος" }, "historic": { "label": "Είδος" }, + "iata": { + "label": "IATA" + }, + "incline": { + "label": "Κλήση" + }, "internet_access": { "label": "Πρόσβαση Στο Διαδίκτυο", "options": { "wlan": "Ασύρματο Δίκτυο", + "wired": "Ενσύρματο δύκτυο", "terminal": "Τερματικό" } }, @@ -132,10 +435,14 @@ "label": "Λωρίδες", "placeholder": "1, 2, 3..." }, + "layer": { + "label": "Στρώση" + }, "leisure": { "label": "Είδος" }, "levels": { + "label": "Επίπεδα", "placeholder": "2, 4, 6..." }, "location": { @@ -149,7 +456,8 @@ "placeholder": "40, 50, 60..." }, "name": { - "label": "Όνομα" + "label": "Όνομα", + "placeholder": "Κοινό Όνομα (αν υπάρχει)" }, "natural": { "label": "Φυσικό" @@ -220,13 +528,22 @@ "shelter": { "label": "Καταφύγιο" }, + "shop": { + "label": "Είδος" + }, "source": { "label": "Πηγή" }, + "sport": { + "label": "Άθλημα" + }, "structure": { + "placeholder": "Άγνωστο", "options": { "bridge": "Γέφυρα", - "tunnel": "Τούνελ" + "tunnel": "Σήραγγα", + "embankment": "Ανάχωμα", + "cutting": "Ανασκαφή" } }, "supervised": { @@ -235,9 +552,15 @@ "surface": { "label": "Επιφάνεια" }, + "towertype": { + "label": "Τύπος Πύργου" + }, "tracktype": { "label": "Είδος" }, + "trail_visibility": { + "label": "Ορατότητα Μονοπατιού" + }, "water": { "label": "Είδος" }, @@ -252,7 +575,10 @@ "label": "Είδος" }, "wheelchair": { - "label": "Πρόσβαση Σε Αναπήρικο Καροτσάκι" + "label": "Πρόσβαση Σε Αναπηρικό Καροτσάκι" + }, + "wikipedia": { + "label": "Wikipedia" }, "wood": { "label": "Είδος" @@ -268,11 +594,23 @@ "aeroway/aerodrome": { "name": "Αεροδρόμιο" }, + "aeroway/gate": { + "name": "Πύλη Αεροδρομίου" + }, + "aeroway/hangar": { + "name": "Υπόστεγο Αεροσκαφών" + }, "aeroway/helipad": { "name": "Ελικοδρόμιο" }, + "aeroway/runway": { + "name": "Διάδρομος" + }, "aeroway/taxiway": { - "name": "Πιάτσα Ταξί" + "name": "Τροχιόδρομος" + }, + "amenity/atm": { + "name": "ATM" }, "amenity/bank": { "name": "Τράπεζα" @@ -284,10 +622,10 @@ "name": "Παγκάκι" }, "amenity/bicycle_parking": { - "name": "Χώρος Σταύθμεσης Ποδηλάτων" + "name": "Χώρος Στάθμευσης Ποδηλάτων" }, "amenity/bicycle_rental": { - "name": "Κατάστημα Ενοικίασης Ποδηλάτων" + "name": "Ενοικίαση Ποδηλάτων" }, "amenity/cafe": { "name": "Καφετέρια" @@ -298,6 +636,9 @@ "amenity/car_wash": { "name": "Πλυντήριο Αυτοκινήτων" }, + "amenity/childcare": { + "name": "Φροντίδα Παιδιών" + }, "amenity/cinema": { "name": "Κινηματογράφος" }, @@ -307,6 +648,9 @@ "amenity/courthouse": { "name": "Δικαστήριο" }, + "amenity/drinking_water": { + "name": "Πόσιμο Νερό" + }, "amenity/embassy": { "name": "Πρεσβεία" }, @@ -328,6 +672,9 @@ "amenity/hospital": { "name": "Νοσοκομείο" }, + "amenity/kindergarten": { + "name": "Νηπιαγωγείο" + }, "amenity/library": { "name": "Βιβλιοθήκη" }, @@ -335,7 +682,7 @@ "name": "Αγορά" }, "amenity/parking": { - "name": "Χώρος Σταύθμεσης" + "name": "Χώρος Στάθμευσης" }, "amenity/pharmacy": { "name": "Φαρμακείο" @@ -343,6 +690,9 @@ "amenity/place_of_worship": { "name": "Χώρος Λατρείας" }, + "amenity/place_of_worship/buddhist": { + "name": "Βουδιστικός Ναός" + }, "amenity/place_of_worship/christian": { "name": "Εκκλησία" }, @@ -361,6 +711,9 @@ "amenity/post_office": { "name": "Ταχυδρομείο" }, + "amenity/pub": { + "name": "Παμπ" + }, "amenity/restaurant": { "name": "Εστιατόριο" }, @@ -394,9 +747,21 @@ "area": { "name": "Περιοχή" }, + "barrier": { + "name": "Εμπόδιο" + }, + "barrier/bollard": { + "name": "Στύλος" + }, "barrier/cattle_grid": { "name": "Συρματόπλεγμα" }, + "barrier/city_wall": { + "name": "Τείχη Πόλης" + }, + "barrier/cycle_barrier": { + "name": "Κυκλικός Φράκτης" + }, "barrier/ditch": { "name": "Χαντάκι" }, @@ -412,6 +777,12 @@ "barrier/hedge": { "name": "Περίφραξη" }, + "barrier/lift_gate": { + "name": "Ανυψούμενη Πύλη" + }, + "barrier/retaining_wall": { + "name": "Διατηρητέα Τείχη" + }, "barrier/stile": { "name": "Στύλος" }, @@ -421,18 +792,39 @@ "barrier/wall": { "name": "Τοίχος" }, + "boundary/administrative": { + "name": "Δοιηκητικό Όριο" + }, "building": { "name": "Κτίριο" }, "building/apartments": { "name": "Διαμερίσματα" }, + "building/commercial": { + "name": "Εμπορικό Κτίριο" + }, "building/entrance": { "name": "Είσοδος" }, "building/house": { "name": "Σπίτι" }, + "building/hut": { + "name": "Καλύβα" + }, + "building/industrial": { + "name": "Βιομηχανικό Κτήριο" + }, + "building/residential": { + "name": "Κτίριο Κατοικιών" + }, + "emergency/ambulance_station": { + "name": "Σταθμός Ασθενοφόρων" + }, + "emergency/fire_hydrant": { + "name": "Πυροσβεστικός Κρουνός" + }, "emergency/phone": { "name": "Τηλέφωνο Ανάγκης" }, @@ -442,8 +834,11 @@ "highway": { "name": "Αυτοκινητόδρομος" }, + "highway/bridleway": { + "name": "Μονοπάτι Αλόγων" + }, "highway/bus_stop": { - "name": "Στάση Λεοφορείων" + "name": "Στάση Λεωφορείων" }, "highway/crossing": { "name": "Διασταύρωση" @@ -454,48 +849,114 @@ "highway/footway": { "name": "Μονοπάτι" }, + "highway/mini_roundabout": { + "name": "Μικρός Κυκλικός Κόμβος" + }, "highway/motorway": { "name": "Αυτοκινητόδρομος" }, + "highway/motorway_junction": { + "name": "Διασταύρωση Αυτοκινητόδρομου" + }, + "highway/motorway_link": { + "name": "Σύνδεση Αυτοκινητόδρομου" + }, + "highway/path": { + "name": "Μονοπάτι" + }, + "highway/pedestrian": { + "name": "Πεζόδρομος" + }, + "highway/primary": { + "name": "Πρωτεύων Δρόμος" + }, + "highway/primary_link": { + "name": "Σύνδεση Πρωτεύοντος" + }, + "highway/residential": { + "name": "Οικιστική Οδός" + }, "highway/road": { "name": "Άγνωστος Δρόμος" }, + "highway/secondary": { + "name": "Δευτερεύων Δρόμος" + }, + "highway/secondary_link": { + "name": "Σύνδεση Δευτερεύοντος" + }, + "highway/service/alley": { + "name": "Δρομάκι" + }, "highway/service/emergency_access": { - "name": "Πρόσβαση Εκτακτού Αναγκής" + "name": "Πρόσβαση Εκτάκτου Ανάγκης" + }, + "highway/service/parking_aisle": { + "name": "Διάδρομος Στάθμευσης" }, "highway/steps": { "name": "Σκαλοπάτια" }, + "highway/tertiary": { + "name": "Τριτεύων Δρόμος" + }, "highway/track": { - "name": "Αγροτικός Δρόμος" + "name": "Χωματόδρομος" }, "highway/traffic_signals": { "name": "Φανάρια" }, + "highway/unclassified": { + "name": "Μη κατηγοριοποιημένος Δρόμος" + }, + "historic": { + "name": "Ιστορική τοποθεσία" + }, "historic/archaeological_site": { "name": "Αρχαιολογικός Χώρος" }, + "historic/boundary_stone": { + "name": "Βράχος Ορόσημο" + }, "historic/castle": { "name": "Κάστρο" }, + "historic/memorial": { + "name": "Μνημείο" + }, "historic/monument": { "name": "Μνημείο" }, "historic/ruins": { "name": "Ερείπια" }, + "landuse": { + "name": "Χρήση γης" + }, "landuse/basin": { "name": "Κανάλι Αποστράγγισης" }, "landuse/cemetery": { "name": "Κοιμητήριο" }, + "landuse/commercial": { + "name": "Εμπορική" + }, + "landuse/construction": { + "name": "Κατασκευές" + }, "landuse/farm": { "name": "Αγρο" }, + "landuse/farmyard": { + "name": "Αγροτεμάχιο" + }, "landuse/forest": { "name": "Δάσος" }, + "landuse/grass": { + "name": "Γρασίδι" + }, "landuse/industrial": { "name": "Βιομηχανική" }, @@ -503,17 +964,29 @@ "name": "Λιβάδι" }, "landuse/orchard": { - "name": "Δενδρώνας" + "name": "Περιβόλι" }, "landuse/quarry": { "name": "Λατομείο" }, + "landuse/residential": { + "name": "Οικιστική" + }, + "landuse/retail": { + "name": "Λιανικό Εμπόριο" + }, "landuse/vineyard": { "name": "Αμπελώνας" }, "leisure": { "name": "Αναψυχή" }, + "leisure/dog_park": { + "name": "Πάρκο Σκύλων" + }, + "leisure/garden": { + "name": "Κήπος" + }, "leisure/golf_course": { "name": "Γήπεδο Γκολφ" }, @@ -523,11 +996,14 @@ "leisure/park": { "name": "Πάρκο" }, + "leisure/pitch": { + "name": "Γήπεδο" + }, "leisure/pitch/american_football": { "name": "Γήπεδο Αμερικάνικου Ποδοσφαίρου" }, "leisure/pitch/baseball": { - "name": "Γήπεδο Μπέϊζμπολ" + "name": "Γήπεδο Μπέιζμπολ" }, "leisure/pitch/basketball": { "name": "Γήπεδο Μπάσκετ" @@ -539,26 +1015,53 @@ "name": "Γήπεδο Τέννις" }, "leisure/pitch/volleyball": { - "name": "Γήπεδο Βόλλευ" + "name": "Γήπεδο Βόλεϋ" }, "leisure/playground": { "name": "Παιδική Χαρά" }, + "leisure/slipway": { + "name": "Γλύστρα" + }, "leisure/stadium": { "name": "Στάδιο" }, "leisure/swimming_pool": { "name": "Πισίνα" }, + "leisure/track": { + "name": "Πίστα Αγώνων" + }, + "line": { + "name": "Γραμμή" + }, + "man_made": { + "name": "Ανθρώπινες Κατασκευές" + }, + "man_made/breakwater": { + "name": "Κυματοθραύστης" + }, "man_made/lighthouse": { "name": "Φάρος" }, "man_made/pier": { "name": "Αποβάθρα" }, + "man_made/tower": { + "name": "Πύργος" + }, + "man_made/wastewater_plant": { + "name": "Βιολογικός Καθαρισμός" + }, "man_made/water_tower": { "name": "Δεξαμενή Νερού" }, + "man_made/water_well": { + "name": "Πηγάδι Νερού" + }, + "natural": { + "name": "Φυσικό" + }, "natural/bay": { "name": "Κόλπος" }, @@ -566,7 +1069,7 @@ "name": "Παραλία" }, "natural/cliff": { - "name": "Βράχος" + "name": "Γκρεμός" }, "natural/coastline": { "name": "Ακτογραμμή" @@ -577,8 +1080,11 @@ "natural/grassland": { "name": "Χορτολιβαδική Έκταση" }, + "natural/peak": { + "name": "Κορυφή" + }, "natural/scrub": { - "name": "Θάμνος" + "name": "Θαμνότοπος" }, "natural/spring": { "name": "Πηγή" @@ -592,9 +1098,24 @@ "natural/water/lake": { "name": "Λίμνη" }, + "natural/water/pond": { + "name": "Λιμνούλα" + }, + "natural/water/reservoir": { + "name": "Ταμιευτήρας" + }, + "natural/wetland": { + "name": "Έλος" + }, + "natural/wood": { + "name": "Δάσος" + }, "office": { "name": "Γραφείο" }, + "place": { + "name": "Τόπος" + }, "place/city": { "name": "Πόλη" }, @@ -604,20 +1125,38 @@ "place/island": { "name": "Νησί" }, + "place/isolated_dwelling": { + "name": "Απομονωμένες Κατοικίες" + }, + "place/locality": { + "name": "Τοποθεσία" + }, + "place/town": { + "name": "Κωμόπολη" + }, "place/village": { "name": "Χωριό" }, + "point": { + "name": "Σημείο" + }, + "power": { + "name": "Ενέργεια" + }, + "power/generator": { + "name": "Γενήτρια Ρεύματος" + }, "power/line": { "name": "Καλώδιο Ρεύματος" }, "power/pole": { - "name": "Κολώνα Ρεύματος" + "name": "Κολόνα Ρεύματος" }, "power/sub_station": { - "name": "Υπόγειος Σταθμός " + "name": "Υποσταθμός " }, "power/tower": { - "name": "Κολώνα Υψηλής Τάσης" + "name": "Κολόνα Υψηλής Τάσης" }, "power/transformer": { "name": "Μετασχηματιστής" @@ -626,7 +1165,16 @@ "name": "Σιδηροδρομικός Διάδρομος" }, "railway/abandoned": { - "name": "Εγκατελείμενη Σιδηροδρομική Γραμμή" + "name": "Εγκαταλελειμμένη Σιδηροδρομική Γραμμή" + }, + "railway/disused": { + "name": "Σιδηροτροχιά εκτός Χρήσης" + }, + "railway/level_crossing": { + "name": "Ισόπεδη διάβαση" + }, + "railway/platform": { + "name": "Σιδηροδρομική Αποβάθρα" }, "railway/rail": { "name": "Σιδηροδρομική Γραμμή" @@ -643,8 +1191,11 @@ "railway/tram": { "name": "Τραμ" }, + "relation": { + "name": "Σχέση" + }, "route/ferry": { - "name": "Γραμμή Πλοίων" + "name": "Διαδρομή Πορθμείου" }, "shop": { "name": "Κατάστημα" @@ -655,6 +1206,9 @@ "shop/bakery": { "name": "Αρτοποιείο" }, + "shop/beauty": { + "name": "Κατάστημα Ομορφιάς" + }, "shop/beverages": { "name": "Αναψυκτήριο" }, @@ -664,12 +1218,18 @@ "shop/books": { "name": "Βιβλιοπωλείο" }, + "shop/boutique": { + "name": "Μπουτίκ" + }, "shop/butcher": { - "name": "Χασάπικο" + "name": "Κρεοπωλείο" }, "shop/car": { "name": "Εμπορία Αυτοκινήτων" }, + "shop/car_parts": { + "name": "Ανταλακτικά Αυτοκινήτων" + }, "shop/car_repair": { "name": "Συνεργείο Αυτοκινήτων" }, @@ -682,9 +1242,21 @@ "shop/computer": { "name": "Κατάστημα Υπολογιστών" }, + "shop/confectionery": { + "name": "Ζαχαροπλαστείο" + }, + "shop/convenience": { + "name": "Παντοπωλείο" + }, + "shop/department_store": { + "name": "Πολυκατάστημα" + }, "shop/dry_cleaning": { "name": "Στεγνοκαθαριστήριο" }, + "shop/electronics": { + "name": "Κατάστημα Ηλεκτρονικών" + }, "shop/fishmonger": { "name": "Ψαράδικο" }, @@ -695,7 +1267,7 @@ "name": "Κατάστημα Επίπλων" }, "shop/gift": { - "name": "Καταστημά Δώρων" + "name": "Κατάστημα Δώρων" }, "shop/greengrocer": { "name": "Οπωροπωλείο" @@ -703,6 +1275,12 @@ "shop/hairdresser": { "name": "Κομμωτήριο" }, + "shop/hardware": { + "name": "Σιδηροπωλείο" + }, + "shop/hifi": { + "name": "Κατάστημα Hifi" + }, "shop/jewelry": { "name": "Κοσμηματοπωλείο" }, @@ -716,10 +1294,25 @@ "name": "Εμπορικό Κέντρο" }, "shop/mobile_phone": { - "name": "Κατάστημα Κινητής Τηλεφωνείας" + "name": "Κατάστημα Κινητής Τηλεφωνίας" + }, + "shop/motorcycle": { + "name": "Εμπόριο Μοτοσυκλετών" + }, + "shop/music": { + "name": "Κατάστημα Μουσικής" + }, + "shop/newsagent": { + "name": "Πρακτορείο τύπου" }, "shop/optician": { - "name": "Οπτικό Κέντρο" + "name": "Οπτικός" + }, + "shop/outdoor": { + "name": "Κατάστημα Υπαίθριων" + }, + "shop/pet": { + "name": "Κατάστημα Κατοικίδιων" }, "shop/shoes": { "name": "Κατάστημα Υπόδησης" @@ -727,6 +1320,9 @@ "shop/sports": { "name": "Κατάστημα Αθλητικών Ειδών" }, + "shop/stationery": { + "name": "Κατάστημα Γραφικής Ύλης" + }, "shop/toys": { "name": "Κατάστημα Παιχνιδιών" }, @@ -746,7 +1342,10 @@ "name": "Τ" }, "tourism/camp_site": { - "name": "Κατασκήνωση" + "name": "Χώρος Κατασκήνωσης" + }, + "tourism/caravan_site": { + "name": "Πάρκο τροχόσπιτων" }, "tourism/chalet": { "name": "Σαλέ" @@ -766,17 +1365,38 @@ "tourism/museum": { "name": "Μουσείο" }, + "tourism/picnic_site": { + "name": "Χώρος πικ νικ" + }, "tourism/theme_park": { "name": "Θεματικό Πάρκο" }, + "tourism/viewpoint": { + "name": "Σημείο θέασης" + }, "tourism/zoo": { "name": "Ζωολογικός Κήπος" }, + "type/boundary": { + "name": "Όριο" + }, + "type/boundary/administrative": { + "name": "Διοικητικό Όριο" + }, + "type/multipolygon": { + "name": "Πολύ-Πολύγωνο" + }, + "type/restriction": { + "name": "Περιορισμός" + }, + "type/route": { + "name": "Δρομολόγιο" + }, "type/route/bus": { - "name": "Γραμμή Λεοφορείων" + "name": "Διαδρομή Λεωφορείων" }, "type/route/ferry": { - "name": "Γραμμή Πλοίων" + "name": "Διαδρομή Πορθμείου" }, "type/route/train": { "name": "Γραμμή Τραίνων" @@ -784,17 +1404,29 @@ "vertex": { "name": "Άλλο" }, + "waterway": { + "name": "Διαδρομή νερού" + }, "waterway/canal": { "name": "Κανάλι" }, "waterway/dam": { "name": "Φράγμα" }, + "waterway/ditch": { + "name": "Χαντάκι" + }, "waterway/river": { "name": "Ποταμός" }, "waterway/riverbank": { "name": "Όχθη Ποταμιού" + }, + "waterway/stream": { + "name": "Ρέμα" + }, + "waterway/weir": { + "name": "Υδατοφράκτης" } } } diff --git a/vendor/assets/iD/iD/locales/en.json b/vendor/assets/iD/iD/locales/en.json index e63f7775e..8fa572e25 100644 --- a/vendor/assets/iD/iD/locales/en.json +++ b/vendor/assets/iD/iD/locales/en.json @@ -241,6 +241,8 @@ "title": "Background", "description": "Background settings", "percent_brightness": "{opacity}% brightness", + "custom": "Custom", + "custom_prompt": "Enter a tile template. Valid tokens are {z}, {x}, {y} for Z/X/Y scheme and {u} for quadtile scheme.", "fix_misalignment": "Fix misalignment", "reset": "reset" }, @@ -263,7 +265,8 @@ "just_edited": "You just edited OpenStreetMap!", "view_on_osm": "View on OSM", "facebook": "Share on Facebook", - "tweet": "Tweet", + "twitter": "Share on Twitter", + "google": "Share on Google+", "help_html": "Your changes should appear in the \"Standard\" layer in a few minutes. Other layers, and certain features, may take longer\n(details).\n" }, "confirm": { @@ -311,7 +314,8 @@ "imagery": "# Imagery\n\nAerial imagery is an important resource for mapping. A combination of\nairplane flyovers, satellite views, and freely-compiled sources are available\nin the editor under the 'Background Settings' menu on the left.\n\nBy default a [Bing Maps](http://www.bing.com/maps/) satellite layer is\npresented in the editor, but as you pan and zoom the map to new geographical\nareas, new sources will become available. Some countries, like the United\nStates, France, and Denmark have very high-quality imagery available for some areas.\n\nImagery is sometimes offset from the map data because of a mistake on the\nimagery provider's side. If you see a lot of roads shifted from the background,\ndon't immediately move them all to match the background. Instead you can adjust\nthe imagery so that it matches the existing data by clicking 'Fix alignment' at\nthe bottom of the Background Settings UI.\n", "addresses": "# Addresses\n\nAddresses are some of the most useful information for the map.\n\nAlthough addresses are often represented as parts of streets, in OpenStreetMap\nthey're recorded as attributes of buildings and places along streets.\n\nYou can add address information to places mapped as building outlines\nas well as those mapped as single points. The optimal source of address\ndata is from an on-the-ground survey or personal knowledge - as with any\nother feature, copying from commercial sources like Google Maps is strictly\nforbidden.\n", "inspector": "# Using the Inspector\n\nThe inspector is the user interface element on the right-hand side of the\npage that appears when a feature is selected and allows you to edit its details.\n\n### Selecting a Feature Type\n\nAfter you add a point, line, or area, you can choose what type of feature it\nis, like whether it's a highway or residential road, supermarket or cafe.\nThe inspector will display buttons for common feature types, and you can\nfind others by typing what you're looking for in the search box.\n\nClick the 'i' in the bottom-right-hand corner of a feature type button to\nlearn more about it. Click a button to choose that type.\n\n### Using Forms and Editing Tags\n\nAfter you choose a feature type, or when you select a feature that already\nhas a type assigned, the inspector will display fields with details about\nthe feature like its name and address.\n\nBelow the fields you see, you can click icons to add other details,\nlike [Wikipedia](http://www.wikipedia.org/) information, wheelchair\naccess, and more.\n\nAt the bottom of the inspector, click 'Additional tags' to add arbitrary\nother tags to the element. [Taginfo](http://taginfo.openstreetmap.org/) is a\ngreat resource for learn more about popular tag combinations.\n\nChanges you make in the inspector are automatically applied to the map.\nYou can undo them at any time by clicking the 'Undo' button.\n\n### Closing the Inspector\n\nYou can close the inspector by clicking the close button in the top-right,\npressing the 'Escape' key, or clicking on the map.\n", - "buildings": "# Buildings\n\nOpenStreetMap is the world's largest database of buildings. You can create\nand improve this database.\n\n### Selecting\n\nYou can select a building by clicking on its border. This will highlight the\nbuilding and open a small tools menu and a sidebar showing more information\nabout the building.\n\n### Modifying\n\nSometimes buildings are incorrectly placed or have incorrect tags.\n\nTo move an entire building, select it, then click the 'Move' tool. Move your\nmouse to shift the building, and click when it's correctly placed.\n\nTo fix the specific shape of a building, click and drag the nodes that form\nits border into better places.\n\n### Creating\n\nOne of the main questions around adding buildings to the map is that\nOpenStreetMap records buildings both as shapes and points. The rule of thumb\nis to _map a building as a shape whenever possible_, and map companies, homes,\namenities, and other things that operate out of buildings as points placed\nwithin the building shape.\n\nStart drawing a building as a shape by clicking the 'Area' button in the top\nleft of the interface, and end it either by pressing 'Return' on your keyboard\nor clicking on the first node drawn to close the shape.\n\n### Deleting\n\nIf a building is entirely incorrect - you can see that it doesn't exist in satellite\nimagery and ideally have confirmed locally that it's not present - you can delete\nit, which removes it from the map. Be cautious when deleting features -\nlike any other edit, the results are seen by everyone and satellite imagery\nis often out of date, so the building could simply be newly built.\n\nYou can delete a building by clicking on it to select it, then clicking the\ntrash can icon or pressing the 'Delete' key.\n" + "buildings": "# Buildings\n\nOpenStreetMap is the world's largest database of buildings. You can create\nand improve this database.\n\n### Selecting\n\nYou can select a building by clicking on its border. This will highlight the\nbuilding and open a small tools menu and a sidebar showing more information\nabout the building.\n\n### Modifying\n\nSometimes buildings are incorrectly placed or have incorrect tags.\n\nTo move an entire building, select it, then click the 'Move' tool. Move your\nmouse to shift the building, and click when it's correctly placed.\n\nTo fix the specific shape of a building, click and drag the nodes that form\nits border into better places.\n\n### Creating\n\nOne of the main questions around adding buildings to the map is that\nOpenStreetMap records buildings both as shapes and points. The rule of thumb\nis to _map a building as a shape whenever possible_, and map companies, homes,\namenities, and other things that operate out of buildings as points placed\nwithin the building shape.\n\nStart drawing a building as a shape by clicking the 'Area' button in the top\nleft of the interface, and end it either by pressing 'Return' on your keyboard\nor clicking on the first node drawn to close the shape.\n\n### Deleting\n\nIf a building is entirely incorrect - you can see that it doesn't exist in satellite\nimagery and ideally have confirmed locally that it's not present - you can delete\nit, which removes it from the map. Be cautious when deleting features -\nlike any other edit, the results are seen by everyone and satellite imagery\nis often out of date, so the building could simply be newly built.\n\nYou can delete a building by clicking on it to select it, then clicking the\ntrash can icon or pressing the 'Delete' key.\n", + "relations": "# Relations\n\nA relation is a special type of feature in OpenStreetMap that groups together\nother features. For example, two common types of relations are *route relations*,\nwhich group together sections of road that belong to a specific freeway or\nhighway, and *multipolygons*, which group together several lines that define\na complex area (one with several pieces or holes in it like a donut).\n\nThe group of features in a relation are called *members*. In the sidebar, you can\nsee which relations a feature is a member of, and click on a relation there\nto select the it. When the relation is selected, you can see all of its\nmembers listed in the sidebar and highlighted on the map.\n\nFor the most part, iD will take care of maintaining relations automatically\nwhile you edit. The main thing you should be aware of is that if you delete a\nsection of road to redraw it more accurately, you should make sure that the\nnew section is a member of the same relations as the original.\n\n## Editing Relations\n\nIf you want to edit relations, here are the basics.\n\nTo add a feature to a relation, select the feature, click the \"+\" button in the\n\"All relations\" section of the sidebar, and select or type the name of the relation.\n\nTo create a new relation, select the first feature that should be a member,\nclick the \"+\" button in the \"All relations\" section, and select \"New relation...\".\n\nTo remove a feature from a relation, select the feature and click the trash\nbutton next to the relation you want to remove it from.\n\nYou can create multipolygons with holes using the \"Merge\" tool. Draw two areas (inner\nand outer), hold the Shift key and click on each of them to select them both, and then\nclick the \"Merge\" (+) button.\n" }, "intro": { "navigation": { @@ -695,6 +699,9 @@ "surface": { "label": "Surface" }, + "toilets/disposal": { + "label": "Disposal" + }, "tourism": { "label": "Type" }, @@ -919,6 +926,10 @@ "name": "Pub", "terms": "" }, + "amenity/ranger_station": { + "name": "Ranger Station", + "terms": "visitor center,permit center,backcountry office" + }, "amenity/restaurant": { "name": "Restaurant", "terms": "bar,cafeteria,café,canteen,chophouse,coffee shop,diner,dining room,dive*,doughtnut shop,drive-in,eatery,eating house,eating place,fast-food place,greasy spoon,grill,hamburger stand,hashery,hideaway,hotdog stand,inn,joint*,luncheonette,lunchroom,night club,outlet*,pizzeria,saloon,soda fountain,watering hole" @@ -945,7 +956,7 @@ }, "amenity/toilets": { "name": "Toilets", - "terms": "bathroom,restroom" + "terms": "bathroom,restroom,outhouse,privy,head,lavatory,latrine,water closet,WC,W.C." }, "amenity/townhall": { "name": "Town Hall", @@ -1865,7 +1876,7 @@ }, "tourism/artwork": { "name": "Artwork", - "terms": "" + "terms": "mural,sculpture,statue" }, "tourism/attraction": { "name": "Tourist Attraction", diff --git a/vendor/assets/iD/iD/locales/es.json b/vendor/assets/iD/iD/locales/es.json index aff09f25c..e26cb11eb 100644 --- a/vendor/assets/iD/iD/locales/es.json +++ b/vendor/assets/iD/iD/locales/es.json @@ -228,7 +228,7 @@ "role": "Rol", "choose": "Selecciona tipo de elemento", "results": "{n} resultados para {search}", - "reference": "Ver en la wiki de OpenStreetMap", + "reference": "Ver más información en la wiki de OpenStreetMap", "back_tooltip": "Cambiar tipo de elemento", "remove": "Eliminar", "search": "Buscar", @@ -263,7 +263,7 @@ "just_edited": "¡Acaba de editar OpenStreetMap!", "view_on_osm": "Ver en OSM", "facebook": "Compartir en Facebook", - "tweet": "Tweet" + "help_html": "Tus cambios deberán aparecer en la capa \"Estándar\" en unos pocos minutos. Otras capas, y algunos determinados elementos del mapa, pueden tomar más tiempo en actualizarse (más detalles acerca de esto).\n" }, "confirm": { "okay": "De acuerdo" @@ -692,6 +692,9 @@ "surface": { "label": "Superficie" }, + "toilets/disposal": { + "label": "Disponible" + }, "tourism": { "label": "Tipo" }, @@ -747,16 +750,20 @@ "name": "Puerta de embarque" }, "aeroway/hangar": { - "name": "Hangar" + "name": "Hangar", + "terms": "hangar" }, "aeroway/helipad": { - "name": "Helipuerto" + "name": "Helipuerto", + "terms": "helisuperficie,plataforma para helicópteros,helipad" }, "aeroway/runway": { - "name": "Pista de aeropuerto" + "name": "Pista de aeropuerto", + "terms": "pista,pista de aterrizaje,pista de despegue" }, "aeroway/taxiway": { - "name": "Pista de rodaje" + "name": "Pista de rodaje", + "terms": "pista de carreteo,pista de rodaje,pista de taxeo,calle de rodaje" }, "aeroway/terminal": { "name": "Terminal de aeropuerto" @@ -765,10 +772,12 @@ "name": "Servicios" }, "amenity/atm": { - "name": "Cajero automático" + "name": "Cajero automático", + "terms": "cajero automático,redbanc,ATM,ATH" }, "amenity/bank": { - "name": "Banco" + "name": "Banco", + "terms": "banco,banca,bancario,cooperativa de ahorro y crédito,cooperativa de crédito,SACCO" }, "amenity/bar": { "name": "Bar" @@ -801,7 +810,8 @@ "terms": "canguro,cuidadora" }, "amenity/cinema": { - "name": "Cine" + "name": "Cine", + "terms": "cinematógrafo,cine" }, "amenity/college": { "name": "Universidad", @@ -820,7 +830,8 @@ "terms": "embajada,consulado,consul" }, "amenity/fast_food": { - "name": "Comida rápida" + "name": "Comida rápida", + "terms": "comida rápida,platos preparados" }, "amenity/fire_station": { "name": "Parque de bomberos", @@ -842,7 +853,8 @@ "terms": "clínica, sanatorio, policlínica, manicomio,hospital" }, "amenity/kindergarten": { - "name": "Jardín de infancia" + "name": "Jardín de infancia", + "terms": "parvulario,jardín de infancia,jardín infantil,kínder,educación inicial,parvulos,jardín de infantes,educación preescolar" }, "amenity/library": { "name": "Biblioteca", @@ -886,7 +898,8 @@ "name": "Buzón de correos" }, "amenity/post_office": { - "name": "Oficina de correos" + "name": "Oficina de correos", + "terms": "correos,casa de correos,oficina de correos,oficina postal" }, "amenity/pub": { "name": "Pub", @@ -955,14 +968,16 @@ "name": "Zanja" }, "barrier/entrance": { - "name": "Entrada" + "name": "Entrada", + "terms": "puerta, portal, vestíbulo, umbral, soportal, pórtico, abertura, acceso, boca, embocadura, agujero, hueco, entrada, llegada" }, "barrier/fence": { "name": "Cerca", "terms": "valla, vallado, cercado, seto, muro, empalizada, barrera, tapia, verja, estacada, alambrada" }, "barrier/gate": { - "name": "Puerta" + "name": "Puerta", + "terms": "portón, abertura, pórtico, portillo, cancela, entrada, salida, paso, puerta" }, "barrier/hedge": { "name": "Seto" @@ -1151,7 +1166,8 @@ "name": "Mojón" }, "historic/castle": { - "name": "Castillo" + "name": "Castillo", + "terms": "castillo,castro,fuerte" }, "historic/memorial": { "name": "Monumento" @@ -1210,7 +1226,8 @@ "name": "Huerta" }, "landuse/quarry": { - "name": "Cantera" + "name": "Cantera", + "terms": "cantera" }, "landuse/residential": { "name": "Urbano" @@ -1235,7 +1252,8 @@ "name": "Campo de golf" }, "leisure/marina": { - "name": "Marina" + "name": "Marina", + "terms": "marina" }, "leisure/park": { "name": "Parque" @@ -1268,11 +1286,16 @@ "name": "Grada" }, "leisure/stadium": { - "name": "Estadio" + "name": "Estadio", + "terms": "estadio,cancha" }, "leisure/swimming_pool": { "name": "Piscina" }, + "leisure/track": { + "name": "Pista de carreras", + "terms": "circuito, pista" + }, "line": { "name": "Línea" }, @@ -1286,7 +1309,8 @@ "name": "Cortafuegos" }, "man_made/lighthouse": { - "name": "Faro" + "name": "Faro", + "terms": "faro" }, "man_made/pier": { "name": "Embarcadero" @@ -1373,7 +1397,8 @@ "name": "Lugar" }, "place/city": { - "name": "Ciudad" + "name": "Ciudad", + "terms": "urbe, capital, metrópoli, ciudad, núcleo urbano, localidad, villa" }, "place/hamlet": { "name": "Aldea", @@ -1401,6 +1426,10 @@ "power": { "name": "Electricidad" }, + "power/generator": { + "name": "Generador de energía", + "terms": "energía, potencia, electricidad, subestación " + }, "power/line": { "name": "Línea de alta tensión" }, @@ -1674,7 +1703,8 @@ "name": "Vista panorámica" }, "tourism/zoo": { - "name": "Zoo" + "name": "Zoo", + "terms": "zoo, zoológico " }, "type/boundary": { "name": "Límite" @@ -1729,10 +1759,12 @@ "name": "Otro" }, "waterway": { - "name": "Vía fluvial" + "name": "Vía fluvial", + "terms": "canal, cauce, acueducto, fluvial" }, "waterway/canal": { - "name": "Canal" + "name": "Canal", + "terms": "canaleta, canaleja, canalón, canalizo, caño, cañería, reguero, reguera, tubería, conducto, caz, cacera, zanja, acequia, cauce, cloaca, acueducto, canal" }, "waterway/dam": { "name": "Presa" @@ -1747,10 +1779,12 @@ "name": "Río" }, "waterway/riverbank": { - "name": "Ribera de un río" + "name": "Ribera de un río", + "terms": "borde, orilla, ribazo, riba, ribera" }, "waterway/stream": { - "name": "Arroyo" + "name": "Arroyo", + "terms": "torrente, riachuelo, arroyuelo, regato, reguero, torrentera, rivera, corriente, afluente, brazo, toma, río, arroyo" }, "waterway/weir": { "name": "Vertedero" diff --git a/vendor/assets/iD/iD/locales/et.json b/vendor/assets/iD/iD/locales/et.json index ac811d8c1..81dad6781 100644 --- a/vendor/assets/iD/iD/locales/et.json +++ b/vendor/assets/iD/iD/locales/et.json @@ -5,19 +5,25 @@ "description": "Lisa kaardile parke, hooneid, järvi ja muid alasid." }, "add_line": { - "title": "Joon" + "title": "Joon", + "description": "Lisa teid, tänavaid, jalgteid, ojasid ja teisi jooni kaardile." }, "add_point": { "title": "Punkt", "description": "Lisa kaardile restorane, monumente, postkaste ja muid punkte.", "tail": "Klõpsa kaardil punkti lisamiseks." + }, + "browse": { + "title": "Sirvi", + "description": "Nihuta ja suumi kaarti." } }, "operations": { "add": { "annotation": { "point": "Punkt lisatud.", - "vertex": "Joonele lisatud punkt." + "vertex": "Joonele lisatud punkt.", + "relation": "Relatsioon lisatud." } }, "start": { @@ -35,6 +41,9 @@ "cancel_draw": { "annotation": "Joonistamine katkestatud." }, + "change_role": { + "annotation": "Relatsiooni liikme roll on muudetud." + }, "change_tags": { "annotation": "Muudetud silte." }, @@ -52,6 +61,7 @@ "not_closed": "Seda ei saa teha ringikujuliseks kuna see ei ole silmus." }, "orthogonalize": { + "title": "Nurgad täisnurkseks", "description": "Täisnurgasta need nurgad.", "key": "Q", "annotation": { @@ -72,10 +82,18 @@ "multiple": "{n} objekti kustutatud." } }, + "add_member": { + "annotation": "Lisatud relatsiooni liige." + }, + "delete_member": { + "annotation": "Relatsiooni liige kustutatud." + }, "connect": { "annotation": { "point": "Joon ühendatud punktiga.", - "vertex": "Joon ühendatud teise joonega." + "vertex": "Joon ühendatud teise joonega.", + "line": "Tee on ühendatud jooneks.", + "area": "Tee on ühendatud alaks." } }, "disconnect": { @@ -112,7 +130,10 @@ } }, "reverse": { - "key": "V" + "title": "Pööra", + "description": "Pööra tee vastassuunda.", + "key": "V", + "annotation": "Tee on pööratud." }, "split": { "title": "Tükelda", @@ -139,6 +160,9 @@ "report_a_bug": "teata veast", "commit": { "title": "Salvesta muudatused", + "message_label": "Salvestuse kommentaar", + "upload_explanation": "Su salvestatavad muudatused on nähtaval kõikidel kaartidel mis kasutavad OpenStreetMap-i andmeid.", + "upload_explanation_with_user": "Su kasutajana {user} salvestatavad muudatused on nähtaval kõikidel kaartidel, mis kasutavad OpenStreetMap-i andmeid.", "save": "Salvesta", "cancel": "Tühista", "warnings": "Hoiatused", @@ -152,14 +176,19 @@ "inspector": { "show_more": "Näita rohkem", "all_tags": "Kõik sildid", + "all_relations": "Kõik relatsioonid", + "new_relation": "Uus relatsioon...", "results": "{n} tulemust otsingule {search}", "remove": "Eemalda", - "search": "Otsi" + "search": "Otsi", + "feature_list": "Otsi objekte", + "edit": "Muuda objekti" }, "background": { "title": "Taust", "description": "Tausta seaded", - "percent_brightness": "{opacity}% heledus" + "percent_brightness": "{opacity}% heledus", + "fix_misalignment": "Korrigeeri nihet" }, "save": { "title": "Salvesta", @@ -215,6 +244,12 @@ }, "presets": { "categories": { + "category-landuse": { + "name": "Maakasutus" + }, + "category-path": { + "name": "Rada (path)" + }, "category-rail": { "name": "Raudtee" }, @@ -226,6 +261,9 @@ } }, "fields": { + "access": { + "label": "Ligipääs" + }, "address": { "label": "Aadress", "placeholders": { @@ -236,9 +274,18 @@ "postcode": "Postiindeks" } }, + "aeroway": { + "label": "Tüüp" + }, + "amenity": { + "label": "Tüüp" + }, "atm": { "label": "Pangaautomaat" }, + "bicycle_parking": { + "label": "Tüüp" + }, "building": { "label": "Hoone" }, @@ -260,6 +307,12 @@ "collection_times": { "label": "Tühjendusajad" }, + "construction": { + "label": "Tüüp" + }, + "crossing": { + "label": "Tüüp" + }, "cuisine": { "label": "Köök" }, @@ -270,7 +323,8 @@ "label": "Kõrgus merepinnast" }, "fax": { - "label": "Faks" + "label": "Faks", + "placeholder": "+372 123 4567" }, "iata": { "label": "IATA" @@ -285,6 +339,9 @@ "terminal": "Terminal" } }, + "lanes": { + "label": "Sõiduread" + }, "levels": { "label": "Korruseid" }, @@ -338,13 +395,17 @@ "label": "Torni tüüp" }, "website": { - "label": "Veebileht" + "label": "Veebileht", + "placeholder": "http://näidis24.ee/" }, "wikipedia": { "label": "Wikipeedia" } }, "presets": { + "address": { + "name": "Aadress" + }, "aeroway/aerodrome": { "name": "Lennujaam" }, @@ -378,6 +439,9 @@ "amenity/cafe": { "name": "Kohvik" }, + "amenity/car_rental": { + "name": "Autorent" + }, "amenity/car_wash": { "name": "Autopesula" }, @@ -468,6 +532,9 @@ "amenity/waste_basket": { "name": "Prügikast" }, + "area": { + "name": "Ala" + }, "barrier": { "name": "Barjäär" }, @@ -528,6 +595,9 @@ "highway/footway": { "name": "Kõnnitee" }, + "highway/living_street": { + "name": "Majadevaheline tänav" + }, "highway/mini_roundabout": { "name": "Mini-ringtee" }, @@ -537,6 +607,9 @@ "highway/path": { "name": "Rada" }, + "highway/pedestrian": { + "name": "Jalajäija" + }, "highway/primary": { "name": "Põhimaantee" }, @@ -642,6 +715,9 @@ "leisure/swimming_pool": { "name": "Ujumisbassein" }, + "line": { + "name": "Joon" + }, "man_made/cutline": { "name": "Siht" }, @@ -729,6 +805,9 @@ "place/village": { "name": "Küla" }, + "point": { + "name": "Punkt" + }, "power": { "name": "Elekter" }, @@ -774,6 +853,12 @@ "railway/tram": { "name": "Tramm" }, + "relation": { + "name": "Relatsioon" + }, + "route/ferry": { + "name": "Praamitee" + }, "shop": { "name": "Pood" }, @@ -912,6 +997,9 @@ "tourism/zoo": { "name": "Loomaaed" }, + "type/boundary/administrative": { + "name": "Administratiivpiir" + }, "waterway/canal": { "name": "Kanal" }, diff --git a/vendor/assets/iD/iD/locales/fi.json b/vendor/assets/iD/iD/locales/fi.json index 5bb9d6906..226e83297 100644 --- a/vendor/assets/iD/iD/locales/fi.json +++ b/vendor/assets/iD/iD/locales/fi.json @@ -261,7 +261,7 @@ "just_edited": "Muokkasit juuri OpenStreetMapia!", "view_on_osm": "Näytä OSM-kartalla", "facebook": "Jaa Facebookissa", - "tweet": "Twiittaa" + "help_html": "Muutokset tulevat näkyviin Perinteisessä karttanäkymässä muutaman minuutin kuluessa. Muissa karttanäkymissä ja -sovelluksissa ja hieman erikoisempien karttaominaisuuksien ilmestyminen kartalle voi viedä pidempään. Lue lisätietoja englanniksi.\n" }, "confirm": { "okay": "OK" @@ -696,43 +696,58 @@ "name": "Osoite" }, "aeroway": { - "name": "Kiitorata" + "name": "Kiitorata", + "terms": "kiitorata, kiitotie, lentokone, lentoonlähtörata, lentoonlähtötie, rullaustie, lentokenttätie, lentokonetie, lentokoneväylä" }, "aeroway/aerodrome": { - "name": "Lentokenttä" + "name": "Lentokenttä", + "terms": "lentokenttä, lentoasema, terminaali, lentokone, lentoterminaali" + }, + "aeroway/apron": { + "name": "Asemataso", + "terms": "asemataso, lentoterminaali, lentokenttä, lentokone, lentoasema" }, "aeroway/gate": { - "name": "Lähtöportti" + "name": "Lähtöportti", + "terms": "lähtöportti, lentoportti, lentokenttä, lentoasema, lähtöputki, portti" }, "aeroway/hangar": { - "name": "Lentokonehalli" + "name": "Lentokonehalli", + "terms": "hangaari, lentokonehalli, lentohalli, lentosuoja, lentokonesuoja, lentoasema, lentokenttä, lentokone" }, "aeroway/helipad": { - "name": "Helikopterikenttä" + "name": "Helikopterikenttä", + "terms": "helikopterikenttä, helikopteri" }, "aeroway/runway": { - "name": "Kiitorata" + "name": "Kiitorata", + "terms": "kiitorata, kiitotie, lentokone, lentoonlähtörata, lentoonlähtötie" }, "aeroway/taxiway": { - "name": "Rullaustie" + "name": "Rullaustie", + "terms": "rullaustie, lentokone, lentokenttä, lentoasema, siirtymätie" }, "aeroway/terminal": { - "name": "Lentokenttäterminaali" + "name": "Lentokenttäterminaali", + "terms": "lentoterminaali, lentokenttäterminaali, lentoasematerminaali, terminaali, lentokenttä, lentoasema" }, "amenity": { "name": "Palvelu" }, "amenity/atm": { - "name": "Pankkiautomaatti" + "name": "Pankkiautomaatti", + "terms": "otto, pankkiautomaatti, rahannostoautomaatti, pankki" }, "amenity/bank": { - "name": "Pankki" + "name": "Pankki", + "terms": "pankki, pankkikonttori, pankkitoimisto, pankkitoimipiste" }, "amenity/bar": { "name": "Baari" }, "amenity/bench": { - "name": "Penkki" + "name": "Penkki", + "terms": "penkki, tuoli, istuin" }, "amenity/bicycle_parking": { "name": "Pyöräpysäköinti", @@ -746,7 +761,8 @@ "name": "Kahvila" }, "amenity/car_rental": { - "name": "Auton vuokraus" + "name": "Auton vuokraus", + "terms": "autovuokraamo, autonvuokraus, auton vuokraus, auto, vuokra-auto" }, "amenity/car_sharing": { "name": "KImppakyyti" @@ -755,11 +771,17 @@ "name": "Autopesula", "terms": "autopesu, automaattipesu, pesula, pesukone, pesuhalli, auto, autot" }, + "amenity/childcare": { + "name": "Esikoulu", + "terms": "esikoulu, eskari, leikkikoulu" + }, "amenity/cinema": { - "name": "Elokuvateatteri" + "name": "Elokuvateatteri", + "terms": "leffa, leffateatteri, elokuva, elokuvateatteri" }, "amenity/college": { - "name": "Ammattikorkeakoulu" + "name": "Ammattikorkeakoulu", + "terms": "college, ammattikorkeakoulu, amk" }, "amenity/courthouse": { "name": "Käräjäoikeus", @@ -775,34 +797,42 @@ "name": "Pikaruokaravintola" }, "amenity/fire_station": { - "name": "Paloasema" + "name": "Paloasema", + "terms": "paloasema, palokeskus, vpk, vapaapalokunta" }, "amenity/fountain": { "name": "Suihkulähde" }, "amenity/fuel": { - "name": "Huoltoasema" + "name": "Huoltoasema", + "terms": "huoltoasema, bensa-asema, liikennemyymälä, huoltamo, bensis, tankkausasema, bensapiste, tankkauspiste, kylmäasema" }, "amenity/grave_yard": { - "name": "Hautausmaa" + "name": "Hautausmaa", + "terms": "hautausmaa, kalmisto, luutarha" }, "amenity/hospital": { - "name": "Sairaala" + "name": "Sairaala", + "terms": "sairaala, terveyskeskus, hoitokoti, hoitolaitos, klinikka, parantola, sanatorio, lasaretti, hospitaali" }, "amenity/kindergarten": { - "name": "Päiväkoti" + "name": "Päiväkoti", + "terms": "päiväkoti, päivähoito, lastenhoito, lastenvahti" }, "amenity/library": { - "name": "Kirjasto" + "name": "Kirjasto", + "terms": "kirjasto, kirjalainaamo, kirjanlainaus, kirjan lainaus, kirja, kirjan lainaaminen" }, "amenity/marketplace": { "name": "Tori" }, "amenity/parking": { - "name": "Pysäköintialue" + "name": "Pysäköintialue", + "terms": "pysäköinti, parkkipaikka, pysäköintipaikka, parkki, pysäköintitalo, parkkitalo" }, "amenity/pharmacy": { - "name": "Apteekki" + "name": "Apteekki", + "terms": "apteekki, lääke, lääkkeet, lääkemyymälä, lääkkeenmyynti, farmasia, farmaseutti" }, "amenity/place_of_worship": { "name": "Rukoilupaikka" @@ -823,10 +853,12 @@ "name": "Poliisiasema" }, "amenity/post_box": { - "name": "Postilaatikko" + "name": "Postilaatikko", + "terms": "postilaatikko, postinlähetys, oranssi laatikko, kirjeenlähetys, posti, kirje" }, "amenity/post_office": { - "name": "Postitoimisto" + "name": "Postitoimisto", + "terms": "postitoimisto, postikonttori, posti, kirje, paketti, postipiste" }, "amenity/pub": { "name": "Pubi" @@ -860,7 +892,8 @@ "name": "Yliopisto" }, "amenity/waste_basket": { - "name": "Roskakori" + "name": "Roskakori", + "terms": "roska-astia, roskis, roskapönttö, jäte-astia, kierrätyspiste, kierrätyslaatikko, roska, kierrätys, jäte, jätteet" }, "area": { "name": "Alue" @@ -973,7 +1006,8 @@ "name": "Pihakatu" }, "highway/mini_roundabout": { - "name": "Pienliikenneympyrä" + "name": "Pieni liikenneympyrä", + "terms": "pienliikenneympyrä, pieni liikenneympyrä, liikenneympyrä, ympyrä" }, "highway/motorway": { "name": "Moottoritie" diff --git a/vendor/assets/iD/iD/locales/fr.json b/vendor/assets/iD/iD/locales/fr.json index 88f071321..bf77b3e6e 100644 --- a/vendor/assets/iD/iD/locales/fr.json +++ b/vendor/assets/iD/iD/locales/fr.json @@ -260,8 +260,7 @@ "edited_osm": "OSM Edité!", "just_edited": "Vous venez de participer à OpenStreetMap !", "view_on_osm": "Visualiser sur OSM", - "facebook": "Partager sur Facebook", - "tweet": "Tweeter" + "facebook": "Partager sur Facebook" }, "confirm": { "okay": "OK" diff --git a/vendor/assets/iD/iD/locales/hr.json b/vendor/assets/iD/iD/locales/hr.json index 4357e6d80..511ba21d5 100644 --- a/vendor/assets/iD/iD/locales/hr.json +++ b/vendor/assets/iD/iD/locales/hr.json @@ -241,6 +241,8 @@ "title": "Pozadina", "description": "Postavke pozadine", "percent_brightness": "{opacity}% svjetline", + "custom": "Podesivo", + "custom_prompt": "Unesi predložak za popločavanje. Ispravni znakovi su {z}, {x}, {y} za Z/X/Y shemu i {u} za quadtile shemu.", "fix_misalignment": "Popravi odstupanje", "reset": "resetiraj" }, @@ -262,8 +264,9 @@ "edited_osm": "Uređen OSM!", "just_edited": "Upravo si uredio/la OpenStreetMap!", "view_on_osm": "Pogledaj na OSM", - "facebook": "Podijeli na Facebook-u.", - "tweet": "Tweet", + "facebook": "Podijeli na mreži Facebook", + "twitter": "Podijeli na mreži Twitter", + "google": "Podijeli na mreži Google+", "help_html": "Tvoje promjene bi se trebale pojaviti u sloju \"Standard\" kroz par minuta. Za druge slojeve i određena svojstva trebati će više vremena.⏎\n(detalji).⏎\n" }, "confirm": { @@ -685,6 +688,9 @@ "surface": { "label": "Površina" }, + "toilets/disposal": { + "label": "Vrsta odvoda" + }, "tourism": { "label": "Vrsta" }, @@ -773,7 +779,8 @@ "name": "Najam bicikla" }, "amenity/cafe": { - "name": "Kafić" + "name": "Kafić", + "terms": "Kafić,Cafe,Caffee,Kafeterija,Caffe bar" }, "amenity/car_rental": { "name": "Iznajmljivanje vozila" @@ -862,7 +869,7 @@ }, "amenity/pub": { "name": "Pivnica", - "terms": "Pivnica" + "terms": "Pivnica,Birtija,Birc,Bircuz" }, "amenity/restaurant": { "name": "Restoran", @@ -1047,7 +1054,7 @@ "name": "Pristupna cesta državne ceste" }, "highway/residential": { - "name": "Gradska cesta" + "name": "Ulica" }, "highway/road": { "name": "Nepoznata cesta" @@ -1224,7 +1231,8 @@ "name": "Igralište" }, "leisure/slipway": { - "name": "Navoz za brodove" + "name": "Navoz za brodove", + "terms": "Istezalište" }, "leisure/stadium": { "name": "Stadion" @@ -1338,7 +1346,8 @@ "name": "Grad s više od 100 000 stanovnika" }, "place/hamlet": { - "name": "Zaseok" + "name": "Zaseok", + "terms": "Zaseok,Seoce" }, "place/island": { "name": "Otok" diff --git a/vendor/assets/iD/iD/locales/hu.json b/vendor/assets/iD/iD/locales/hu.json index 162cb99c7..dae9986ca 100644 --- a/vendor/assets/iD/iD/locales/hu.json +++ b/vendor/assets/iD/iD/locales/hu.json @@ -260,8 +260,7 @@ "edited_osm": "OSM szerkesztve!", "just_edited": "Szerkesztetted az OpenStreetMap-et!", "view_on_osm": "Megtekintés OSM-en", - "facebook": "Megosztás Facebookon", - "tweet": "Twittelés" + "facebook": "Megosztás Facebookon" }, "confirm": { "okay": "Oké" diff --git a/vendor/assets/iD/iD/locales/id.json b/vendor/assets/iD/iD/locales/id.json index 1daff4745..b4c7b7437 100644 --- a/vendor/assets/iD/iD/locales/id.json +++ b/vendor/assets/iD/iD/locales/id.json @@ -247,8 +247,7 @@ "edited_osm": "OSM tersunting!", "just_edited": "Anda baru saja menyunting OpenStreetMap!", "view_on_osm": "Lihat di OSM", - "facebook": "Bagikan di Facebook", - "tweet": "Tweet" + "facebook": "Bagikan di Facebook" }, "confirm": { "okay": "Baiklah" diff --git a/vendor/assets/iD/iD/locales/is.json b/vendor/assets/iD/iD/locales/is.json index babdc3372..9188970f4 100644 --- a/vendor/assets/iD/iD/locales/is.json +++ b/vendor/assets/iD/iD/locales/is.json @@ -260,8 +260,7 @@ "edited_osm": "Þú breyttir OSM!", "just_edited": "Þú hefur breytt OpenStreetMap!", "view_on_osm": "Skoða á OSM", - "facebook": "Deila á Facebook", - "tweet": "Tísta" + "facebook": "Deila á Facebook" }, "confirm": { "okay": "Í lagi" diff --git a/vendor/assets/iD/iD/locales/it.json b/vendor/assets/iD/iD/locales/it.json index 579f3c92d..c4743b6db 100644 --- a/vendor/assets/iD/iD/locales/it.json +++ b/vendor/assets/iD/iD/locales/it.json @@ -167,9 +167,11 @@ } }, "undo": { + "tooltip": "Annulla: {action}", "nothing": "Niente da ripristinare." }, "redo": { + "tooltip": "Ripeti: {action}", "nothing": "Niente da rifare." }, "tooltip_keyhint": "Scorciatoia da tastiera:", @@ -239,6 +241,8 @@ "title": "Sfondo", "description": "Impostazioni dello sfondo", "percent_brightness": "{opacity}% luminosità", + "custom": "Personalizzato", + "custom_prompt": "Inserisci lo schema dei tasselli. I valori validi sono {z}, {x}, {y} per lo schema Z/X/Y e {u} per lo schema QuadTile.", "fix_misalignment": "Allinea", "reset": "reset" }, @@ -261,7 +265,9 @@ "just_edited": "Hai appena modificato OpenStreetMap!", "view_on_osm": "Mostra su OSM", "facebook": "Condividi su Facebook", - "tweet": "Condividi su Twitter" + "twitter": "Condividi su Twitter", + "google": "Condividi su Google+", + "help_html": "Le tue modifiche appariranno nel livello \"Standard\" tra qualche minuto. Per gli altri livelli e per certi elementi potrebbe essere necessario più tempo.\n(dettagli).\n" }, "confirm": { "okay": "Okay" @@ -308,7 +314,8 @@ "imagery": "# Immagini satellitari\n\nLe immagini satellitari sono una risorsa importante per le lavorare con le mappe. Tramite il menu sulla sinistra 'Impostazioni dello sfondo' sono disponibili varie immagini, ad es. quelle dei voli a bassa quota, le viste satellitari e altre sorgenti combinate liberamente.\n\nNell'editor viene visualizzato, per impostazione predefinita, il livello satellitare di [Bing Maps](http://www.bing.com/maps/) , ma non appena vi muoverete sulla mappa ed effettuerete degli zoom in altre aree, saranno disponibili nuove sorgenti. Alcuni paesi, come ad esempio gli Stati Uniti, la Francia e la Danimarca dispongono di immagini di altissima qualità in alcune aree.\n\nLe immagini talvolta non sono ben allineate ai dati della mappa a causa di errori compiuti dal fornitore di immagini. Se vedete molte strade spostate rispetto allo sfondo, non muovetele immediatamente per allinearle allo sfondo. Piuttosto potete allineare le immagini in modo che combacino con i dati esistenti facendo clic su 'Allinea' nella parte bassa del riquardo delle 'Impostazioni dello sfondo'.\n", "addresses": "# Indirizzi stradali\n\nGli indirizzi sono tra le informazioni più utili per una mappa.\n\nNonostante gli indirizzi siano spesso rappresentati come parte delle strade, in OpenStreetMap\nvengono memorizzati come attributi degli edifici e dei luoghi lungo le strade.\n\nPotrai aggiungere informazioni sull'indirizzo a dei luoghi mappati come contorni di edificio\ncosì come a quelli mappati come singoli punti. La sorgente ottimale dei dati degli indirizzi\nè un rilevamento per strada o la conoscenza personale dato che copiare da sorgenti\ncommerciali come ad es. Google Maps è severamente vietato.\n", "inspector": "# Utilizzo dell'inspector\n\nL'inspector è quell'elemento dell'interfaccia utente sulla parte destra della pagina che appare quando viene selezionata una funzionalità e che consente di modificarne i dettagli.\n\n### Selezione di un tipo di funzionalità\n\nDopo che è stato aggiunto un punto, una linea o un'area, è possibile scegliere quale tipo di caratteristica abbia, come ad esempio se si tratta di una strada principale o una strada residenziale, di un supermarket o di un caffè.\nL'inspector visualizzerà i pulsanti per le caratteristiche più comuni e sarà possibile trovarne altre semplicemente digitando la caratteristica voluta nella casella di ricerca.\n\nFare clic sulla 'i' che si trova nell'angolo in basso a destra del pulsante per saperne di più. Fare clic su un pulsante per scegliere quel tipo.\n\n### Utilizzo di Form e di Tag di modifica\n\nDopo aver scelto un tipo di caratteristica o quando si è selezionato una caratteristica per la quale è già stato assegnato un tipo, l'inspector mostrerà i campi con i dettagli come ad esempio il nome e l'indirizzo.\n\nAl di sotto dei campi è possibile fare clic sulle icone per aggiungere ulteriori dettagli come ad es. informazioni [Wikipedia](http://www.wikipedia.org/), accesso consentito alle carrozzine, e altro.\n\nSotto l'inspector è possibile fare clic su 'Tag aggiuntivi' per aggiungere arbitrariamente altri tag all'elemento. [Taginfo](http://taginfo.openstreetmap.org/) è una buona risorsa per imparare qualcosa sulle combinazioni di tag più comuni.\n\nLe modifiche effettuate nell'inspector vengono applicate automaticamente alla mappa.\nE' possibile annullarle in ogni momento cliccando semplicemente sul pulsante 'Ripristina'.\n\n### Chiusura dell'inspector\n\nE' possibile chiudere l'inspector sia facendo clic sul pulsante chiudi posizionato in alto a destra, sia premendo il tasto 'Esc', che facendo clic sulla mappa.\n\\n", - "buildings": "# Edifici\n\nOpenStreetMap è il più grande database online di edifici. Puoi creare e migliorare questo database.\n\n### Selezione\n\nPuoi selezionare un edificio cliccando sul suo bordo. Ciò evidenzierà l'edificio e aprirà un piccolo menu degli strumenti ed una barra laterale contenente ulteriori informazioni sull'edificio.\n\n### Modifica\n\nTalvolta gli edifici sono posizionati in maniera errata o hanno tag incorretti.\n\nPer spostare un edificio, selezionalo, quindi clicca sullo strumento 'Sposta'. Sposta il mouse per traslare l'edificio, clicca nuovamente quando è nel posto giusto.\n\nPer migliorare la forma di un edificio, clicca e sposta i nodi che formano il suo contorno in una posizione corretta.\n\n### Creazione\n\nUna delle principali diatribe sulla aggiunta degli edifici alla mappa riguarda il fatto che OpenStreetMap permette di creare edifici come aree o come singoli punti. La regola generale in questi casi è di _mappare un edificio come un'area quando possibile_, e di mappare compagnie, case, amenità e altri oggetti che operano nell'edificio come punti all'interno della forma dell'edificio.\n\nInizia a disegnare un edificio come una forma cliccando sul pulsante 'Area' nella parte alta a sinistra dell'interfaccia, e termina premendo 'Invio' sulla tastiera o cliccando sul primo nodo che hai disegnato per chiudere la forma.\n\n### Eliminazione\n\nSe un edificio è completamente sbagliato - non è presente nelle immagini satellitari e possibilmente hai controllato di persona che esso non esista davvero - puoi eliminarlo, in modo da toglierlo dalla mappa. Sii cauto quando elimini un elemento - come ogni modifica, i risultati sono visibili a tutti e le immagini satellitari sono spesso datate, perciò l'edificio potrebbe essere stato costruito nel frattempo.\n\nPuoi eliminare un edificio cliccandoci sopra per selezionarlo, quindi cliccando sull'icona del cestino o premendo il tasto 'Canc' sulla tastiera.\n\n" + "buildings": "# Edifici\n\nOpenStreetMap è il più grande database online di edifici. Puoi creare e migliorare questo database.\n\n### Selezione\n\nPuoi selezionare un edificio cliccando sul suo bordo. Ciò evidenzierà l'edificio e aprirà un piccolo menu degli strumenti ed una barra laterale contenente ulteriori informazioni sull'edificio.\n\n### Modifica\n\nTalvolta gli edifici sono posizionati in maniera errata o hanno tag incorretti.\n\nPer spostare un edificio, selezionalo, quindi clicca sullo strumento 'Sposta'. Sposta il mouse per traslare l'edificio, clicca nuovamente quando è nel posto giusto.\n\nPer migliorare la forma di un edificio, clicca e sposta i nodi che formano il suo contorno in una posizione corretta.\n\n### Creazione\n\nUna delle principali diatribe sulla aggiunta degli edifici alla mappa riguarda il fatto che OpenStreetMap permette di creare edifici come aree o come singoli punti. La regola generale in questi casi è di _mappare un edificio come un'area quando possibile_, e di mappare compagnie, case, amenità e altri oggetti che operano nell'edificio come punti all'interno della forma dell'edificio.\n\nInizia a disegnare un edificio come una forma cliccando sul pulsante 'Area' nella parte alta a sinistra dell'interfaccia, e termina premendo 'Invio' sulla tastiera o cliccando sul primo nodo che hai disegnato per chiudere la forma.\n\n### Eliminazione\n\nSe un edificio è completamente sbagliato - non è presente nelle immagini satellitari e possibilmente hai controllato di persona che esso non esista davvero - puoi eliminarlo, in modo da toglierlo dalla mappa. Sii cauto quando elimini un elemento - come ogni modifica, i risultati sono visibili a tutti e le immagini satellitari sono spesso datate, perciò l'edificio potrebbe essere stato costruito nel frattempo.\n\nPuoi eliminare un edificio cliccandoci sopra per selezionarlo, quindi cliccando sull'icona del cestino o premendo il tasto 'Canc' sulla tastiera.\n\n", + "relations": "# Relazioni\n\nUna relazione è un particolare elemento di OpenStreetMap che raggruppa altri\nelementi. Per esempio due tipi comuni di relazione sono le *relazioni percorso*,\nche raggruppano pezzi di strada che appartengono alla stessa via o autostrada,\ne i *multipoligoni*, che raggruppano diverse linee componenti aree complesse\n(un'area con più pezzi o con dei buchi in essa come una ciambella).\n\nGli elementi di una relazione sono chiamati *membri*. Nella barra laterale puoi\nvedere di quale relazione un elemento è membro e cliccare sulla relazione per\nselezionarla. Quando una relazione viene selezionata puoi vedere l'elenco di\ntutti i suoi membri nella barra laterale e gli stessi selezionati nella mappa.\n\nNella maggior parte dei casi iD si occuperà delle relazioni automaticamente\ndurante la modifica. Controlla solo che quando cancelli un elemento per\nridisegnarlo più accuratamente, il nuovo elemento sia un membro della stessa\nrelazione dell'originale.\n\n## Modificare le Relazioni\n\nSe vuoi modificare le relazioni, ecco le basi.\n\nPer aggiungere un elemento ad una relazione seleziona l'elemento, clicca il\ntasto \"+\" nella sezione \"Tutte le relazioni\" della barra laterale e quindi seleziona\nla relazione o digita il suo nome.\n\nPer creare una nuova relazione seleziona il primo elemento che diventerà\nmembro, clicca il tasto \"+\" nella sezione \"Tutte le relazioni\" della barra laterale\ne seleziona \"Nuova relazione...\".\n\nPer rimuovere un elemento da una relazione seleziona l'elemento e clicca sul\ncestino vicino alla relazione da cui vuoi rimuoverlo.\n\nPuoi creare dei multipoligoni con dei buchi usando lo strumento \"Unisci\".\nDisegna due aree (quella esterna e quella interna), tenendo premuto il tasto\nMaiusc della tastiera clicca su ognuno di loro per selezionarli entrambi e quindi\nclicca sul tasto \"Unisci\" (+).\n" }, "intro": { "navigation": { @@ -517,9 +524,21 @@ "fee": { "label": "Tariffa" }, + "fire_hydrant/type": { + "label": "Tipo" + }, "fixme": { "label": "Sistemare" }, + "generator/method": { + "label": "Metodo" + }, + "generator/source": { + "label": "Fonte" + }, + "generator/type": { + "label": "Tipo" + }, "highway": { "label": "Tipo" }, @@ -678,6 +697,9 @@ "surface": { "label": "Superficie" }, + "toilets/disposal": { + "label": "Smaltimento" + }, "tourism": { "label": "Tipo" }, @@ -721,10 +743,12 @@ "name": "Pista aeroportuale" }, "aeroway/aerodrome": { - "name": "Aeroporto" + "name": "Aeroporto", + "terms": "aeroplano,aeroporto,aerodromo" }, "aeroway/apron": { - "name": "Area di sosta per aeromobili" + "name": "Area di sosta per aeromobili", + "terms": "rampa" }, "aeroway/gate": { "name": "Gate dell'aeroporto" @@ -733,16 +757,19 @@ "name": "Hangar" }, "aeroway/helipad": { - "name": "Elisuperficie" + "name": "Elisuperficie", + "terms": "elicottero,elisuperficie,eliporto" }, "aeroway/runway": { - "name": "Pista di decollo/atterraggio" + "name": "Pista di decollo/atterraggio", + "terms": "pista di atterraggio" }, "aeroway/taxiway": { "name": "Pista di rullaggio" }, "aeroway/terminal": { - "name": "Terminale di aeroporto" + "name": "Terminale di aeroporto", + "terms": "aeroporto,aerodromo" }, "amenity": { "name": "Servizi" @@ -751,7 +778,8 @@ "name": "ATM" }, "amenity/bank": { - "name": "Banca" + "name": "Banca", + "terms": "ufficio contabile,cooperativa di credito,deposito,erario,fondo,tesoro,società di investimento,archivio,riserva,cassetta di sicurezza,risparmi,azioni,negozio,sconto,tesoreria, società fiduciaria,cassaforte" }, "amenity/bar": { "name": "Bar" @@ -766,7 +794,8 @@ "name": "Stazione del Bike Sharing" }, "amenity/cafe": { - "name": "Caffè" + "name": "Caffè", + "terms": "caffè,te,bar" }, "amenity/car_rental": { "name": "Noleggio auto" @@ -777,8 +806,12 @@ "amenity/car_wash": { "name": "Autolavaggio" }, + "amenity/childcare": { + "name": "Doposcuola" + }, "amenity/cinema": { - "name": "Cinema" + "name": "Cinema", + "terms": "cinema,cine,film,cinematografo,proiezione" }, "amenity/college": { "name": "College" @@ -787,7 +820,8 @@ "name": "Tribunale" }, "amenity/drinking_water": { - "name": "Fontanella" + "name": "Fontanella", + "terms": "fontana,fontanella,acqua potabile,nasone" }, "amenity/embassy": { "name": "Ambasciata" @@ -808,10 +842,12 @@ "name": "Cimitero" }, "amenity/hospital": { - "name": "Ospedale" + "name": "Ospedale", + "terms": "clinica,pronto soccorso,servizio sanitario,salute,hospice,ospizio,infermeria,istituzione,casa di cura,casa di riposo,sanatorio,ambulatorio,chirurgia,reparto" }, "amenity/kindergarten": { - "name": "Scuola d'infanzia" + "name": "Scuola d'infanzia", + "terms": "scuola di infanzia,asilo,assistenza all'infanzia,asilo d'infanzia" }, "amenity/library": { "name": "Biblioteca" @@ -826,25 +862,32 @@ "name": "Farmacia" }, "amenity/place_of_worship": { - "name": "Luogo di culto" + "name": "Luogo di culto", + "terms": "abbazia,basilica,sinagoga,cattedrale,presbiterio,cappella,chiesa,casa di Dio,luogo di preghiera,luogo di culto,missione,moschea,oratorio,parrocchia,sacello,edicola votiva,tabernacolo,tempio" }, "amenity/place_of_worship/buddhist": { - "name": "Tempio Buddista" + "name": "Tempio Buddista", + "terms": "stupa,vihara,monastero,tempio,pagoda,zendo,dojo" }, "amenity/place_of_worship/christian": { - "name": "Chiesa" + "name": "Chiesa", + "terms": "cristiano,abbazia,basilica,cattedrale,presbiterio,cappella,chiesa,casa di Dio,luogo di preghiera,luogo di culto,missione,oratorio,parrocchia,sacello,edicola votiva,tabernacolo,tempio" }, "amenity/place_of_worship/jewish": { - "name": "Sinagoga" + "name": "Sinagoga", + "terms": "ebreo,ebrea,sinagoga,ebraismo,sionismo" }, "amenity/place_of_worship/muslim": { - "name": "Moschea" + "name": "Moschea", + "terms": "musulmana,islamismo,moschea,islam" }, "amenity/police": { - "name": "Forze di polizia" + "name": "Forze di polizia", + "terms": "poliziotto,sbirro,investigatore privato,piedipiatti,divisa,ispettore,gendarme,agente di polizia" }, "amenity/post_box": { - "name": "Buca delle lettere" + "name": "Buca delle lettere", + "terms": "cassetta postale" }, "amenity/post_office": { "name": "Ufficio Postale" @@ -853,34 +896,42 @@ "name": "Pub" }, "amenity/restaurant": { - "name": "Ristorante" + "name": "Ristorante", + "terms": "bar,caffetteria,caffè,ristorante self-service,braceria,trattoria,negozio di ciambelle,bettola,griglieria,venditore di hamburger,venditore di hotdog,pizzeria" }, "amenity/school": { - "name": "Scuola" + "name": "Scuola", + "terms": "accademia,alma mater,lavagna,collegio,dipartimento,disciplina,classe,facoltà,aula,istituto,istituzione,riformatorio,scuola,edificio scolastico,seminario,università" }, "amenity/swimming_pool": { "name": "Piscina" }, "amenity/taxi": { - "name": "Posteggio Taxi" + "name": "Posteggio Taxi", + "terms": "taxi" }, "amenity/telephone": { "name": "Telefono" }, "amenity/theatre": { - "name": "Teatro" + "name": "Teatro", + "terms": "teatro,spettacoli,giochi,musical" }, "amenity/toilets": { - "name": "Bagni" + "name": "Bagni", + "terms": "bagno,bagni pubblici,toilette" }, "amenity/townhall": { - "name": "Municipio" + "name": "Municipio", + "terms": "sala del comune,palazzo di governo,tribunale,munipio" }, "amenity/university": { - "name": "Università" + "name": "Università", + "terms": "college" }, "amenity/waste_basket": { - "name": "Cestino della spazzatura" + "name": "Cestino della spazzatura", + "terms": "sacchetto della spazzatura,cestino della spazzatura,cassonetto della spazzatura,cassonetto,cestino" }, "area": { "name": "Area" @@ -898,7 +949,8 @@ "name": "grata blocca-bestiame" }, "barrier/city_wall": { - "name": "Mura cittadine" + "name": "Mura cittadine", + "terms": "mura,cinta,mura cittadine,cinta muraria,muro" }, "barrier/cycle_barrier": { "name": "Barriera per veicoli a due ruote" @@ -945,9 +997,15 @@ "building/apartments": { "name": "Appartamenti" }, + "building/commercial": { + "name": "Edificio commerciale" + }, "building/entrance": { "name": "Entrata" }, + "building/garage": { + "name": "Garage" + }, "building/house": { "name": "Casa" }, @@ -963,6 +1021,9 @@ "emergency/ambulance_station": { "name": "Stazione ambulanze" }, + "emergency/fire_hydrant": { + "name": "Idrante" + }, "emergency/phone": { "name": "Telefono di Emergenza" }, @@ -973,19 +1034,22 @@ "name": "Strada" }, "highway/bridleway": { - "name": "Ippovia" + "name": "Ippovia", + "terms": "ippovia, percorso per cavalli, percorso equestre" }, "highway/bus_stop": { "name": "Fermata dell'autobus" }, "highway/crossing": { - "name": "Attraversamento" + "name": "Attraversamento", + "terms": "attraversamento pedonale,strisce pedonali,attraversamento,dosso" }, "highway/cycleway": { "name": "Percorso ciclabile" }, "highway/footway": { - "name": "Percorso pedonale" + "name": "Percorso pedonale", + "terms": "percorso battuto,viale,pista pedonale,strada,corsia,percorso,sentiero,cammino,strada,rotta,via,traiettoria,camminata" }, "highway/living_street": { "name": "Strada residenziale prevalentemente pedonale" @@ -1000,7 +1064,8 @@ "name": "Svincolo da o verso Autostrada" }, "highway/motorway_link": { - "name": "Raccordo autostradale" + "name": "Raccordo autostradale", + "terms": "svincolo,rampa" }, "highway/path": { "name": "Sentiero" @@ -1012,7 +1077,8 @@ "name": "Strada di importanza nazionale" }, "highway/primary_link": { - "name": "Svincolo da o verso una strada di importanza nazionale" + "name": "Svincolo da o verso una strada di importanza nazionale", + "terms": "svincolo,rampa" }, "highway/residential": { "name": "Strada residenziale" @@ -1024,7 +1090,8 @@ "name": "Strada di importanza regionale" }, "highway/secondary_link": { - "name": "Svincolo da o verso una strada di importanza regionale" + "name": "Svincolo da o verso una strada di importanza regionale", + "terms": "svincolo,rampa" }, "highway/service": { "name": "Strada di servizio" @@ -1045,25 +1112,29 @@ "name": "Corsia di un parcheggio" }, "highway/steps": { - "name": "Scale" + "name": "Scale", + "terms": "scale,scalinata,gradini" }, "highway/tertiary": { "name": "Strada di importanza locale" }, "highway/tertiary_link": { - "name": "Svincolo da o verso una strada di importanza comunale" + "name": "Svincolo da o verso una strada di importanza comunale", + "terms": "svincolo,rampa" }, "highway/track": { "name": "Strada ad uso agricolo / forestale" }, "highway/traffic_signals": { - "name": "Semaforo" + "name": "Semaforo", + "terms": "semaforo,luce semaforica,lanterna semaforica" }, "highway/trunk": { "name": "Superstrada" }, "highway/trunk_link": { - "name": "Svincolo da o verso una superstrada" + "name": "Svincolo da o verso una superstrada", + "terms": "svincolo,rampa" }, "highway/turning_circle": { "name": "Slargo per inversione" @@ -1165,7 +1236,8 @@ "name": "Marina" }, "leisure/park": { - "name": "Parco" + "name": "Parco", + "terms": "lungomare,tenuta,foresta,giardino,prato,verde,terreni,lotto,pascolo,parco,parco giochi,area ricreativa,piazza,giardino pubblico,bosco" }, "leisure/pitch": { "name": "Campo da gioco" @@ -1189,7 +1261,8 @@ "name": "Campo di Pallavolo" }, "leisure/playground": { - "name": "Parco giochi" + "name": "Parco giochi", + "terms": "area giochi,scivolo,parco,giochi" }, "leisure/slipway": { "name": "Scivolo per barche" @@ -1200,6 +1273,9 @@ "leisure/swimming_pool": { "name": "Piscina" }, + "leisure/track": { + "name": "Pista" + }, "line": { "name": "Linea" }, @@ -1228,7 +1304,8 @@ "name": "Torre" }, "man_made/wastewater_plant": { - "name": "Impianto di depurazione delle acque" + "name": "Impianto di depurazione delle acque", + "terms": "fognatura, impianto di trattamento delle acque nere, impianto di purificazione dell'acqua,impianto di trattamento delle acque reflue,depuratore" }, "man_made/water_tower": { "name": "Torre Idrica" @@ -1252,7 +1329,8 @@ "name": "Scogliera" }, "natural/coastline": { - "name": "Linea di costa" + "name": "Linea di costa", + "terms": "riva,linea di costa,costiera,costa" }, "natural/glacier": { "name": "Ghiacciaio" @@ -1264,7 +1342,8 @@ "name": "Brughiera" }, "natural/peak": { - "name": "Picco" + "name": "Picco", + "terms": "culmine,guglia,alpe,apice,cresta,sommità,cima,cocuzzolo,collina,monte,montagna,pinnacolo,estremità,vertice,vetta,piz" }, "natural/scrub": { "name": "Macchia mediterranea" @@ -1279,10 +1358,12 @@ "name": "Specchio d'acqua" }, "natural/water/lake": { - "name": "Lago" + "name": "Lago", + "terms": "stagno,lago,laghetto" }, "natural/water/pond": { - "name": "Stagno" + "name": "Stagno", + "terms": "laghetto,gora,pozza" }, "natural/water/reservoir": { "name": "Bacino idrico" @@ -1306,7 +1387,8 @@ "name": "Paese" }, "place/island": { - "name": "Isola" + "name": "Isola", + "terms": "arcipelago,atollo,banco,isola,isolotto,scoglio" }, "place/isolated_dwelling": { "name": "Case Sparse" @@ -1326,6 +1408,9 @@ "power": { "name": "Energia" }, + "power/generator": { + "name": "Generatore di energia" + }, "power/line": { "name": "Linea elettrica" }, @@ -1351,7 +1436,8 @@ "name": "Ferrovia in disuso" }, "railway/level_crossing": { - "name": "Passaggio a livello" + "name": "Passaggio a livello", + "terms": "passaggio a livello,incrocio ferroviario" }, "railway/monorail": { "name": "Monorotaia" @@ -1372,7 +1458,8 @@ "name": "Entrata di metropolitana" }, "railway/tram": { - "name": "Tram" + "name": "Tram", + "terms": "tram,rotaia,trasporto pubblico" }, "relation": { "name": "Relazione" @@ -1384,7 +1471,8 @@ "name": "Negozio" }, "shop/alcohol": { - "name": "Negozio di liquori" + "name": "Negozio di liquori", + "terms": "alcool,liquori,grappa,rum,vodka" }, "shop/bakery": { "name": "Panificio" @@ -1447,7 +1535,8 @@ "name": "Negozio di elettronica" }, "shop/farm": { - "name": "Banchetto Alimentari Freschi" + "name": "Banchetto Alimentari Freschi", + "terms": "negozio agricolo,banchetto agricolo,banchetto" }, "shop/fishmonger": { "name": "Pescivendolo" @@ -1519,7 +1608,8 @@ "name": "Negozio di cancelleria" }, "shop/supermarket": { - "name": "Supermercato" + "name": "Supermercato", + "terms": "bazar,boutique,negozio,discount,mercato delle pulci,galleria,centro commerciale,mercato,outlet,chiosco,supermercato,negozio dell'usato" }, "shop/toys": { "name": "Negozio di giocattoli" @@ -1540,10 +1630,12 @@ "name": "Videoteca" }, "tourism": { - "name": "Turismo" + "name": "Turismo", + "terms": "turismo,attrazione,turistica,interesse,turisti,escursionismo,viaggio,gita" }, "tourism/alpine_hut": { - "name": "Rifugio" + "name": "Rifugio", + "terms": "rifugio,bivacco,dormitorio,malga" }, "tourism/artwork": { "name": "Opera d'arte" @@ -1561,7 +1653,8 @@ "name": "Chalet" }, "tourism/guest_house": { - "name": "Affittacamere" + "name": "Affittacamere", + "terms": "B&B,Bed & Breakfast,Bed and Breakfast" }, "tourism/hostel": { "name": "Ostello" @@ -1576,7 +1669,8 @@ "name": "Motel" }, "tourism/museum": { - "name": "Museo" + "name": "Museo", + "terms": "esibizione,mostra,esposizione,fondazione,galleria,archivio,istituzione,serraglio,sala,salone,tesoreria,pinacoteca,magazzino,caveau,palazzo" }, "tourism/picnic_site": { "name": "Area picnic" @@ -1657,13 +1751,15 @@ "name": "Canale di scolo" }, "waterway/river": { - "name": "Fiume" + "name": "Fiume", + "terms": "ruscello,affluente,corso d'acqua,torrente,estuario,rivolo,rigagnolo,immissario" }, "waterway/riverbank": { "name": "Argine" }, "waterway/stream": { - "name": "Torrente" + "name": "Torrente", + "terms": "fiumiciattolo,ramo,ruscello,corso,torrente,corrente,deriva,flusso,rivolo,rigagnolo" }, "waterway/weir": { "name": "Sbarramento" diff --git a/vendor/assets/iD/iD/locales/ja.json b/vendor/assets/iD/iD/locales/ja.json index bad6b5bc4..2c6fe12d1 100644 --- a/vendor/assets/iD/iD/locales/ja.json +++ b/vendor/assets/iD/iD/locales/ja.json @@ -167,9 +167,11 @@ } }, "undo": { + "tooltip": "もとに戻す: {action}", "nothing": "やり直す変更点がありません" }, "redo": { + "tooltip": "再実行: {action}", "nothing": "やり直した変更点がありません" }, "tooltip_keyhint": "ショートカット", @@ -239,6 +241,8 @@ "title": "背景画像", "description": "背景画像設定", "percent_brightness": "明度 {opacity}%", + "custom": "カスタム", + "custom_prompt": "タイル表示のテンプレートを入力。Z/X/Y スキーマに対して {z}, {x}, {y} を与え、 quadtile schemeには {u} を与える記法で記述します。", "fix_misalignment": "背景画像をずらす", "reset": "設定リセット" }, @@ -261,7 +265,9 @@ "just_edited": "OpenStreetMap編集完了!", "view_on_osm": "詳細情報確認", "facebook": "Facebookでシェア", - "tweet": "Tweet" + "twitter": "Twitterでシェア", + "google": "Google+でシェア", + "help_html": "あなたが投稿した内容は数分で\"標準\"レイヤーに反映されます。その他のレイヤーへの適用や、記述した地物によっては反映にさらに時間がかかる場合があります。\n(詳細)\n" }, "confirm": { "okay": "OK" @@ -308,7 +314,8 @@ "imagery": "# 背景画像\n\n地図を作成するにあたって、航空写真は重要なリソースのひとつです。上空からの撮影、衛星写真、自由な利用が認められた情報源などは、画面左側の'背景画像設定'メニューから表示させることが可能です。\n\nデフォルト設定では[Bing Maps](http://www.bing.com/maps/)の衛星写真レイヤーが表示されていますが、地図のズームレベル変更などで新しい場所を表示する際に別のリソースを表示させることが可能です。英国やフランス、デンマークでは、特定の地域に限り非常に細密な画像が利用可能です。\n\n画像提供側の間違いが原因で、背景画像と地図データの位置がずれていることがあります。既存道路の多くが一方向にずれている場合、すべての地物の位置を一度に移動させてしまう前に背景画像の表示位置を調整し、オフセットがされていないか確認を行なってください。位置の調整は、背景画像設定の一番下に表示されている'背景画像をずらす'という項目から行うことができます。\n", "addresses": "# 住所\n\n住所情報は地図において最も有用な情報のひとつです。\n\n住所情報は街路の付帯情報として扱われることがほとんどですが、OpenStreetMapにおける住所情報は、街路にそって配置されている建物の属性として記録されます。\n\n住所情報は建物を表す輪郭に付与しても構いませんし、独立したポイントとして配置してもかまいません。また、住所データの最適な情報源は現地調査、あるいは個人の記憶によるものです。GoogleMapsなど、他の地図からの転載は特別な許諾がない限り固く禁止されています。\n\n注: 日本では住所システムの体系が異なるため、街路を基とする上記の方法を適用することはできません。\n", "inspector": "# 地物情報表示ウィンドウ\n\n地図上の地物を選択すると、画面右側に入力ウィンドウが表示されます。地物に関する詳細情報の編集はこのウィンドウから行います。\n\n### 地物種別の選択\n\nポイントやライン、エリアを描画する際、描いた地物の種別を選択することができます。これによって、ラインが高速道路なのか住宅道路なのか、ポイントがスーパーマーケットなのか喫茶店なのか、などを表現します。地物情報表示ウィンドウには、よく利用される地物が表示されています。その他の地物を表示させたい場合は、検索ボックスから検索を行なってください。\n\n地物種別が表示されている右下にある'i'ボタンをクリックすることで、その種別の詳細情報を表示させることができます。アイコンをクリックすることで、種別を確定させることができます。\n\n### フォームを利用したタグ編集\n\n地物の種別を選択した後、あるいは既になんらかの種別が割り当て済の対象を選択した際には、その地物の名称や住所などの詳細情報がウィンドウ内に表示されます。\n\n表示中のフィールドの下部にあるアイコンをクリックすると、追加の入力フィールドが表示されます。例えば[Wikipedia](http://www.wikipedia.org/)情報や、車椅子の利用可否などです。\n\n入力ウィンドウの一番下に配置されている 'タグ項目を追加'をクリックすると、要素に対する自由記入フォームが表示されます。利用されることが多いタグの組み合わせは[Taginfo](http://taginfo.openstreetmap.org/)から検索が可能です。\n\n入力ウィンドウに記入した内容は、エディタ上の地図に即座に反映されます。'やり直し'ボタンをクリックすることで、いつでも入力内容を取り消すことが可能です。\n\n### 地物情報表示ウィンドウを閉じる\n\nウィンドウを閉じるには、ウィンドウ右上のXボタンをクリックするか、キーボードの'Escape'キーを押すか、地図上のどこかをクリックしてください。\n", - "buildings": "# 建物\n\nOpenStreetMapは世界でも有数の建物情報データベースです。このデータベースへの情報追加や改善は誰しもが参加可能です。\n\n### 選択\n\n建物の輪郭をクリックすると、その建物を選択することができます。建物はハイライト表示され、小さなツール項目と、画面右側にその建物の詳細情報が表示されます。\n\n### 修正\n\n建物の位置や、付与されているタグが誤っていることがあります。\n\n建物全体の位置を移動させるには、'移動'ツールのアイコンをクリックしてください。マウスを動かして建物を正しい位置へ移動させ、もう一度クリックして位置を確定させます。\n\n同様に、建物を形成しているポイントをクリックして正しい位置へ移動させることで、建物の形状を修正することができます。\n\n### 新規作成\n\nOpenStreetMapで建物を描く場合によくあがる質問として、建物をエリアとポイントのどちらで描いたほうがよいか、というものがあります。最善の方法では _できる限り、建物はエリアとして描き_ 、会社や個人宅、施設など、建物から独立した情報は別途ポイントとして、エリアとして描かれた建物の内側に配置します。\n\n画面左上に表示されている項目から'エリア'ボタンをクリックして、建物をエリアとして描いてみましょう。エリアの描画を終了するにはキーボードの'Return'キーを押すか、エリアを描き始めたポイントをもう一度クリックしてください。\n\n### 削除\n\nもし建物の情報が完全に間違っている場合 - 衛星写真に映っておらず、より理想としては実際に現地で建物が無いことを確認できた場合 - その建物データそのものを削除し、地図から消去することが可能です。地物を削除する際の注意として、編集結果は他の編集と同様すべての利用者の目に触れること、また、衛星写真は撮影日時が古い可能性があり、建物が新しく建設されているかもしれないことを意識してください。\n\n建物を削除するには、対象をクリックして選択し、ツール項目からゴミ箱アイコンをクリックするか、'Delete'キーを押してください。\n" + "buildings": "# 建物\n\nOpenStreetMapは世界でも有数の建物情報データベースです。このデータベースへの情報追加や改善は誰しもが参加可能です。\n\n### 選択\n\n建物の輪郭をクリックすると、その建物を選択することができます。建物はハイライト表示され、小さなツール項目と、画面右側にその建物の詳細情報が表示されます。\n\n### 修正\n\n建物の位置や、付与されているタグが誤っていることがあります。\n\n建物全体の位置を移動させるには、'移動'ツールのアイコンをクリックしてください。マウスを動かして建物を正しい位置へ移動させ、もう一度クリックして位置を確定させます。\n\n同様に、建物を形成しているポイントをクリックして正しい位置へ移動させることで、建物の形状を修正することができます。\n\n### 新規作成\n\nOpenStreetMapで建物を描く場合によくあがる質問として、建物をエリアとポイントのどちらで描いたほうがよいか、というものがあります。最善の方法では _できる限り、建物はエリアとして描き_ 、会社や個人宅、施設など、建物から独立した情報は別途ポイントとして、エリアとして描かれた建物の内側に配置します。\n\n画面左上に表示されている項目から'エリア'ボタンをクリックして、建物をエリアとして描いてみましょう。エリアの描画を終了するにはキーボードの'Return'キーを押すか、エリアを描き始めたポイントをもう一度クリックしてください。\n\n### 削除\n\nもし建物の情報が完全に間違っている場合 - 衛星写真に映っておらず、より理想としては実際に現地で建物が無いことを確認できた場合 - その建物データそのものを削除し、地図から消去することが可能です。地物を削除する際の注意として、編集結果は他の編集と同様すべての利用者の目に触れること、また、衛星写真は撮影日時が古い可能性があり、建物が新しく建設されているかもしれないことを意識してください。\n\n建物を削除するには、対象をクリックして選択し、ツール項目からゴミ箱アイコンをクリックするか、'Delete'キーを押してください。\n", + "relations": "# リレーション\n\nリレーションとはOpenStreetMapで地物を表現する際の特殊な記法で、複数の地物をひとつのグループとして扱うことが可能です。例えばリレーションでよく使われるものは、特定の高速道路や有料道路を複数のウェイを使って表現する *route リレーション* 、そして複数のラインをグループ化することによって分割されたエリアやドーナツ型の空洞部分などの複雑な表現を行う *マルチポリゴン* があげられます。\n\nリレーションを構成する地物は *メンバー* と呼ばれます。OSM上の地物がどのリレーションのメンバーになっているかはサイドバーに表示され、選択することが可能です。リレーションを選択するとその所属メンバーがすべてサイドバーにリストアップされ、地図上にその位置がハイライト表示されます。\n\niDでは編集中のリレーション情報はほとんどの場合、自動的に補完されます。ただし、例えば位置が間違っている道路をいったん削除して新しく書き直す際などは、書き直した道路ウェイが削除したウェイと同じリレーションに再度所属するように編集するべきです。\n\n## リレーションの編集\n\nリレーションを編集する場合、基本の形は以下のとおりです。\n\nリレーションに地物を追加してメンバーにする場合、まず対象の地物を選択した状態で、サイドバーの \"すべてのリレーション\" に表示されている \"+\" ボタンをクリックします。クリックしたら、リレーションの名称を入力するか、一覧から選んでください。\n\nリレーションを新しく作成する場合は、メンバーとして所属することになる最初の地物を選択した状態で \"すべてのリレーション\" に表示されている \"+\" ボタンをクリックし、\"新しいリレーション\"を選択してください。\n\nリレーションから地物を除外する場合は、対象の地物を選択し、除外を行いたいリレーションの隣に表示されているゴミ箱アイコンをクリックします。\n\nまた、\"結合\"機能を使うことで、空洞部分をもつマルチポリゴンを作成することができます。2つのエリアを描き、それぞれを内側(inner)と外側(outer)とします。次に、キーボードのShiftキーを押しながらそれぞれの地物をクリックし、両方を選択状態にしてから \"結合\" (+) ボタンをクリックしてください。\n" }, "intro": { "navigation": { @@ -690,6 +697,9 @@ "surface": { "label": "路面種別" }, + "toilets/disposal": { + "label": "汚物処理" + }, "tourism": { "label": "タイプ" }, diff --git a/vendor/assets/iD/iD/locales/lv.json b/vendor/assets/iD/iD/locales/lv.json index 7fadcff05..4e86ede18 100644 --- a/vendor/assets/iD/iD/locales/lv.json +++ b/vendor/assets/iD/iD/locales/lv.json @@ -207,8 +207,7 @@ "success": { "just_edited": "Jūs nupat rediģējāt OpenStreetMap", "view_on_osm": "Apskatīt OSM", - "facebook": "Dalīties Facebook", - "tweet": "Dalīties Twitter" + "facebook": "Dalīties Facebook" }, "confirm": { "okay": "Labi" diff --git a/vendor/assets/iD/iD/locales/nl.json b/vendor/assets/iD/iD/locales/nl.json index d40e60324..b3bd30c76 100644 --- a/vendor/assets/iD/iD/locales/nl.json +++ b/vendor/assets/iD/iD/locales/nl.json @@ -260,8 +260,7 @@ "edited_osm": "OSM aangepast!", "just_edited": "Je hebt zojuist OpenStreetMap aangepast!", "view_on_osm": "Bekijk op OSM", - "facebook": "Deel op Facebook", - "tweet": "Tweet" + "facebook": "Deel op Facebook" }, "confirm": { "okay": "OK" diff --git a/vendor/assets/iD/iD/locales/pl.json b/vendor/assets/iD/iD/locales/pl.json index d05f14c1f..5d944f885 100644 --- a/vendor/assets/iD/iD/locales/pl.json +++ b/vendor/assets/iD/iD/locales/pl.json @@ -241,6 +241,7 @@ "title": "Tło", "description": "Ustawienia tła", "percent_brightness": "jasność {opacity}%", + "custom": "Własne", "fix_misalignment": "Wyrównaj podkład", "reset": "resetuj" }, @@ -263,7 +264,8 @@ "just_edited": "Właśnie wprowadziłeś zmiany w OpenStreetMap!", "view_on_osm": "Zobacz na OSM", "facebook": "Podziel się na Facebooku", - "tweet": "Tweetnij", + "twitter": "Podziel się na Twitterze", + "google": "Podziel się na Google+", "help_html": "Twoje zmiany powinny się pojawić w przeciągu kilku minut na standardowej warstwie mapy. Odświeżenie innych warstw może potrwać nieco dłużej (szczegóły).\n" }, "confirm": { diff --git a/vendor/assets/iD/iD/locales/pt-BR.json b/vendor/assets/iD/iD/locales/pt-BR.json index b254445a8..829f19780 100644 --- a/vendor/assets/iD/iD/locales/pt-BR.json +++ b/vendor/assets/iD/iD/locales/pt-BR.json @@ -260,8 +260,7 @@ "edited_osm": "OSM editado!", "just_edited": "Você acaba de editar o OpenStreetMap!", "view_on_osm": "Ver no OSM", - "facebook": "Compartilhar no Facebook", - "tweet": "Tuitar" + "facebook": "Compartilhar no Facebook" }, "confirm": { "okay": "O.K." diff --git a/vendor/assets/iD/iD/locales/pt.json b/vendor/assets/iD/iD/locales/pt.json index 71d9cf06e..6ed7372f0 100644 --- a/vendor/assets/iD/iD/locales/pt.json +++ b/vendor/assets/iD/iD/locales/pt.json @@ -260,8 +260,7 @@ "edited_osm": "Acabou de editar o OSM!", "just_edited": "Acaba de editar o OpenStreetMap!", "view_on_osm": "Ver em OSM", - "facebook": "Partilhar no Facebook", - "tweet": "Partilhar no Twitter" + "facebook": "Partilhar no Facebook" }, "confirm": { "okay": "OK" diff --git a/vendor/assets/iD/iD/locales/ru.json b/vendor/assets/iD/iD/locales/ru.json index ae5ac0b41..62107632b 100644 --- a/vendor/assets/iD/iD/locales/ru.json +++ b/vendor/assets/iD/iD/locales/ru.json @@ -250,8 +250,7 @@ "edited_osm": "ОСМ отредактирована!", "just_edited": "Вы только что отредактировали карту OpenStreetMap!", "view_on_osm": "Посмотреть в OSM", - "facebook": "Поделиться на Facebook", - "tweet": "Затвитить" + "facebook": "Поделиться на Facebook" }, "confirm": { "okay": "Ок" diff --git a/vendor/assets/iD/iD/locales/sk.json b/vendor/assets/iD/iD/locales/sk.json index bb09f0903..5602a96dd 100644 --- a/vendor/assets/iD/iD/locales/sk.json +++ b/vendor/assets/iD/iD/locales/sk.json @@ -263,7 +263,6 @@ "just_edited": "Práve ste upravili OpenStreetMap!", "view_on_osm": "Zobraz na OSM", "facebook": "Zdieľaj na Facebooku", - "tweet": "Tweetuj", "help_html": "Vaše zmeny by sa mali objaviť na \"Základnej\" vrstve v priebehu niekoľkých minút. Ostatným vrstvám a niektorým objektom to môže trvať dlhšie.\n(detaily).\n" }, "confirm": { diff --git a/vendor/assets/iD/iD/locales/sr.json b/vendor/assets/iD/iD/locales/sr.json index cc88bdb1d..6edf05511 100644 --- a/vendor/assets/iD/iD/locales/sr.json +++ b/vendor/assets/iD/iD/locales/sr.json @@ -241,6 +241,8 @@ "title": "Позадина", "description": "Подешавања позадине", "percent_brightness": "{opacity}% прозирност", + "custom": "Прилагођена", + "custom_prompt": "Унесите образац плочица. Важеће вредности су {z}, {x}, {y} за Z/X/Y шему и {u} за квадратну шему.", "fix_misalignment": "Поправи поравнање", "reset": "ресетовање" }, @@ -263,7 +265,9 @@ "just_edited": "Управо сте уређивали OpenStreetMap!", "view_on_osm": "Преглед на OSM", "facebook": "Подели на Фејсбуку", - "tweet": "Твитуј" + "twitter": "Подели на Твитеру", + "google": "Подели на Гугл+", + "help_html": "Ваше измене би требало да се појаве у „стандардном“ слоју за неколико минута. За остале слојеви, и још неке могућности, може потрајати дуже\n(детаљи).\n" }, "confirm": { "okay": "У реду" @@ -310,7 +314,8 @@ "imagery": "# Снимци\n\nСнимци из ваздуха су важан ресурс за мапирање. Комбинација \nавионских прелета, сателитских приказа и слободно састављених извора су на \nрасполагању у уређивачу испод менија 'Подешавања позадине' са леве стране.\n\nПодразумевано је представљен [Bing Maps] (http://www.bing.com/maps/) слој \nсателитских снимака у уређивачу, али као померате и увећавате мапу на нова географска \nподручја, нови извори ће постати доступни. Неке земље, попут Сједињених \nДржава, Француске и Данске имају веома квалитетне снимке доступна за неке области.\n\nСнимак је некада померен у односу на податке на мапи због грешке од страни \nдобављача снимака. Ако видите много путева померених у односу на позадину, \nнемојте их одмах преместити све да одговарају позадини. Уместо тога можете подесити \nслике тако да одговарају постојећим подацима кликом на 'Поправи поравнање' на \nдну интерфејса Подешавање позадине.\n", "addresses": "# Адресе\n\nАдресе су једне од најкориснијих информација на мапи.\n\nИако су адресе често представљене као делови улица, у Опенстреетмап\nсу забележене као атрибути објеката и места дуж улица.\n\nМожете да додате информације о адреси на местима мапираним као основе зграде\nкао и оних мапираних као појединачне тачке. Оптимални извор података адреса\nје од премеравања на терену или лично знање - као и са било којим \nдругим објектом, копирање са комерцијалних извора, као што су Гугл мапе је строго\nзабрањено.\n", "inspector": "# Коришћење инспектора\n\nИнспектор је елемент корисничког интерфејса на десној страни странице \nкоја се појављује када је објекат изабран и омогућава вам да измените његове детаље.\n\n### Избор врсте карактеристика\n\nНакон што додате чвор, линију, или област, можете да изаберете врсту карактеристика, \nредимо да ли је аутопут или стамбени пут, супермаркет или кафе.\nИнспектор ће приказати иконице за најчешће врсте карактеристика, а друге можете\nпронаћи куцањем оног што тражите у поље за претрагу.\n\nКликните на 'i' у доњем десном углу дугмета врсте могућности како бисте\nсазнали више о томе. Кликните на дугме како бисте изабрали дату врсту.\n\n### Коришћење образаца и уређивање ознака\n\nНакон што одаберете посебну врсту, или када изаберете објекат која већ\nима додељену врсту, инспектор ће приказати поља са детаљима о\nкарактеристикама као што су име и адреса.\n\nИспод поља које видите, можете да кликнете на иконе да бисте додали друге детаље,\nкао што су информације са [Википедије] (http://www.wikipedia.org/), приступ инвалидским \nколицима, и више од тога.\n\nНа дну инспектора, кликните на 'Додатне ознаке' да бисте произвољно додали \nдруге ознаке елементу. [Taginfo](http://taginfo.openstreetmap.org/) је\nобиман ресурс ако желите да за сазнате више о популарним комбинацијама ознака.\n\nПромене које направите у инспектора ће се аутоматски применити на мапи.\nМожете их опозвати у било ком тренутку тако што ћете кликнути на дугме 'Опозови'.\n\n### Затварање инспектора\n\nМожете да затворите инспектор кликом на дугме за затварање на врху десно,\nпритиском на тастер 'Escape', или кликом на мапу.\n", - "buildings": "# Грађевине\n\nОпенстреетмап је највећа база података грађевина на свету. Можете правити \nи побољшати ову базу података.\n\n### Избор\n\nМожете изабрати грађевину кликом на њене оквире. То ће истаћи\nграђевину и отворити мали мени са алатима и траку са стране која приказује више \nинформација о грађевини.\n\n### Измена\n\nПонекад су зграде погрешно постављене или имају погрешне ознаке.\n\nДа бисте преместили читав објекат, изаберите га, а затим кликните на алат 'Премести'. Померите\nмиша да бисте преместили грађевину, и кликните поново када је правилно поставите.\n\nДа бисте поправили одређени облик грађевине, кликните и превуците чворове који чине\nњене границе на праве локације.\n\n### Прављење\n\nЈедно од главних недоумица око додавања грађевине на мапу јесте да\nОпенстреетмап заправо чува грађевине и као облик и као тачке. Правило\nје да се _мапирају грађевине као облик кад год је то могуће_, а да се мапирају предузећа, куће,\nпогодности, као и друге ствари које функционишу унутар грађевина као тачке постављене\nунутар облика зграде.\n\nПочните цртање грађевине као облика тако што ћете кликнути на дугме 'Област' на врху\nлево интерфејса, и завршите је било притиском на тастер 'Return' на тастатури\nили кликом на први исцртани чвор којим се затвара облик.\n\n### Брисање\n\nАко је грађевина потпуно неисправна - можете видети да она не постоји на сателитским\nснимцима и у најбољем случају потврђено је локално да није присутан - можете је избрисати, \nчиме се уклања са мапе. Будите опрезни приликом брисања објеката -\nкао и све друге измене, резултате виде сви, а сателитски снимци\nсу често застарели, тако да објекат може бити у новије време изграђен.\n\nМожете обрисати грађевину кликом на њу да бисте је изабрали, затим кликните\nна икону канте за смеће или притиском на тастер 'Delete'.\n" + "buildings": "# Грађевине\n\nОпенстреетмап је највећа база података грађевина на свету. Можете правити \nи побољшати ову базу података.\n\n### Избор\n\nМожете изабрати грађевину кликом на њене оквире. То ће истаћи\nграђевину и отворити мали мени са алатима и траку са стране која приказује више \nинформација о грађевини.\n\n### Измена\n\nПонекад су зграде погрешно постављене или имају погрешне ознаке.\n\nДа бисте преместили читав објекат, изаберите га, а затим кликните на алат 'Премести'. Померите\nмиша да бисте преместили грађевину, и кликните поново када је правилно поставите.\n\nДа бисте поправили одређени облик грађевине, кликните и превуците чворове који чине\nњене границе на праве локације.\n\n### Прављење\n\nЈедно од главних недоумица око додавања грађевине на мапу јесте да\nОпенстреетмап заправо чува грађевине и као облик и као тачке. Правило\nје да се _мапирају грађевине као облик кад год је то могуће_, а да се мапирају предузећа, куће,\nпогодности, као и друге ствари које функционишу унутар грађевина као тачке постављене\nунутар облика зграде.\n\nПочните цртање грађевине као облика тако што ћете кликнути на дугме 'Област' на врху\nлево интерфејса, и завршите је било притиском на тастер 'Return' на тастатури\nили кликом на први исцртани чвор којим се затвара облик.\n\n### Брисање\n\nАко је грађевина потпуно неисправна - можете видети да она не постоји на сателитским\nснимцима и у најбољем случају потврђено је локално да није присутан - можете је избрисати, \nчиме се уклања са мапе. Будите опрезни приликом брисања објеката -\nкао и све друге измене, резултате виде сви, а сателитски снимци\nсу често застарели, тако да објекат може бити у новије време изграђен.\n\nМожете обрисати грађевину кликом на њу да бисте је изабрали, затим кликните\nна икону канте за смеће или притиском на тастер 'Delete'.\n", + "relations": "# Односи\n\nОднос је посебна врста обележја у Опенстреетмапама која групише друга обележја. На пример, две основне врсте односа су *односи путева* којим се групишу заједно деонице пута које припадају одређеном аутопуту или магистралном путу, и * вишеструки полигони* којим се групише заједно неколико линија које дефинишу сложену област (један полигон од више делова или са рупом у себи попут крофне).\n\nГрупа обележја у односу се називају *чланови*. На бочној траци, можете видети којем односу припада обележје, и ту кликнути на релацију да бисте је изабрали. Када је однос изабран, можете видети све његове чланове наведени у бочној траци и означене на мапи.\n\nУ већини случајева, iD ће се побринути о одржавању односа аутоматски док правите измене. Најважнија ствар које би требало да будете свесни јесте да ако избришете део пута да бисте га прецизније исцртали, требало би да се уверите и да је нови одељак члан истог односа као и оригинал.\n\n## Уређивање односа\n\nАко желите да измените односе, овде су дате основе.\n\nДа бисте додали обележје у однос, изаберите обележје, кликните на дугме „+“ у одељку „Сви односи“ бочне траке, и изаберите или упишите име односа.\n\nДа бисте креирали нови однос, изаберите прво обележје које би требало да буде члан,\nкликните на дугме „+“ у одељку „Сви односи“, и одаберите „Нови однос...“.\n\nДа бисте уклонили обележје из односа, изаберите обележје и кликните на иконицу смеће\nпоред односа из којег желите да га уклоните.\n\nМожете да креирате вишеструке полигоне са рупама помоћу алат „Споји“. Нацртајте две области (унутрашњу и спољашњу), држите тастер Шифт и кликните на сваки од њих да бисте изабрали обоје, а затим кликните на дугме „Споји“ (+) дугме.\n" }, "intro": { "navigation": { diff --git a/vendor/assets/iD/iD/locales/sv.json b/vendor/assets/iD/iD/locales/sv.json index 1d511b317..3d7e1ac16 100644 --- a/vendor/assets/iD/iD/locales/sv.json +++ b/vendor/assets/iD/iD/locales/sv.json @@ -254,8 +254,7 @@ "edited_osm": "Redigerat OSM!", "just_edited": "Du har nu redigerat OpenStreetMap!", "view_on_osm": "Visa på OSM", - "facebook": "Dela på Facebook", - "tweet": "Tweet" + "facebook": "Dela på Facebook" }, "confirm": { "okay": "Ok" diff --git a/vendor/assets/iD/iD/locales/te.json b/vendor/assets/iD/iD/locales/te.json index fea34da84..4c3d7058d 100644 --- a/vendor/assets/iD/iD/locales/te.json +++ b/vendor/assets/iD/iD/locales/te.json @@ -69,8 +69,7 @@ "unsaved_changes": "భద్రపరచని మార్పులు ఉన్నాయి" }, "success": { - "facebook": "ఫేస్‌బుక్‌లో పంచుకోండి", - "tweet": "ట్వీటండి" + "facebook": "ఫేస్‌బుక్‌లో పంచుకోండి" }, "confirm": { "okay": "సరే" diff --git a/vendor/assets/iD/iD/locales/uk.json b/vendor/assets/iD/iD/locales/uk.json index fd33075f4..02f7ccf44 100644 --- a/vendor/assets/iD/iD/locales/uk.json +++ b/vendor/assets/iD/iD/locales/uk.json @@ -261,10 +261,9 @@ "success": { "edited_osm": "Відредаговано OSM!", "just_edited": "Ви щойно відредагували мапу OpenStreetMap!", - "view_on_osm": "Подивтись в OSM", + "view_on_osm": "Подивитись в OSM", "facebook": "Поділитись на Facebook", - "tweet": "у Твітер", - "help_html": "Ваші зміни повинні з’явитись в «Стандартному» шарі через кілька хвилин. Зміни інших шарів, та певниї об’єктів,\nможуть відбуватись довше (подробиці).\n" + "help_html": "Ваші зміни повинні з’явитись в «Стандартному» шарі за кілька хвилин. Зміни інших шарів та певних об’єктів\nможуть відбуватись довше (подробиці).\n" }, "confirm": { "okay": "Готово" @@ -520,9 +519,18 @@ "fee": { "label": "Плата" }, + "fire_hydrant/type": { + "label": "Тип" + }, "fixme": { "label": "Потребує виправлення" }, + "generator/source": { + "label": "Джерело" + }, + "generator/type": { + "label": "Тип" + }, "highway": { "label": "Тип" }, @@ -1035,6 +1043,9 @@ "name": "Станція швидкої медичної допомоги", "terms": "перша допомога" }, + "emergency/fire_hydrant": { + "name": "Пожежний гідрант" + }, "emergency/phone": { "name": "Телефон виклику екстрених служб" }, @@ -1423,6 +1434,9 @@ "power": { "name": "Енергетика" }, + "power/generator": { + "name": "Електростанція" + }, "power/line": { "name": "Лінія електропередач" }, diff --git a/vendor/assets/iD/iD/locales/vi.json b/vendor/assets/iD/iD/locales/vi.json index 795471098..9d6ebd9e1 100644 --- a/vendor/assets/iD/iD/locales/vi.json +++ b/vendor/assets/iD/iD/locales/vi.json @@ -241,6 +241,8 @@ "title": "Hình nền", "description": "Tùy chọn Hình nền", "percent_brightness": "Độ sáng {opacity}%", + "custom": "Tùy biến", + "custom_prompt": "Đưa vào định dạng URL của các mảnh bản đồ. Bạn có thể sử dụng các dấu hiệu {z}, {x}, {y} cho định dạng Z/X/Y hoặc {u} cho định dạng quadtile.", "fix_misalignment": "Chỉnh lại hình nền bị chệch", "reset": "đặt lại" }, @@ -263,7 +265,8 @@ "just_edited": "Bạn vừa sửa đổi OpenStreetMap!", "view_on_osm": "Xem tại OSM", "facebook": "Chia sẻ trên Facebook", - "tweet": "Tweet", + "twitter": "Chia sẻ trên Twitter", + "google": "Chia sẻ trên Google+", "help_html": "Các thay đổi của bạn sẽ xuất hiện trên lớp “Chuẩn” trong vòng vài phút. Các lớp và tính năng kia có thể được cập nhật chậm hơn \n(chi tiết).\n" }, "confirm": { @@ -311,7 +314,8 @@ "imagery": "# Hình ảnh\n\nẢnh hàng không (chụp từ máy bay, vệ tinh) là tài nguyên quan trọng trong việc vẽ bản đồ. Có sẵn một số nguồn hình ảnh từ máy bay, vệ tinh, và dịch vụ mở trong trình vẽ này, dưới trình đơn “Tùy chọn Hình nền” ở bên trái.\n\nTheo mặc định, trình vẽ hiển thị lớp trên không của [Bản đồ Bing](http://www.bing.com/maps/), nhưng có sẵn nguồn khác tùy theo vị trí đang xem trong trình duyệt. Ngoài ra có hình ảnh rất rõ tại nhiều vùng ở một số quốc gia như Hoa Kỳ, Pháp, và Đan Mạch.\n\nHình ảnh đôi khi bị chệch đối với dữ liệu bản đồ vì dịch vụ hình ảnh có lỗi. Nếu bạn nhận thấy nhiều con đường bị chệch đối với hình nền, xin đừng di chuyển các đường này để trùng hợp với hình ảnh. Thay vì di chuyển các con đường, hãy chỉnh lại hình ảnh để phù hợp với dữ liệu tồn tại bằng cách nhấn “Chỉnh lại hình nền bị chệch” ở cuối hộp Tùy chọn Hình nền.\n", "addresses": "# Địa chỉ\n\nĐịa chỉ là những thông tin rất cần thiết trên bản đồ.\n\nTuy bản đồ thường trình bày các địa chỉ như một thuộc tính của đường sá, nhưng OpenStreetMap liên kết các địa chỉ với các tòa nhà hoặc miếng đất dọc đường.\n\nBạn có thể thêm thông tin địa chỉ vào các hình dạng tòa nhà hoặc các địa điểm quan tâm. Tốt nhất là lấy thông tin địa chỉ từ kinh nghiệm cá nhân, thí dụ đi dạo trên phố và ghi chép các địa chỉ hoặc nhớ lại những chi tiết từ hoạt động hàng ngày của bạn. Cũng như bất cứ chi tiết nào, dự án này hoàn toàn cấm sao chép từ các nguồn thương mại như Bản đồ Google.\n", "inspector": "# Biểu mẫu\n\nBiểu mẫu là hộp xuất hiện ở bên phải của trang khi nào một đối tượng được chọn. Biểu mẫu này cho phép sửa đổi các chi tiết của các đối tượng được chọn.\n\n### Chọn Thể loại\n\nSau khi thêm địa điểm, đường kẻ, hoặc vùng vào bản đồ, bạn có thể cho biết đối tượng này tượng trưng cho gì, chẳng hạn con đường, siêu thị, hoặc quán cà phê. Biểu mẫu trình bày các nút tiện để chọn các thể loại đối tượng thường gặp, hoặc bạn có thể gõ một vài chữ mô tả vào hộp tìm kiếm để tìm ra các thể loại khác.\n\nNhấn vào hình dấu trang ở phía dưới bên phải của một nút thể loại để tìm hiểu thêm về thể loại đó. Nhấn vào nút để chọn thể loại đó.\n\n### Điền đơn và Gắn thẻ\n\nSau khi bạn chọn thể loại, hoặc nếu chọn một đối tượng đã có thể loại, biểu mẫu trình bày các trường văn bản và điều khiển để xem và sửa các thuộc tính của đối tượng như tên và địa chỉ.\n\nỞ dưới các điều khiển có một số hình tượng có thể nhấn để thêm chi tiết, chẳng hạn tên bài [Wikipedia](http://www.wikipedia.org/) và mức hỗ trợ xe lăn.\n\nNhấn vào “Các thẻ năng cao” ở cuối biểu mẫu để gắn bất cứ thẻ nào vào đối tượng. [Taginfo](http://taginfo.openstreetmap.org/) là một công cụ rất hữu ích để tìm ra những phối hợp thẻ phổ biến.\n\nCác thay đổi trong biểu mẫu được tự động áp dụng vào bản đồ. Bạn có thể nhấn vào nút “Hoàn tác” vào bất cứ lúc nào để hoàn tác các thay đổi.\n\n### Đóng Biểu mẫu\n\nĐể đóng biểu mẫu, nhấn vào nút Đóng ở phía trên bên phải, nhấn phím Esc, hoặc nhấn vào một khoảng trống trên bản đồ.\n", - "buildings": "# Tòa nhà\n\nOpenStreetMap là cơ sở dữ liệu tòa nhà lớn nhất trên thế giới. Mời bạn cùng xây dựng và cải tiến cơ sở dữ liệu này.\n\n### Lựa chọn\n\nNhấn vào một vùng tòa nhà để lựa chọn nó. Đường biên của vùng sẽ được tô sáng, một trình đơn giống bảng màu của họa sĩ sẽ xuất hiện gần con trỏ, và thanh bên sẽ trình bày các chi tiết về tòa nhà.\n\n### Sửa đổi\n\nĐôi khi vị trí hoặc các thẻ của một tòa nhà không chính xác.\n\nĐể di chuyển toàn bộ tòa nhà cùng lúc, lựa chọn vùng, rồi nhấn vào công cụ “Di chuyển”. Chuyển con trỏ sang vị trí mới và nhấn chuột để hoàn thành việc di chuyển.\n\nĐể sửa hình dạng của một tòa nhà, kéo các nốt của đường biên sang các vị trí chính xác.\n\n### Vẽ mới\n\nMột trong những điều gây nhầm lẫn là một tòa nhà có thể là vùng hoặc có thể là địa điểm. Nói chung, khuyên bạn _vẽ tòa nhà là vùng nếu có thể_. Nếu tòa nhà chứa hơn một công ty, chỗ ở, hoặc gì đó có địa chỉ, hãy đặt một địa điểm riêng cho mỗi địa chỉ đó và đưa mỗi địa điểm vào trong vùng của tòa nhà.\n\nĐể bắt đầu vẽ tòa nhà, nhấn vào nút “Vùng” ở phía trên bên trái của trình vẽ. Nhấn chuột tại các góc tường, rồi “đóng” vùng bằng cách nhấn phím Return hay Enter hoặc nhấn vào nốt đầu tiên.\n\n### Xóa\n\nHãy tưởng tượng bạn gặp một tòa nhà hoàn toàn sai: bạn không thấy được tòa nhà trong hình ảnh trên không và, theo lý tưởng, cũng đã ghé vào chỗ đó để xác nhận rằng nó không tồn tại. Nếu trường hợp này, bạn có thể xóa tòa nhà hoàn toàn khỏi bản đồ. Xin cẩn thận khi xóa đối tượng: giống như mọi sửa đổi khác, mọi người sẽ thấy được kết quả. Ngoài ra, hình ảnh trên không nhiều khi lỗi thời – có thể mới xây tòa nhà – thành thử tốt nhất là ghé vào chỗ đó để quan sát chắc chắn, nếu có thể.\n\nĐể xóa một tòa nhà, lựa chọn nó bằng cách nhấn vào nó, rồi nhấn vào hình thùng rác hoặc nhấn phím Delete.\n" + "buildings": "# Tòa nhà\n\nOpenStreetMap là cơ sở dữ liệu tòa nhà lớn nhất trên thế giới. Mời bạn cùng xây dựng và cải tiến cơ sở dữ liệu này.\n\n### Lựa chọn\n\nNhấn vào một vùng tòa nhà để lựa chọn nó. Đường biên của vùng sẽ được tô sáng, một trình đơn giống bảng màu của họa sĩ sẽ xuất hiện gần con trỏ, và thanh bên sẽ trình bày các chi tiết về tòa nhà.\n\n### Sửa đổi\n\nĐôi khi vị trí hoặc các thẻ của một tòa nhà không chính xác.\n\nĐể di chuyển toàn bộ tòa nhà cùng lúc, lựa chọn vùng, rồi nhấn vào công cụ “Di chuyển”. Chuyển con trỏ sang vị trí mới và nhấn chuột để hoàn thành việc di chuyển.\n\nĐể sửa hình dạng của một tòa nhà, kéo các nốt của đường biên sang các vị trí chính xác.\n\n### Vẽ mới\n\nMột trong những điều gây nhầm lẫn là một tòa nhà có thể là vùng hoặc có thể là địa điểm. Nói chung, khuyên bạn _vẽ tòa nhà là vùng nếu có thể_. Nếu tòa nhà chứa hơn một công ty, chỗ ở, hoặc gì đó có địa chỉ, hãy đặt một địa điểm riêng cho mỗi địa chỉ đó và đưa mỗi địa điểm vào trong vùng của tòa nhà.\n\nĐể bắt đầu vẽ tòa nhà, nhấn vào nút “Vùng” ở phía trên bên trái của trình vẽ. Nhấn chuột tại các góc tường, rồi “đóng” vùng bằng cách nhấn phím Return hay Enter hoặc nhấn vào nốt đầu tiên.\n\n### Xóa\n\nHãy tưởng tượng bạn gặp một tòa nhà hoàn toàn sai: bạn không thấy được tòa nhà trong hình ảnh trên không và, theo lý tưởng, cũng đã ghé vào chỗ đó để xác nhận rằng nó không tồn tại. Nếu trường hợp này, bạn có thể xóa tòa nhà hoàn toàn khỏi bản đồ. Xin cẩn thận khi xóa đối tượng: giống như mọi sửa đổi khác, mọi người sẽ thấy được kết quả. Ngoài ra, hình ảnh trên không nhiều khi lỗi thời – có thể mới xây tòa nhà – thành thử tốt nhất là ghé vào chỗ đó để quan sát chắc chắn, nếu có thể.\n\nĐể xóa một tòa nhà, lựa chọn nó bằng cách nhấn vào nó, rồi nhấn vào hình thùng rác hoặc nhấn phím Delete.\n", + "relations": "# Quan hệ\n\nQuan hệ là loại dữ liệu đặc biệt trong OpenStreetMap có khả năng nhóm lại nhiều đối tượng. Có hai loại quan hệ phổ biến nhất: các *quan hệ tuyến đường* nhóm lại các khúc đường trên một xa lộ, còn các *tổ hợp đa giác* (multipolygon) ghép lại một vài đường kẻ định rõ hình dạng của một khu vực có nhiều đa giác riêng hoặc một khu vực có lỗ.\n\nCác đối tượng trực thuộc quan hệ là các *thành viên*. Trong thanh bên, bạn có thể xem đối tượng trực thuộc những quan hệ nào. Nhấn chuột vào một quan hệ ở đấy để chọn nó. Khi nào quan hệ được chọn, các thành viên sẽ được liệt kê trong thanh bên và tô đậm trên bản đồ.\n\nNói chung, iD sẽ tự động quản lý các quan hệ trong lúc sửa đổi. Bạn chỉ cần chú ý rằng, khi nào bạn xóa một khúc đường để vẽ chính xác hơn, bạn phải chắc chắn rằng khúc đường mới cũng trực thuộc cùng quan hệ với khúc đường cũ.\n\n## Sửa đổi Quan hệ\n\niD cho phép sửa đổi các chi tiết cơ bản của quan hệ.\n\nĐể đưa một đối tượng vào quan hệ, chọn đối tượng, bấm nút “+” trong phần “Tất cả các quan hệ” của thanh bên, và chọn quan hệ từ trình đơn hoặc nhập tên của quan hệ.\n\nĐể tạo một quan hệ mới, chọn đối tượng đầu tiên để đưa vào quan hệ, bấm nút “+” trong phần “Tất cả các quan hệ” của thanh bên, và chọn “Quan hệ mới…”.\n\nĐể tháo gỡ một đối tượng khỏi quan hệ, chọn đối tượng vào nhấn chuột vào hình thùng rác bên cạnh quan hệ mà bạn không muốn bao gồm đối tượng.\n\nDùng công cụ “Gộp” để vẽ tổ hợp đa giác, tức thủng lỗ vào một vùng. Vẽ hai vùng (ứng với cạnh bên trong và bên ngoài), giữ phím Shift trong khi nhấn chuột vào các vùng để chọn chúng, và bấm nút “Gộp” (hình +).\n\n" }, "intro": { "navigation": { @@ -693,6 +697,9 @@ "surface": { "label": "Mặt" }, + "toilets/disposal": { + "label": "Phương pháp thải" + }, "tourism": { "label": "Loại" }, diff --git a/vendor/assets/iD/iD/locales/zh-TW.json b/vendor/assets/iD/iD/locales/zh-TW.json index 9f768b9db..588d36704 100644 --- a/vendor/assets/iD/iD/locales/zh-TW.json +++ b/vendor/assets/iD/iD/locales/zh-TW.json @@ -253,7 +253,8 @@ "just_edited": "您剛剛編輯了OpenStreetMap!", "view_on_osm": "於OSM上顯示", "facebook": "在 Facebook 上分享", - "tweet": "發Tweet" + "twitter": "分享到 Twitter", + "google": "分享到 Google+" }, "confirm": { "okay": "確定" diff --git a/vendor/assets/iD/iD/locales/zh.json b/vendor/assets/iD/iD/locales/zh.json index d77e927e2..388e19081 100644 --- a/vendor/assets/iD/iD/locales/zh.json +++ b/vendor/assets/iD/iD/locales/zh.json @@ -251,8 +251,7 @@ "edited_osm": "编辑OSM!", "just_edited": "你正在编辑的OpenStreetMap!", "view_on_osm": "在OSM上查看", - "facebook": "在Facebook上分享", - "tweet": "Tweet" + "facebook": "在Facebook上分享" }, "confirm": { "okay": "确定"