From: John Firebaugh Date: Thu, 23 Oct 2014 22:29:26 +0000 (-0700) Subject: Update to iD v1.6.1 X-Git-Tag: live~4307 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/8c2731a4168945a2f51bea61918e459cbf3c2443 Update to iD v1.6.1 --- diff --git a/vendor/assets/iD/iD.css.erb b/vendor/assets/iD/iD.css.erb index a1348383c..b45cf221a 100644 --- a/vendor/assets/iD/iD.css.erb +++ b/vendor/assets/iD/iD.css.erb @@ -4456,6 +4456,8 @@ img.wiki-image { .feature-chemist{background-position:-54px -528px;} .feature-mobilephone{background-position:-108px -528px;} .feature-scooter{background-position:-162px -528px;} +.feature-gift{background-position:-216px -528px;} +.feature-ice-cream{background-position:-0px -552px;} .preset-icon-line.feature-highway-motorway{background-position:-20px -25px;} .preset-icon-line.feature-highway-trunk{background-position:-80px -25px;} .preset-icon-line.feature-highway-primary{background-position:-140px -25px;} diff --git a/vendor/assets/iD/iD.js b/vendor/assets/iD/iD.js index 6ce81633a..aae2dbf52 100644 --- a/vendor/assets/iD/iD.js +++ b/vendor/assets/iD/iD.js @@ -6557,14 +6557,20 @@ d3.keybinding = function(namespace) { // Up Arrow Key, or ↓ '↓': 40, down: 40, 'arrow-down': 40, // odities, printing characters that come out wrong: + // Firefox Equals + 'ffequals': 61, // Num-Multiply, or * '*': 106, star: 106, asterisk: 106, multiply: 106, // Num-Plus or + '+': 107, 'plus': 107, // Num-Subtract, or - '-': 109, subtract: 109, + // Firefox Minus + 'ffplus': 171, + // Firefox Minus + 'ffminus': 173, // Semicolon - ';': 186, semicolon:186, + ';': 186, semicolon: 186, // = or equals '=': 187, 'equals': 187, // Comma, or , @@ -16422,7 +16428,7 @@ window.iD = function () { return d3.rebind(context, dispatch, 'on'); }; -iD.version = '1.6.0'; +iD.version = '1.6.1'; (function() { var detected = {}; @@ -16734,7 +16740,11 @@ iD.util.stringQs = function(str) { }; iD.util.qsString = function(obj, noencode) { - function softEncode(s) { return s.replace('&', '%26'); } + function softEncode(s) { + // encode everything except special characters used in certain hash parameters: + // "/" in map states, ":", ",", {" and "}" in background + return encodeURIComponent(s).replace(/(%2F|%3A|%2C|%7B|%7D)/g, decodeURIComponent); + } return Object.keys(obj).sort().map(function(key) { return encodeURIComponent(key) + '=' + ( noencode ? softEncode(obj[key]) : encodeURIComponent(obj[key])); @@ -17141,7 +17151,7 @@ iD.geo.Extent = function geoExtent(min, max) { } }; -iD.geo.Extent.prototype = [[], []]; +iD.geo.Extent.prototype = new Array(2); _.extend(iD.geo.Extent.prototype, { extend: function(obj) { @@ -17152,6 +17162,13 @@ _.extend(iD.geo.Extent.prototype, { Math.max(obj[1][1], this[1][1])]); }, + _extend: function(extent) { + this[0][0] = Math.min(extent[0][0], this[0][0]); + this[0][1] = Math.min(extent[0][1], this[0][1]); + this[1][0] = Math.max(extent[1][0], this[1][0]); + this[1][1] = Math.max(extent[1][1], this[1][1]); + }, + area: function() { return Math.abs((this[1][0] - this[0][0]) * (this[1][1] - this[0][1])); }, @@ -19412,7 +19429,7 @@ iD.behavior.Draw = function(context) { context.install(hover); context.install(edit); - if (!iD.behavior.Draw.usedTails[tail.text()]) { + if (!context.inIntro() && !iD.behavior.Draw.usedTails[tail.text()]) { context.install(tail); } @@ -19436,7 +19453,7 @@ iD.behavior.Draw = function(context) { context.uninstall(hover); context.uninstall(edit); - if (!iD.behavior.Draw.usedTails[tail.text()]) { + if (!context.inIntro() && !iD.behavior.Draw.usedTails[tail.text()]) { context.uninstall(tail); iD.behavior.Draw.usedTails[tail.text()] = true; } @@ -20855,7 +20872,7 @@ iD.modes.Save = function(context) { confirm .select('.modal-section.message-text') .append('p') - .text(err.responseText); + .text(err.responseText || t('save.unknown_error_details')); } else { context.flush(); success(e, changeset_id); @@ -23108,14 +23125,15 @@ _.extend(iD.Relation.prototype, { if (memo && memo[this.id]) return iD.geo.Extent(); memo = memo || {}; memo[this.id] = true; - return this.members.reduce(function(extent, member) { - member = resolver.hasEntity(member.id); + + var extent = iD.geo.Extent(); + for (var i = 0; i < this.members.length; i++) { + var member = resolver.hasEntity(this.members[i].id); if (member) { - return extent.extend(member.extent(resolver, memo)); - } else { - return extent; + extent._extend(member.extent(resolver, memo)); } - }, iD.geo.Extent()); + } + return extent; }); }, @@ -23353,21 +23371,19 @@ iD.Tree = function(head) { } function updateParents(entity, insertions, memo) { - if (memo && memo[entity.id]) return; - memo = memo || {}; - memo[entity.id] = true; - head.parentWays(entity).forEach(function(parent) { if (rectangles[parent.id]) { rtree.remove(rectangles[parent.id]); - insertions.push(parent); + insertions[parent.id] = parent; } }); head.parentRelations(entity).forEach(function(parent) { + if (memo[entity.id]) return; + memo[entity.id] = true; if (rectangles[parent.id]) { rtree.remove(rectangles[parent.id]); - insertions.push(parent); + insertions[parent.id] = parent; } updateParents(parent, insertions, memo); }); @@ -23376,18 +23392,19 @@ iD.Tree = function(head) { var tree = {}; tree.rebase = function(entities) { - var insertions = []; + var insertions = {}; + + for (var i = 0; i < entities.length; i++) { + var entity = entities[i]; - entities.forEach(function(entity) { if (head.entities.hasOwnProperty(entity.id) || rectangles[entity.id]) - return; + continue; - insertions.push(entity); - updateParents(entity, insertions); - }); + insertions[entity.id] = entity; + updateParents(entity, insertions, {}); + } - insertions = _.unique(insertions).map(entityRectangle); - rtree.load(insertions); + rtree.load(_.map(insertions, entityRectangle)); return tree; }; @@ -23395,7 +23412,7 @@ iD.Tree = function(head) { tree.intersects = function(extent, graph) { if (graph !== head) { var diff = iD.Difference(head, graph), - insertions = []; + insertions = {}; head = graph; @@ -23406,16 +23423,15 @@ iD.Tree = function(head) { diff.modified().forEach(function(entity) { rtree.remove(rectangles[entity.id]); - insertions.push(entity); + insertions[entity.id] = entity; updateParents(entity, insertions); }); diff.created().forEach(function(entity) { - insertions.push(entity); + insertions[entity.id] = entity; }); - insertions = _.unique(insertions).map(entityRectangle); - rtree.load(insertions); + rtree.load(_.map(insertions, entityRectangle)); } return rtree.search(extentRectangle(extent)).map(function(rect) { @@ -23441,14 +23457,14 @@ _.extend(iD.Way.prototype, { extent: function(resolver) { return resolver.transient(this, 'extent', function() { - return this.nodes.reduce(function(extent, id) { - var node = resolver.hasEntity(id); + var extent = iD.geo.Extent(); + for (var i = 0; i < this.nodes.length; i++) { + var node = resolver.hasEntity(this.nodes[i]); if (node) { - return extent.extend(node.extent()); - } else { - return extent; + extent._extend(node.extent()); } - }, iD.geo.Extent()); + } + return extent; }); }, @@ -23645,20 +23661,20 @@ _.extend(iD.Way.prototype, { return resolver.transient(this, 'area', function() { var nodes = resolver.childNodes(this); - if (!this.isClosed() && nodes.length) { - nodes = nodes.concat([nodes[0]]); - } - var json = { type: 'Polygon', coordinates: [_.pluck(nodes, 'loc')] }; + if (!this.isClosed() && nodes.length) { + json.coordinates[0].push(nodes[0].loc); + } + var area = d3.geo.area(json); // Heuristic for detecting counterclockwise winding order. Assumes // that OpenStreetMap polygons are not hemisphere-spanning. - if (d3.geo.area(json) > 2 * Math.PI) { + if (area > 2 * Math.PI) { json.coordinates[0] = json.coordinates[0].reverse(); area = d3.geo.area(json); } @@ -24478,8 +24494,8 @@ iD.Map = function(context) { return redraw(); }; - map.zoomIn = function() { return map.zoom(Math.ceil(map.zoom() + 1)); }; - map.zoomOut = function() { return map.zoom(Math.floor(map.zoom() - 1)); }; + map.zoomIn = function() { return map.zoom(~~map.zoom() + 1); }; + map.zoomOut = function() { return map.zoom(~~map.zoom() - 1); }; map.center = function(loc) { if (!arguments.length) { @@ -27154,6 +27170,7 @@ iD.ui.Commit = function(context) { var commentField = commentSection.append('textarea') .attr('placeholder', t('commit.description_placeholder')) + .attr('maxlength', 255) .property('value', context.storage('comment') || '') .on('blur.save', function () { context.storage('comment', this.value); @@ -27246,7 +27263,7 @@ iD.ui.Commit = function(context) { .attr('class', 'commit-section modal-section fillL2'); changeSection.append('h3') - .text(summary.length + ' Changes'); + .text(t('commit.changes', {count: summary.length})); var li = changeSection.append('ul') .attr('class', 'changeset-list') @@ -27266,7 +27283,7 @@ iD.ui.Commit = function(context) { li.append('span') .attr('class', 'change-type') .text(function(d) { - return d.changeType + ' '; + return t('commit.' + d.changeType) + ' '; }); li.append('strong') @@ -29584,12 +29601,12 @@ iD.ui.RawTagEditor = function(context) { selection.call(iD.ui.Disclosure() .title(t('inspector.all_tags') + ' (' + count + ')') - .expanded(iD.ui.RawTagEditor.expanded || preset.isFallback()) + .expanded(context.storage('raw_tag_editor.expanded') === 'true' || preset.isFallback()) .on('toggled', toggled) .content(content)); function toggled(expanded) { - iD.ui.RawTagEditor.expanded = expanded; + context.storage('raw_tag_editor.expanded', expanded); if (expanded) { selection.node().parentNode.scrollTop += 200; } @@ -29885,7 +29902,7 @@ iD.ui.Save = function(context) { .text('0'); var keybinding = d3.keybinding('undo-redo') - .on(key, save); + .on(key, save, true); d3.select(document) .call(keybinding); @@ -30634,11 +30651,16 @@ iD.ui.Zoom = function(context) { button.append('span') .attr('class', function(d) { return d.id + ' icon'; }); - var keybinding = d3.keybinding('zoom') - .on('+', function() { context.zoomIn(); }) - .on('-', function() { context.zoomOut(); }) - .on('⇧=', function() { context.zoomIn(); }) - .on('dash', function() { context.zoomOut(); }); + var keybinding = d3.keybinding('zoom'); + + _.each(['=','ffequals','plus','ffplus'], function(key) { + keybinding.on(key, function() { context.zoomIn(); }); + keybinding.on('⇧' + key, function() { context.zoomIn(); }); + }); + _.each(['-','ffminus','_','dash'], function(key) { + keybinding.on(key, function() { context.zoomOut(); }); + keybinding.on('⇧' + key, function() { context.zoomOut(); }); + }); d3.select(document) .call(keybinding); @@ -30848,6 +30870,7 @@ iD.ui.preset.address = function(field, context) { housenumber: 1/3, street: 2/3, city: 2/3, + state: 1/4, postcode: 1/3 }; @@ -43031,668 +43054,2508 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "polygon": [ [ [ - -119.5867318, - 49.7928087 + -119.5867318, + 49.7928087 + ], + [ + -119.5465655, + 49.7928097 + ], + [ + -119.5465661, + 49.8013837 + ], + [ + -119.5343374, + 49.8013841 + ], + [ + -119.5343376, + 49.8047321 + ], + [ + -119.5296211, + 49.8047322 + ], + [ + -119.5296216, + 49.8119555 + ], + [ + -119.5104463, + 49.811956 + ], + [ + -119.5115683, + 49.8744325 + ], + [ + -119.5108946, + 49.8744904 + ], + [ + -119.5114111, + 49.8843312 + ], + [ + -119.5114115, + 49.9221763 + ], + [ + -119.49386, + 49.9223477 + ], + [ + -119.4940505, + 49.9313031 + ], + [ + -119.4803936, + 49.9317529 + ], + [ + -119.4804572, + 49.9407474 + ], + [ + -119.4666732, + 49.9409927 + ], + [ + -119.4692775, + 49.9913717 + ], + [ + -119.4551337, + 49.9916078 + ], + [ + -119.4556736, + 50.0121242 + ], + [ + -119.4416673, + 50.0123895 + ], + [ + -119.4417308, + 50.0136345 + ], + [ + -119.4221492, + 50.0140377 + ], + [ + -119.4221042, + 50.0119306 + ], + [ + -119.4121303, + 50.012165 + ], + [ + -119.4126082, + 50.0216913 + ], + [ + -119.4123387, + 50.0216913 + ], + [ + -119.4124772, + 50.0250773 + ], + [ + -119.4120917, + 50.0250821 + ], + [ + -119.4121954, + 50.0270769 + ], + [ + -119.4126083, + 50.0270718 + ], + [ + -119.4128328, + 50.0321946 + ], + [ + -119.3936313, + 50.0326418 + ], + [ + -119.393529, + 50.0307781 + ], + [ + -119.3795727, + 50.0310116 + ], + [ + -119.3795377, + 50.0287584 + ], + [ + -119.3735764, + 50.0288621 + ], + [ + -119.371544, + 49.9793618 + ], + [ + -119.3573506, + 49.9793618 + ], + [ + -119.3548353, + 49.9256081 + ], + [ + -119.3268079, + 49.9257238 + ], + [ + -119.3256573, + 49.8804068 + ], + [ + -119.3138893, + 49.8806528 + ], + [ + -119.3137097, + 49.8771651 + ], + [ + -119.3132156, + 49.877223 + ], + [ + -119.3131482, + 49.8749652 + ], + [ + -119.312452, + 49.8749073 + ], + [ + -119.3122275, + 49.87236 + ], + [ + -119.3117558, + 49.872331 + ], + [ + -119.3115986, + 49.8696098 + ], + [ + -119.3112169, + 49.8694217 + ], + [ + -119.3109199, + 49.8632417 + ], + [ + -119.3103721, + 49.8632724 + ], + [ + -119.3095139, + 49.8512388 + ], + [ + -119.3106368, + 49.8512316 + ], + [ + -119.3103859, + 49.8462564 + ], + [ + -119.3245344, + 49.8459957 + ], + [ + -119.3246018, + 49.8450689 + ], + [ + -119.3367018, + 49.844875 + ], + [ + -119.3367467, + 49.8435136 + ], + [ + -119.337937, + 49.8434702 + ], + [ + -119.3378023, + 49.8382055 + ], + [ + -119.3383637, + 49.8381041 + ], + [ + -119.3383749, + 49.8351202 + ], + [ + -119.3390936, + 49.8351058 + ], + [ + -119.3388016, + 49.8321217 + ], + [ + -119.3391497, + 49.8320565 + ], + [ + -119.3391722, + 49.8293331 + ], + [ + -119.3394641, + 49.8293331 + ], + [ + -119.3395879, + 49.8267878 + ], + [ + -119.3500053, + 49.8265829 + ], + [ + -119.3493701, + 49.8180588 + ], + [ + -119.4046964, + 49.8163785 + ], + [ + -119.4045694, + 49.8099022 + ], + [ + -119.4101592, + 49.8099022 + ], + [ + -119.4102862, + 49.8072787 + ], + [ + -119.4319467, + 49.8069098 + ], + [ + -119.4322643, + 49.7907965 + ], + [ + -119.4459847, + 49.7905504 + ], + [ + -119.445286, + 49.7820201 + ], + [ + -119.4967376, + 49.7811587 + ], + [ + -119.4966105, + 49.7784927 + ], + [ + -119.5418371, + 49.7775082 + ], + [ + -119.5415892, + 49.7718277 + ], + [ + -119.5560296, + 49.7714941 + ], + [ + -119.5561194, + 49.7718422 + ], + [ + -119.5715704, + 49.7715086 + ], + [ + -119.5716153, + 49.7717262 + ], + [ + -119.5819235, + 49.7714941 + ], + [ + -119.5820133, + 49.7717697 + ], + [ + -119.5922991, + 49.7715231 + ], + [ + -119.592344, + 49.7718132 + ], + [ + -119.6003839, + 49.7715957 + ], + [ + -119.6011924, + 49.7839081 + ], + [ + -119.5864365, + 49.7843863 + ] + ] + ], + "id": "kelowna_roads", + "overlay": true + }, + { + "name": "Landsat 233055", + "type": "tms", + "description": "Recent Landsat imagery", + "template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/landsat_233055/{zoom}/{x}/{y}.png", + "scaleExtent": [ + 5, + 14 + ], + "polygon": [ + [ + [ + -60.8550011, + 6.1765004 + ], + [ + -60.4762612, + 7.9188291 + ], + [ + -62.161689, + 8.2778675 + ], + [ + -62.5322549, + 6.5375488 + ] + ] + ], + "id": "landsat_233055" + }, + { + "name": "Latest southwest British Columbia Landsat", + "type": "tms", + "description": "Recent lower-resolution landsat imagery for southwest British Columbia", + "template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/landsat_047026/{zoom}/{x}/{y}.png", + "scaleExtent": [ + 5, + 13 + ], + "polygon": [ + [ + [ + -121.9355512, + 47.7820648 + ], + [ + -121.5720582, + 48.6410125 + ], + [ + -121.2015461, + 49.4846247 + ], + [ + -121.8375516, + 49.6023246 + ], + [ + -122.4767046, + 49.7161735 + ], + [ + -123.118912, + 49.8268824 + ], + [ + -123.760228, + 49.9335836 + ], + [ + -124.0887706, + 49.0870469 + ], + [ + -124.4128889, + 48.2252567 + ], + [ + -123.792772, + 48.1197334 + ], + [ + -123.1727942, + 48.0109592 + ], + [ + -122.553553, + 47.8982299 + ] + ] + ], + "id": "landsat_047026" + }, + { + "name": "Lithuania - NŽT ORT10LT", + "type": "tms", + "template": "http://mapproxy.openmap.lt/ort10lt/g/{z}/{x}/{y}.jpeg", + "scaleExtent": [ + 4, + 18 + ], + "polygon": [ + [ + [ + 21.4926054, + 56.3592046 + ], + [ + 21.8134688, + 56.4097144 + ], + [ + 21.9728753, + 56.4567587 + ], + [ + 22.2158294, + 56.4604404 + ], + [ + 22.2183922, + 56.4162361 + ], + [ + 23.3511527, + 56.4267251 + ], + [ + 23.3521778, + 56.3824815 + ], + [ + 23.9179035, + 56.383305 + ], + [ + 23.9176231, + 56.3392908 + ], + [ + 24.5649817, + 56.3382169 + ], + [ + 24.564933, + 56.3828587 + ], + [ + 24.6475683, + 56.4277798 + ], + [ + 24.8099394, + 56.470646 + ], + [ + 24.9733979, + 56.4698452 + ], + [ + 25.1299701, + 56.2890356 + ], + [ + 25.127433, + 56.1990144 + ], + [ + 25.6921076, + 56.1933684 + ], + [ + 26.0839005, + 56.0067879 + ], + [ + 26.4673573, + 55.7304232 + ], + [ + 26.5463565, + 55.7132705 + ], + [ + 26.5154447, + 55.2345969 + ], + [ + 25.7874641, + 54.8425656 + ], + [ + 25.7675259, + 54.6350898 + ], + [ + 25.6165253, + 54.4404007 + ], + [ + 24.4566043, + 53.9577649 + ], + [ + 23.6164786, + 53.9575517 + ], + [ + 23.5632006, + 54.048085 + ], + [ + 22.8462074, + 54.3563682 + ], + [ + 22.831944, + 54.9414849 + ], + [ + 22.4306085, + 55.1159913 + ], + [ + 21.9605898, + 55.1107144 + ], + [ + 21.7253241, + 55.1496885 + ], + [ + 21.5628422, + 55.2362913 + ], + [ + 21.2209638, + 55.2742668 + ], + [ + 21.1630444, + 55.2803979 + ], + [ + 20.9277788, + 55.3101641 + ], + [ + 20.9257285, + 55.3588507 + ], + [ + 20.9980451, + 55.4514157 + ], + [ + 21.0282249, + 56.0796297 + ] + ] + ], + "terms_url": "http://www.geoportal.lt", + "terms_text": "NŽT ORT10LT" + }, + { + "name": "Locator Overlay", + "type": "tms", + "description": "Shows major features to help orient you.", + "template": "http://{switch:a,b,c}.tiles.mapbox.com/v4/openstreetmap.map-inh76ba2/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJhNVlHd29ZIn0.ti6wATGDWOmCnCYen-Ip7Q", + "scaleExtent": [ + 0, + 16 + ], + "terms_url": "http://www.mapbox.com/about/maps/", + "terms_text": "Terms & Feedback", + "default": true, + "overlay": true + }, + { + "name": "Luxembourg Inspire Ortho 2010", + "type": "tms", + "template": "http://mapproxy.openstreetmap.lu/tiles/ortho2010/EPSG900913/{z}/{x}/{y}.jpeg", + "scaleExtent": [ + 0, + 20 + ], + "polygon": [ + [ + [ + 5.961753, + 50.17631 + ], + [ + 6.026268, + 50.18496 + ], + [ + 6.033182, + 50.16395 + ], + [ + 6.060695, + 50.15536 + ], + [ + 6.07668, + 50.15913 + ], + [ + 6.078237, + 50.17255 + ], + [ + 6.101762, + 50.17199 + ], + [ + 6.122501, + 50.16437 + ], + [ + 6.120101, + 50.15594 + ], + [ + 6.127695, + 50.14993 + ], + [ + 6.113228, + 50.13739 + ], + [ + 6.123691, + 50.13719 + ], + [ + 6.140929, + 50.1305 + ], + [ + 6.135554, + 50.11899 + ], + [ + 6.138082, + 50.10263 + ], + [ + 6.131085, + 50.09964 + ], + [ + 6.135473, + 50.09119 + ], + [ + 6.121939, + 50.09059 + ], + [ + 6.126335, + 50.07817 + ], + [ + 6.131858, + 50.07348 + ], + [ + 6.121171, + 50.064 + ], + [ + 6.114444, + 50.06139 + ], + [ + 6.115631, + 50.05817 + ], + [ + 6.123611, + 50.06323 + ], + [ + 6.136608, + 50.04178 + ], + [ + 6.130343, + 50.02975 + ], + [ + 6.148207, + 50.02307 + ], + [ + 6.13868, + 50.01572 + ], + [ + 6.135938, + 50.01485 + ], + [ + 6.131384, + 50.01905 + ], + [ + 6.130243, + 50.01819 + ], + [ + 6.139343, + 50.01116 + ], + [ + 6.151702, + 50.01058 + ], + [ + 6.145464, + 49.99689 + ], + [ + 6.139657, + 49.9994 + ], + [ + 6.138524, + 49.99829 + ], + [ + 6.142178, + 49.99535 + ], + [ + 6.150227, + 49.99518 + ], + [ + 6.156247, + 49.98867 + ], + [ + 6.173045, + 49.98589 + ], + [ + 6.17348, + 49.98344 + ], + [ + 6.170353, + 49.98376 + ], + [ + 6.165487, + 49.97115 + ], + [ + 6.171512, + 49.96298 + ], + [ + 6.176298, + 49.962 + ], + [ + 6.179954, + 49.95386 + ], + [ + 6.183393, + 49.9548 + ], + [ + 6.179829, + 49.96307 + ], + [ + 6.183312, + 49.9686 + ], + [ + 6.192774, + 49.97158 + ], + [ + 6.199783, + 49.95352 + ], + [ + 6.207066, + 49.95672 + ], + [ + 6.212689, + 49.9514 + ], + [ + 6.225023, + 49.95039 + ], + [ + 6.22044, + 49.94369 + ], + [ + 6.228241, + 49.93726 + ], + [ + 6.22635, + 49.92766 + ], + [ + 6.219133, + 49.92354 + ], + [ + 6.229862, + 49.92125 + ], + [ + 6.236032, + 49.91355 + ], + [ + 6.231867, + 49.91064 + ], + [ + 6.227694, + 49.91062 + ], + [ + 6.232286, + 49.9072 + ], + [ + 6.23381, + 49.90028 + ], + [ + 6.246919, + 49.89535 + ], + [ + 6.257809, + 49.88724 + ], + [ + 6.263008, + 49.88101 + ], + [ + 6.276455, + 49.87725 + ], + [ + 6.281126, + 49.87957 + ], + [ + 6.291661, + 49.87548 + ], + [ + 6.297699, + 49.86673 + ], + [ + 6.309889, + 49.87107 + ], + [ + 6.315324, + 49.8673 + ], + [ + 6.314651, + 49.86057 + ], + [ + 6.323611, + 49.85188 + ], + [ + 6.321577, + 49.8409 + ], + [ + 6.327406, + 49.83673 + ], + [ + 6.336561, + 49.83998 + ], + [ + 6.339366, + 49.8507 + ], + [ + 6.364651, + 49.85164 + ], + [ + 6.402203, + 49.82098 + ], + [ + 6.426434, + 49.81629 + ], + [ + 6.428071, + 49.81186 + ], + [ + 6.43097, + 49.81129 + ], + [ + 6.441608, + 49.81547 + ], + [ + 6.443442, + 49.81233 + ], + [ + 6.45366, + 49.81275 + ], + [ + 6.464538, + 49.81975 + ], + [ + 6.47057, + 49.82385 + ], + [ + 6.496805, + 49.81277 + ], + [ + 6.50669, + 49.80993 + ], + [ + 6.511554, + 49.80238 + ], + [ + 6.51485, + 49.80513 + ], + [ + 6.519604, + 49.81446 + ], + [ + 6.529808, + 49.81048 + ], + [ + 6.532249, + 49.80686 + ], + [ + 6.530829, + 49.80116 + ], + [ + 6.506225, + 49.78899 + ], + [ + 6.519171, + 49.78344 + ], + [ + 6.511055, + 49.77422 + ], + [ + 6.520563, + 49.76818 + ], + [ + 6.520516, + 49.76134 + ], + [ + 6.503734, + 49.75086 + ], + [ + 6.502627, + 49.73298 + ], + [ + 6.507266, + 49.72938 + ], + [ + 6.518092, + 49.7242 + ], + [ + 6.516417, + 49.72129 + ], + [ + 6.511763, + 49.72016 + ], + [ + 6.504791, + 49.725 + ], + [ + 6.498913, + 49.72639 + ], + [ + 6.495576, + 49.72443 + ], + [ + 6.507122, + 49.71655 + ], + [ + 6.507884, + 49.71215 + ], + [ + 6.504598, + 49.71227 + ], + [ + 6.427139, + 49.66237 + ], + [ + 6.439899, + 49.66025 + ], + [ + 6.442511, + 49.65591 + ], + [ + 6.421781, + 49.61809 + ], + [ + 6.398978, + 49.60094 + ], + [ + 6.379408, + 49.59526 + ], + [ + 6.375507, + 49.58809 + ], + [ + 6.384426, + 49.5801 + ], + [ + 6.381188, + 49.57509 + ], + [ + 6.369093, + 49.5783 + ], + [ + 6.357913, + 49.57166 + ], + [ + 6.384902, + 49.55817 + ], + [ + 6.380095, + 49.54856 + ], + [ + 6.358555, + 49.53296 + ], + [ + 6.359322, + 49.52481 + ], + [ + 6.370763, + 49.50545 + ], + [ + 6.370562, + 49.45732 + ], + [ + 6.333403, + 49.46493 + ], + [ + 6.321894, + 49.47244 + ], + [ + 6.295034, + 49.47928 + ], + [ + 6.287889, + 49.48379 + ], + [ + 6.271912, + 49.49995 + ], + [ + 6.241327, + 49.50693 + ], + [ + 6.196692, + 49.50331 + ], + [ + 6.173373, + 49.50577 + ], + [ + 6.160858, + 49.50085 + ], + [ + 6.167099, + 49.49006 + ], + [ + 6.140179, + 49.48525 + ], + [ + 6.129367, + 49.48803 + ], + [ + 6.127247, + 49.47081 + ], + [ + 6.101403, + 49.46726 + ], + [ + 6.104826, + 49.45076 + ], + [ + 6.081667, + 49.45417 + ], + [ + 6.077222, + 49.46139 + ], + [ + 6.059167, + 49.46306 + ], + [ + 6.052222, + 49.46028 + ], + [ + 6.044213, + 49.44553 + ], + [ + 6.025294, + 49.44703 + ], + [ + 6.021545, + 49.45127 + ], + [ + 6.01574, + 49.44885 + ], + [ + 5.994123, + 49.45301 + ], + [ + 5.976569, + 49.44885 + ], + [ + 5.977725, + 49.45955 + ], + [ + 5.972317, + 49.46087 + ], + [ + 5.968912, + 49.48202 + ], + [ + 5.9616, + 49.49026 + ], + [ + 5.915781, + 49.49835 + ], + [ + 5.890334, + 49.4948 + ], + [ + 5.863321, + 49.50006 + ], + [ + 5.84897, + 49.50826 + ], + [ + 5.84828, + 49.51397 + ], + [ + 5.83641, + 49.51817 + ], + [ + 5.831868, + 49.52639 + ], + [ + 5.84308, + 49.53081 + ], + [ + 5.835622, + 49.54114 + ], + [ + 5.816251, + 49.53325 + ], + [ + 5.805201, + 49.54272 + ], + [ + 5.859432, + 49.57158 + ], + [ + 5.868663, + 49.587 + ], + [ + 5.862888, + 49.58525 + ], + [ + 5.851102, + 49.58379 + ], + [ + 5.847116, + 49.58961 + ], + [ + 5.845652, + 49.5981 + ], + [ + 5.869401, + 49.6106 + ], + [ + 5.881819, + 49.63815 + ], + [ + 5.899978, + 49.63907 + ], + [ + 5.899339, + 49.66239 + ], + [ + 5.856561, + 49.67628 + ], + [ + 5.856283, + 49.68211 + ], + [ + 5.875703, + 49.71118 + ], + [ + 5.864811, + 49.72331 + ], + [ + 5.843249, + 49.71822 + ], + [ + 5.82191, + 49.72128 + ], + [ + 5.824894, + 49.73767 + ], + [ + 5.820728, + 49.74878 + ], + [ + 5.786264, + 49.79079 + ], + [ + 5.765172, + 49.78961 + ], + [ + 5.750937, + 49.79094 + ], + [ + 5.741591, + 49.82126 + ], + [ + 5.745814, + 49.82435 + ], + [ + 5.737197, + 49.83353 + ], + [ + 5.740531, + 49.84142 + ], + [ + 5.747012, + 49.84048 + ], + [ + 5.746237, + 49.84783 + ], + [ + 5.753989, + 49.84878 + ], + [ + 5.740663, + 49.85152 + ], + [ + 5.752288, + 49.85922 + ], + [ + 5.749545, + 49.87554 + ], + [ + 5.775668, + 49.87438 + ], + [ + 5.775053, + 49.88057 + ], + [ + 5.734598, + 49.89341 + ], + [ + 5.733033, + 49.90285 + ], + [ + 5.757834, + 49.91737 + ], + [ + 5.760393, + 49.93252 + ], + [ + 5.770728, + 49.93711 + ], + [ + 5.768783, + 49.94239 + ], + [ + 5.768802, + 49.96104 + ], + [ + 5.786724, + 49.96816 + ], + [ + 5.80524, + 49.96677 + ], + [ + 5.806521, + 49.97321 + ], + [ + 5.831293, + 49.97995 + ], + [ + 5.834616, + 49.98656 + ], + [ + 5.818057, + 49.99936 + ], + [ + 5.815606, + 50.01437 + ], + [ + 5.847923, + 50.02809 + ], + [ + 5.861889, + 50.04581 + ], + [ + 5.850872, + 50.0563 + ], + [ + 5.857809, + 50.07186 + ], + [ + 5.880997, + 50.08069 + ], + [ + 5.891965, + 50.12041 + ], + [ + 5.952856, + 50.13384 + ], + [ + 5.961753, + 50.17631 + ] + ] + ], + "terms_url": "http://www.act.public.lu/fr/actualites/2014/02/ortho2014/", + "terms_text": "Administration du Cadastre et de la Topographie", + "id": "lu.geoportail.inspire.ortho2010" + }, + { + "name": "Luxembourg Inspire Ortho 2013", + "type": "tms", + "template": "http://mapproxy.openstreetmap.lu/tiles/ortho2013/EPSG900913/{z}/{x}/{y}.jpeg", + "scaleExtent": [ + 0, + 20 + ], + "polygon": [ + [ + [ + 5.961753, + 50.17631 + ], + [ + 6.026268, + 50.18496 + ], + [ + 6.033182, + 50.16395 + ], + [ + 6.060695, + 50.15536 + ], + [ + 6.07668, + 50.15913 + ], + [ + 6.078237, + 50.17255 + ], + [ + 6.101762, + 50.17199 + ], + [ + 6.122501, + 50.16437 + ], + [ + 6.120101, + 50.15594 + ], + [ + 6.127695, + 50.14993 + ], + [ + 6.113228, + 50.13739 + ], + [ + 6.123691, + 50.13719 + ], + [ + 6.140929, + 50.1305 + ], + [ + 6.135554, + 50.11899 + ], + [ + 6.138082, + 50.10263 + ], + [ + 6.131085, + 50.09964 + ], + [ + 6.135473, + 50.09119 + ], + [ + 6.121939, + 50.09059 + ], + [ + 6.126335, + 50.07817 + ], + [ + 6.131858, + 50.07348 + ], + [ + 6.121171, + 50.064 + ], + [ + 6.114444, + 50.06139 + ], + [ + 6.115631, + 50.05817 + ], + [ + 6.123611, + 50.06323 + ], + [ + 6.136608, + 50.04178 + ], + [ + 6.130343, + 50.02975 + ], + [ + 6.148207, + 50.02307 + ], + [ + 6.13868, + 50.01572 + ], + [ + 6.135938, + 50.01485 + ], + [ + 6.131384, + 50.01905 + ], + [ + 6.130243, + 50.01819 + ], + [ + 6.139343, + 50.01116 + ], + [ + 6.151702, + 50.01058 + ], + [ + 6.145464, + 49.99689 + ], + [ + 6.139657, + 49.9994 + ], + [ + 6.138524, + 49.99829 + ], + [ + 6.142178, + 49.99535 + ], + [ + 6.150227, + 49.99518 + ], + [ + 6.156247, + 49.98867 + ], + [ + 6.173045, + 49.98589 + ], + [ + 6.17348, + 49.98344 + ], + [ + 6.170353, + 49.98376 + ], + [ + 6.165487, + 49.97115 + ], + [ + 6.171512, + 49.96298 + ], + [ + 6.176298, + 49.962 + ], + [ + 6.179954, + 49.95386 + ], + [ + 6.183393, + 49.9548 + ], + [ + 6.179829, + 49.96307 + ], + [ + 6.183312, + 49.9686 + ], + [ + 6.192774, + 49.97158 + ], + [ + 6.199783, + 49.95352 + ], + [ + 6.207066, + 49.95672 + ], + [ + 6.212689, + 49.9514 + ], + [ + 6.225023, + 49.95039 + ], + [ + 6.22044, + 49.94369 + ], + [ + 6.228241, + 49.93726 + ], + [ + 6.22635, + 49.92766 + ], + [ + 6.219133, + 49.92354 + ], + [ + 6.229862, + 49.92125 + ], + [ + 6.236032, + 49.91355 + ], + [ + 6.231867, + 49.91064 + ], + [ + 6.227694, + 49.91062 + ], + [ + 6.232286, + 49.9072 + ], + [ + 6.23381, + 49.90028 + ], + [ + 6.246919, + 49.89535 + ], + [ + 6.257809, + 49.88724 + ], + [ + 6.263008, + 49.88101 + ], + [ + 6.276455, + 49.87725 + ], + [ + 6.281126, + 49.87957 + ], + [ + 6.291661, + 49.87548 + ], + [ + 6.297699, + 49.86673 + ], + [ + 6.309889, + 49.87107 ], [ - -119.5465655, - 49.7928097 + 6.315324, + 49.8673 ], [ - -119.5465661, - 49.8013837 + 6.314651, + 49.86057 ], [ - -119.5343374, - 49.8013841 + 6.323611, + 49.85188 ], [ - -119.5343376, - 49.8047321 + 6.321577, + 49.8409 ], [ - -119.5296211, - 49.8047322 + 6.327406, + 49.83673 ], [ - -119.5296216, - 49.8119555 + 6.336561, + 49.83998 ], [ - -119.5104463, - 49.811956 + 6.339366, + 49.8507 ], [ - -119.5115683, - 49.8744325 + 6.364651, + 49.85164 ], [ - -119.5108946, - 49.8744904 + 6.402203, + 49.82098 ], [ - -119.5114111, - 49.8843312 + 6.426434, + 49.81629 ], [ - -119.5114115, - 49.9221763 + 6.428071, + 49.81186 ], [ - -119.49386, - 49.9223477 + 6.43097, + 49.81129 ], [ - -119.4940505, - 49.9313031 + 6.441608, + 49.81547 ], [ - -119.4803936, - 49.9317529 + 6.443442, + 49.81233 ], [ - -119.4804572, - 49.9407474 + 6.45366, + 49.81275 ], [ - -119.4666732, - 49.9409927 + 6.464538, + 49.81975 ], [ - -119.4692775, - 49.9913717 + 6.47057, + 49.82385 ], [ - -119.4551337, - 49.9916078 + 6.496805, + 49.81277 ], [ - -119.4556736, - 50.0121242 + 6.50669, + 49.80993 ], [ - -119.4416673, - 50.0123895 + 6.511554, + 49.80238 ], [ - -119.4417308, - 50.0136345 + 6.51485, + 49.80513 ], [ - -119.4221492, - 50.0140377 + 6.519604, + 49.81446 ], [ - -119.4221042, - 50.0119306 + 6.529808, + 49.81048 ], [ - -119.4121303, - 50.012165 + 6.532249, + 49.80686 ], [ - -119.4126082, - 50.0216913 + 6.530829, + 49.80116 ], [ - -119.4123387, - 50.0216913 + 6.506225, + 49.78899 ], [ - -119.4124772, - 50.0250773 + 6.519171, + 49.78344 ], [ - -119.4120917, - 50.0250821 + 6.511055, + 49.77422 ], [ - -119.4121954, - 50.0270769 + 6.520563, + 49.76818 ], [ - -119.4126083, - 50.0270718 + 6.520516, + 49.76134 ], [ - -119.4128328, - 50.0321946 + 6.503734, + 49.75086 ], [ - -119.3936313, - 50.0326418 + 6.502627, + 49.73298 ], [ - -119.393529, - 50.0307781 + 6.507266, + 49.72938 ], [ - -119.3795727, - 50.0310116 + 6.518092, + 49.7242 ], [ - -119.3795377, - 50.0287584 + 6.516417, + 49.72129 ], [ - -119.3735764, - 50.0288621 + 6.511763, + 49.72016 ], [ - -119.371544, - 49.9793618 + 6.504791, + 49.725 ], [ - -119.3573506, - 49.9793618 + 6.498913, + 49.72639 ], [ - -119.3548353, - 49.9256081 + 6.495576, + 49.72443 ], [ - -119.3268079, - 49.9257238 + 6.507122, + 49.71655 ], [ - -119.3256573, - 49.8804068 + 6.507884, + 49.71215 ], [ - -119.3138893, - 49.8806528 + 6.504598, + 49.71227 ], [ - -119.3137097, - 49.8771651 + 6.427139, + 49.66237 ], [ - -119.3132156, - 49.877223 + 6.439899, + 49.66025 ], [ - -119.3131482, - 49.8749652 + 6.442511, + 49.65591 ], [ - -119.312452, - 49.8749073 + 6.421781, + 49.61809 ], [ - -119.3122275, - 49.87236 + 6.398978, + 49.60094 ], [ - -119.3117558, - 49.872331 + 6.379408, + 49.59526 ], [ - -119.3115986, - 49.8696098 + 6.375507, + 49.58809 ], [ - -119.3112169, - 49.8694217 + 6.384426, + 49.5801 ], [ - -119.3109199, - 49.8632417 + 6.381188, + 49.57509 ], [ - -119.3103721, - 49.8632724 + 6.369093, + 49.5783 ], [ - -119.3095139, - 49.8512388 + 6.357913, + 49.57166 ], [ - -119.3106368, - 49.8512316 + 6.384902, + 49.55817 ], [ - -119.3103859, - 49.8462564 + 6.380095, + 49.54856 ], [ - -119.3245344, - 49.8459957 + 6.358555, + 49.53296 ], [ - -119.3246018, - 49.8450689 + 6.359322, + 49.52481 ], [ - -119.3367018, - 49.844875 + 6.370763, + 49.50545 ], [ - -119.3367467, - 49.8435136 + 6.370562, + 49.45732 ], [ - -119.337937, - 49.8434702 + 6.333403, + 49.46493 ], [ - -119.3378023, - 49.8382055 + 6.321894, + 49.47244 ], [ - -119.3383637, - 49.8381041 + 6.295034, + 49.47928 ], [ - -119.3383749, - 49.8351202 + 6.287889, + 49.48379 ], [ - -119.3390936, - 49.8351058 + 6.271912, + 49.49995 ], [ - -119.3388016, - 49.8321217 + 6.241327, + 49.50693 ], [ - -119.3391497, - 49.8320565 + 6.196692, + 49.50331 ], [ - -119.3391722, - 49.8293331 + 6.173373, + 49.50577 ], [ - -119.3394641, - 49.8293331 + 6.160858, + 49.50085 ], [ - -119.3395879, - 49.8267878 + 6.167099, + 49.49006 ], [ - -119.3500053, - 49.8265829 + 6.140179, + 49.48525 ], [ - -119.3493701, - 49.8180588 + 6.129367, + 49.48803 ], [ - -119.4046964, - 49.8163785 + 6.127247, + 49.47081 ], [ - -119.4045694, - 49.8099022 + 6.101403, + 49.46726 ], [ - -119.4101592, - 49.8099022 + 6.104826, + 49.45076 ], [ - -119.4102862, - 49.8072787 + 6.081667, + 49.45417 ], [ - -119.4319467, - 49.8069098 + 6.077222, + 49.46139 ], [ - -119.4322643, - 49.7907965 + 6.059167, + 49.46306 ], [ - -119.4459847, - 49.7905504 + 6.052222, + 49.46028 ], [ - -119.445286, - 49.7820201 + 6.044213, + 49.44553 ], [ - -119.4967376, - 49.7811587 + 6.025294, + 49.44703 ], [ - -119.4966105, - 49.7784927 + 6.021545, + 49.45127 ], [ - -119.5418371, - 49.7775082 + 6.01574, + 49.44885 ], [ - -119.5415892, - 49.7718277 + 5.994123, + 49.45301 ], [ - -119.5560296, - 49.7714941 + 5.976569, + 49.44885 ], [ - -119.5561194, - 49.7718422 + 5.977725, + 49.45955 ], [ - -119.5715704, - 49.7715086 + 5.972317, + 49.46087 ], [ - -119.5716153, - 49.7717262 + 5.968912, + 49.48202 ], [ - -119.5819235, - 49.7714941 + 5.9616, + 49.49026 ], [ - -119.5820133, - 49.7717697 + 5.915781, + 49.49835 ], [ - -119.5922991, - 49.7715231 + 5.890334, + 49.4948 ], [ - -119.592344, - 49.7718132 + 5.863321, + 49.50006 ], [ - -119.6003839, - 49.7715957 + 5.84897, + 49.50826 ], [ - -119.6011924, - 49.7839081 + 5.84828, + 49.51397 ], [ - -119.5864365, - 49.7843863 - ] - ] - ], - "id": "kelowna_roads", - "overlay": true - }, - { - "name": "Landsat 233055", - "type": "tms", - "description": "Recent Landsat imagery", - "template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/landsat_233055/{zoom}/{x}/{y}.png", - "scaleExtent": [ - 5, - 14 - ], - "polygon": [ - [ + 5.83641, + 49.51817 + ], [ - -60.8550011, - 6.1765004 + 5.831868, + 49.52639 ], [ - -60.4762612, - 7.9188291 + 5.84308, + 49.53081 ], [ - -62.161689, - 8.2778675 + 5.835622, + 49.54114 ], [ - -62.5322549, - 6.5375488 - ] - ] - ], - "id": "landsat_233055" - }, - { - "name": "Latest southwest British Columbia Landsat", - "type": "tms", - "description": "Recent lower-resolution landsat imagery for southwest British Columbia", - "template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/landsat_047026/{zoom}/{x}/{y}.png", - "scaleExtent": [ - 5, - 13 - ], - "polygon": [ - [ + 5.816251, + 49.53325 + ], [ - -121.9355512, - 47.7820648 + 5.805201, + 49.54272 ], [ - -121.5720582, - 48.6410125 + 5.859432, + 49.57158 ], [ - -121.2015461, - 49.4846247 + 5.868663, + 49.587 ], [ - -121.8375516, - 49.6023246 + 5.862888, + 49.58525 ], [ - -122.4767046, - 49.7161735 + 5.851102, + 49.58379 ], [ - -123.118912, - 49.8268824 + 5.847116, + 49.58961 ], [ - -123.760228, - 49.9335836 + 5.845652, + 49.5981 ], [ - -124.0887706, - 49.0870469 + 5.869401, + 49.6106 ], [ - -124.4128889, - 48.2252567 + 5.881819, + 49.63815 ], [ - -123.792772, - 48.1197334 + 5.899978, + 49.63907 ], [ - -123.1727942, - 48.0109592 + 5.899339, + 49.66239 ], [ - -122.553553, - 47.8982299 - ] - ] - ], - "id": "landsat_047026" - }, - { - "name": "Lithuania - NŽT ORT10LT", - "type": "tms", - "template": "http://mapproxy.openmap.lt/ort10lt/g/{z}/{x}/{y}.jpeg", - "scaleExtent": [ - 4, - 18 - ], - "polygon": [ - [ + 5.856561, + 49.67628 + ], [ - 21.4926054, - 56.3592046 + 5.856283, + 49.68211 ], [ - 21.8134688, - 56.4097144 + 5.875703, + 49.71118 ], [ - 21.9728753, - 56.4567587 + 5.864811, + 49.72331 ], [ - 22.2158294, - 56.4604404 + 5.843249, + 49.71822 ], [ - 22.2183922, - 56.4162361 + 5.82191, + 49.72128 ], [ - 23.3511527, - 56.4267251 + 5.824894, + 49.73767 ], [ - 23.3521778, - 56.3824815 + 5.820728, + 49.74878 ], [ - 23.9179035, - 56.383305 + 5.786264, + 49.79079 ], [ - 23.9176231, - 56.3392908 + 5.765172, + 49.78961 ], [ - 24.5649817, - 56.3382169 + 5.750937, + 49.79094 ], [ - 24.564933, - 56.3828587 + 5.741591, + 49.82126 ], [ - 24.6475683, - 56.4277798 + 5.745814, + 49.82435 ], [ - 24.8099394, - 56.470646 + 5.737197, + 49.83353 ], [ - 24.9733979, - 56.4698452 + 5.740531, + 49.84142 ], [ - 25.1299701, - 56.2890356 + 5.747012, + 49.84048 ], [ - 25.127433, - 56.1990144 + 5.746237, + 49.84783 ], [ - 25.6921076, - 56.1933684 + 5.753989, + 49.84878 ], [ - 26.0839005, - 56.0067879 + 5.740663, + 49.85152 ], [ - 26.4673573, - 55.7304232 + 5.752288, + 49.85922 ], [ - 26.5463565, - 55.7132705 + 5.749545, + 49.87554 ], [ - 26.5154447, - 55.2345969 + 5.775668, + 49.87438 ], [ - 25.7874641, - 54.8425656 + 5.775053, + 49.88057 ], [ - 25.7675259, - 54.6350898 + 5.734598, + 49.89341 ], [ - 25.6165253, - 54.4404007 + 5.733033, + 49.90285 ], [ - 24.4566043, - 53.9577649 + 5.757834, + 49.91737 ], [ - 23.6164786, - 53.9575517 + 5.760393, + 49.93252 ], [ - 23.5632006, - 54.048085 + 5.770728, + 49.93711 ], [ - 22.8462074, - 54.3563682 + 5.768783, + 49.94239 ], [ - 22.831944, - 54.9414849 + 5.768802, + 49.96104 ], [ - 22.4306085, - 55.1159913 + 5.786724, + 49.96816 ], [ - 21.9605898, - 55.1107144 + 5.80524, + 49.96677 ], [ - 21.7253241, - 55.1496885 + 5.806521, + 49.97321 ], [ - 21.5628422, - 55.2362913 + 5.831293, + 49.97995 ], [ - 21.2209638, - 55.2742668 + 5.834616, + 49.98656 ], [ - 21.1630444, - 55.2803979 + 5.818057, + 49.99936 ], [ - 20.9277788, - 55.3101641 + 5.815606, + 50.01437 ], [ - 20.9257285, - 55.3588507 + 5.847923, + 50.02809 ], [ - 20.9980451, - 55.4514157 + 5.861889, + 50.04581 ], [ - 21.0282249, - 56.0796297 + 5.850872, + 50.0563 + ], + [ + 5.857809, + 50.07186 + ], + [ + 5.880997, + 50.08069 + ], + [ + 5.891965, + 50.12041 + ], + [ + 5.952856, + 50.13384 + ], + [ + 5.961753, + 50.17631 ] ] ], - "terms_url": "http://www.geoportal.lt", - "terms_text": "NŽT ORT10LT" - }, - { - "name": "Locator Overlay", - "type": "tms", - "description": "Shows major features to help orient you.", - "template": "http://{switch:a,b,c}.tiles.mapbox.com/v4/openstreetmap.map-inh76ba2/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJhNVlHd29ZIn0.ti6wATGDWOmCnCYen-Ip7Q", - "scaleExtent": [ - 0, - 16 - ], - "terms_url": "http://www.mapbox.com/about/maps/", - "terms_text": "Terms & Feedback", - "default": true, - "overlay": true + "terms_url": "http://www.act.public.lu/fr/actualites/2014/02/ortho2014/", + "terms_text": "Administration du Cadastre et de la Topographie", + "id": "lu.geoportail.inspire.ortho2013" }, { "name": "MapQuest Open Aerial", @@ -65264,7 +67127,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "name": "Currency Exchange" }, "amenity/bus_station": { + "icon": "bus", "fields": [ + "building_area", "operator" ], "geometry": [ @@ -65459,6 +67324,26 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," }, "name": "College Grounds" }, + "amenity/community_centre": { + "icon": "town-hall", + "fields": [ + "operator", + "address", + "building_area" + ], + "geometry": [ + "point", + "area" + ], + "terms": [ + "event", + "hall" + ], + "tags": { + "amenity": "community_centre" + }, + "name": "Community Center" + }, "amenity/compressed_air": { "icon": "car", "geometry": [ @@ -71079,6 +72964,21 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "tags": { "power": "sub_station" }, + "name": "Substation", + "searchable": false + }, + "power/substation": { + "fields": [ + "operator", + "building" + ], + "geometry": [ + "point", + "area" + ], + "tags": { + "power": "substation" + }, "name": "Substation" }, "power/tower": { @@ -72322,7 +74222,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "name": "Garden Center" }, "shop/gift": { - "icon": "shop", + "icon": "gift", "fields": [ "operator", "address", @@ -73451,8 +75351,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "icon": "campsite", "fields": [ "operator", - "address", - "smoking" + "address" ], "geometry": [ "point", @@ -73671,6 +75570,67 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," }, "name": "Zoo" }, + "traffic_calming/bump": { + "fields": [ + "surface" + ], + "geometry": [ + "vertex" + ], + "tags": { + "traffic_calming": "bump" + }, + "terms": [ + "speed hump" + ], + "name": "Speed Bump" + }, + "traffic_calming/hump": { + "fields": [ + "surface" + ], + "geometry": [ + "vertex" + ], + "tags": { + "traffic_calming": "hump" + }, + "terms": [ + "speed bump" + ], + "name": "Speed Hump" + }, + "traffic_calming/rumble_strip": { + "geometry": [ + "vertex" + ], + "tags": { + "traffic_calming": "rumble_strip" + }, + "terms": [ + "sleeper lines", + "audible lines", + "growlers" + ], + "name": "Rumble Strip" + }, + "traffic_calming/table": { + "fields": [ + "surface" + ], + "geometry": [ + "vertex" + ], + "tags": { + "highway": "crossing", + "traffic_calming": "table" + }, + "terms": [ + "speed table", + "flat top hump" + ], + "name": "Raised Pedestrian Crossing" + }, "type/boundary": { "geometry": [ "relation" @@ -115341,6 +117301,34 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," 528 ] }, + "gift": { + "12": [ + 258, + 528 + ], + "18": [ + 240, + 528 + ], + "24": [ + 216, + 528 + ] + }, + "ice-cream": { + "12": [ + 42, + 552 + ], + "18": [ + 24, + 552 + ], + "24": [ + 0, + 552 + ] + }, "highway-motorway": { "line": [ 20, @@ -116129,6 +118117,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "upload_explanation_with_user": "The changes you upload as {user} will be visible on all maps that use OpenStreetMap data.", "save": "Save", "cancel": "Cancel", + "changes": "{count} Changes", "warnings": "Warnings", "modified": "Modified", "deleted": "Deleted", @@ -116199,6 +118188,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "help": "Save changes to OpenStreetMap, making them visible to other users.", "no_changes": "No changes to save.", "error": "An error occurred while trying to save", + "unknown_error_details": "Please ensure you are connected to the internet.", "uploading": "Uploading changes to OpenStreetMap.", "unsaved_changes": "You have unsaved changes" }, @@ -117231,6 +119221,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "name": "College Grounds", "terms": "university" }, + "amenity/community_centre": { + "name": "Community Center", + "terms": "event,hall" + }, "amenity/compressed_air": { "name": "Compressed Air", "terms": "" @@ -118595,6 +120589,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "name": "Substation", "terms": "" }, + "power/substation": { + "name": "Substation", + "terms": "" + }, "power/tower": { "name": "High-Voltage Tower", "terms": "" @@ -119175,6 +121173,22 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "name": "Zoo", "terms": "" }, + "traffic_calming/bump": { + "name": "Speed Bump", + "terms": "speed hump" + }, + "traffic_calming/hump": { + "name": "Speed Hump", + "terms": "speed bump" + }, + "traffic_calming/rumble_strip": { + "name": "Rumble Strip", + "terms": "sleeper lines,audible lines,growlers" + }, + "traffic_calming/table": { + "name": "Raised Pedestrian Crossing", + "terms": "speed table,flat top hump" + }, "type/boundary": { "name": "Boundary", "terms": "" @@ -124294,6 +126308,38 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081]," "postcode" ] ] + }, + { + "countryCodes": [ + "us" + ], + "format": [ + [ + "housenumber", + "street" + ], + [ + "city", + "state", + "postcode" + ] + ] + }, + { + "countryCodes": [ + "ca" + ], + "format": [ + [ + "housenumber", + "street" + ], + [ + "city", + "province", + "postcode" + ] + ] } ] }; \ No newline at end of file diff --git a/vendor/assets/iD/iD/img/maki-sprite.png b/vendor/assets/iD/iD/img/maki-sprite.png index e4028833d..a65f10470 100644 Binary files a/vendor/assets/iD/iD/img/maki-sprite.png and b/vendor/assets/iD/iD/img/maki-sprite.png differ diff --git a/vendor/assets/iD/iD/locales/ca.json b/vendor/assets/iD/iD/locales/ca.json index 13684afd7..c7d10d7c4 100644 --- a/vendor/assets/iD/iD/locales/ca.json +++ b/vendor/assets/iD/iD/locales/ca.json @@ -1309,6 +1309,9 @@ "amenity/college": { "name": "Escola professional" }, + "amenity/community_centre": { + "name": "Centre Comunitari" + }, "amenity/compressed_air": { "name": "Aire comprimit" }, diff --git a/vendor/assets/iD/iD/locales/de.json b/vendor/assets/iD/iD/locales/de.json index db8c44728..92ade9989 100644 --- a/vendor/assets/iD/iD/locales/de.json +++ b/vendor/assets/iD/iD/locales/de.json @@ -297,6 +297,7 @@ "help": "Speichere Änderungen auf OpenStreetMap, wodurch sie für andere Nutzer sichtbar werden.", "no_changes": "Keine zu speichernden Änderungen.", "error": "Beim Speichern ist ein Fehler aufgetreten", + "unknown_error_details": "Bitte überprüfe dass Dein Gerät mit dem Internet verbunden ist.", "uploading": "Änderungen werden zu OpenStreetMap hoch geladen.", "unsaved_changes": "Ungesicherte Änderungen vorhanden" }, @@ -1329,6 +1330,10 @@ "name": "Hochschulgelände", "terms": "Schulgelände,Collegegeglände" }, + "amenity/community_centre": { + "name": "Gemeindezentrum", + "terms": "Gemeindezentrum, Stadteilzentrum, Sozialzentrum, Gemeinschaftszentrum, Bürgerhaus" + }, "amenity/compressed_air": { "name": "Druckluft", "terms": "Druckluft, Pressluft" @@ -2693,6 +2698,10 @@ "name": "Umspannwerk", "terms": "Umspannwerk, Umspannungswerk" }, + "power/substation": { + "name": "Umspannwerk", + "terms": "Umspannwerk, Transformatorenstation, Schaltanlage" + }, "power/tower": { "name": "Hochspannungsmast", "terms": "Hochspannungsmast" @@ -3273,6 +3282,22 @@ "name": "Zoo", "terms": "Zoo" }, + "traffic_calming/bump": { + "name": "Temposchwelle", + "terms": "Temposchwelle, Bodenschwelle, Beruhigungsschwelle, Rüttelschwelle, Fahrbahnhöcker, Bremsschwelle, Bremshügel" + }, + "traffic_calming/hump": { + "name": "Bodenschwelle", + "terms": "Bodenschwelle, Bremshügel" + }, + "traffic_calming/rumble_strip": { + "name": "Fahrbahnschwelle", + "terms": "Fahrbahnschwelle, Rüttelstreifen" + }, + "traffic_calming/table": { + "name": "Erhöhter Fußgängerübergang", + "terms": "Erhöhter Fußgängerübergang" + }, "type/boundary": { "name": "Grenze", "terms": "Grenze" diff --git a/vendor/assets/iD/iD/locales/en.json b/vendor/assets/iD/iD/locales/en.json index 7df4440a2..feabccf91 100644 --- a/vendor/assets/iD/iD/locales/en.json +++ b/vendor/assets/iD/iD/locales/en.json @@ -231,6 +231,7 @@ "upload_explanation_with_user": "The changes you upload as {user} will be visible on all maps that use OpenStreetMap data.", "save": "Save", "cancel": "Cancel", + "changes": "{count} Changes", "warnings": "Warnings", "modified": "Modified", "deleted": "Deleted", @@ -301,6 +302,7 @@ "help": "Save changes to OpenStreetMap, making them visible to other users.", "no_changes": "No changes to save.", "error": "An error occurred while trying to save", + "unknown_error_details": "Please ensure you are connected to the internet.", "uploading": "Uploading changes to OpenStreetMap.", "unsaved_changes": "You have unsaved changes" }, @@ -1333,6 +1335,10 @@ "name": "College Grounds", "terms": "university" }, + "amenity/community_centre": { + "name": "Community Center", + "terms": "event,hall" + }, "amenity/compressed_air": { "name": "Compressed Air", "terms": "" @@ -2697,6 +2703,10 @@ "name": "Substation", "terms": "" }, + "power/substation": { + "name": "Substation", + "terms": "" + }, "power/tower": { "name": "High-Voltage Tower", "terms": "" @@ -3277,6 +3287,22 @@ "name": "Zoo", "terms": "" }, + "traffic_calming/bump": { + "name": "Speed Bump", + "terms": "speed hump" + }, + "traffic_calming/hump": { + "name": "Speed Hump", + "terms": "speed bump" + }, + "traffic_calming/rumble_strip": { + "name": "Rumble Strip", + "terms": "sleeper lines,audible lines,growlers" + }, + "traffic_calming/table": { + "name": "Raised Pedestrian Crossing", + "terms": "speed table,flat top hump" + }, "type/boundary": { "name": "Boundary", "terms": "" diff --git a/vendor/assets/iD/iD/locales/es.json b/vendor/assets/iD/iD/locales/es.json index 3db9b91ff..c656f17fd 100644 --- a/vendor/assets/iD/iD/locales/es.json +++ b/vendor/assets/iD/iD/locales/es.json @@ -353,7 +353,7 @@ "mapillary": { "tooltip": "Fotos a nivel de calle de Mapillary", "title": "Superposición de fotos (Mapillary)", - "view_on_mapillary": "Ver esta imagen en Mapillary" + "view_on_mapillary": "Ver esta imaxe en Mapillary" }, "help": { "title": "Ayuda", @@ -1382,8 +1382,8 @@ "terms": "Recinto hospitalario, hospital, clínica" }, "amenity/kindergarten": { - "name": "Terreno Preescolar / Jardín de infantes", - "terms": "terrenos del preescolar" + "name": "Área de preescolar / Jardín de infancia", + "terms": "preescolar, jardín de infancia, parvulario, parvulos, terreno, área, suelo" }, "amenity/library": { "name": "Biblioteca", @@ -1474,16 +1474,16 @@ "terms": "Banco de alimentos" }, "amenity/social_facility/group_home": { - "name": "Hogar de Ancianos", - "terms": "Hogar de mayores" + "name": "Residencia de la tercera edad", + "terms": "Hogar de mayores, ancianos, residencia, tercera edad" }, "amenity/social_facility/homeless_shelter": { - "name": "Refugio de personas sin hogar", - "terms": "Refugio social" + "name": "Centro de acofgida para personas sin hogar", + "terms": "refugio social, refugio, comedor social, alberge, centro, vagabundo" }, "amenity/studio": { "name": "Estudio", - "terms": "estudio, taller" + "terms": "estudio, taller, gabinete" }, "amenity/swimming_pool": { "name": "Piscina", @@ -1491,7 +1491,7 @@ }, "amenity/taxi": { "name": "Parada de taxis", - "terms": "Parada de Taxis, sitio de taxis" + "terms": "taxi, parada" }, "amenity/telephone": { "name": "Teléfono", @@ -1510,8 +1510,8 @@ "terms": "ayuntamiento, alcaldía, municipio, municipalidad, municipal, corporación, concejo, consistorio, cabildo, gobierno local, gobierno municipal, alcalde, intendente, concejales, ediles, comuna, casa consistorial" }, "amenity/university": { - "name": "Terreno Universidad", - "terms": "terrenos de la universidad" + "name": "Área universitaria", + "terms": "terrenos, universidad, campus, colegio mayor, facultad" }, "amenity/vending_machine": { "name": "Máquina expendedora", @@ -1519,7 +1519,7 @@ }, "amenity/veterinary": { "name": "Veterinario", - "terms": "veterinario, albéitar, mascotas, animales" + "terms": "veterinario, albéitar, mascotas, animales, perros, gatos" }, "amenity/waste_basket": { "name": "Papelera", @@ -1527,11 +1527,11 @@ }, "area": { "name": "Área", - "terms": "superficie, extensión, espacio, zona, sector, campo, dominio, territorio, tierra, parcela" + "terms": "superficie, extensión, espacio, zona, sector, campo, dominio, territorio, tierra, parcela, terreno" }, "barrier": { "name": "Barrera", - "terms": "barrera,valla, muro, tapia, seto, barda, bardal, vallado, cerca, empalizada, parapeto, verja\nobstáculo, impedimento, oposición, inconveniente, estorbo" + "terms": "barrera,valla, muro, tapia, seto, barda, bardal, vallado, cerca, empalizada, parapeto, verja, obstáculo, impedimento, oposición, inconveniente, estorbo" }, "barrier/block": { "name": "Bloque", @@ -1623,7 +1623,7 @@ }, "building/cathedral": { "name": "Catedral", - "terms": "Iglesia, Lugar de culto, templo, basílica, parroquia, santuario, oratorio, iglesia, basílica" + "terms": "iglesia, lugar de culto, templo, basílica, parroquia, santuario, oratorio, iglesia, basílica" }, "building/chapel": { "name": "Capilla", @@ -1639,7 +1639,7 @@ }, "building/commercial": { "name": "Edificio comercial", - "terms": "centro comercial, edificio comercial" + "terms": "centro comercial, edificio comercial, tiendas" }, "building/construction": { "name": "Edificio en construcción", @@ -1647,11 +1647,11 @@ }, "building/detached": { "name": "Casa unifamiliar", - "terms": "Chalet, unifamiliar, casa independiente" + "terms": "chalet, unifamiliar, casa, vivienda, construcción" }, "building/dormitory": { "name": "Dormitorio", - "terms": "Dormitorio, residencia universitaria" + "terms": "dormitorio, residencia universitaria" }, "building/entrance": { "name": "Entrada/Salida", @@ -1671,7 +1671,7 @@ }, "building/hospital": { "name": "Edificio de hospital", - "terms": "Hospital, sanatorio, Centro de primeros auxilios" + "terms": "hospital, sanatorio, centro de primeros auxilios, clínica, psiquiátrico" }, "building/hotel": { "name": "Edificio de hotel", @@ -1691,11 +1691,11 @@ }, "building/kindergarten": { "name": "Edificio Preescolar / Jardín de infantes ", - "terms": "edificio del preescolar" + "terms": "preescolar, parvulario, párvulos, jardín de infancia, edificio, colegio" }, "building/public": { "name": "Edificio público", - "terms": "Edificio público" + "terms": "edificio público, construcción, centro cultural, centro social, delegación" }, "building/residential": { "name": "Edificio residencial", @@ -1707,7 +1707,7 @@ }, "building/roof": { "name": "Tejado", - "terms": "Tejado, Techumbre" + "terms": "tejado, techumbre, cubierta, techo" }, "building/school": { "name": "Edificio escolar", @@ -1719,7 +1719,7 @@ }, "building/stable": { "name": "Establo de caballos", - "terms": "Cuadra de caballos, caballeriza, caballos" + "terms": "cuadra, caballos, caballeriza, caballos, yegua" }, "building/static_caravan": { "name": "Caravana estática", @@ -1735,7 +1735,7 @@ }, "building/university": { "name": "Edificio universitario", - "terms": "Universidad, Facultad, Escuela universitaria" + "terms": "universidad, facultad, escuela universitaria, colegio mayor" }, "building/warehouse": { "name": "Almacén", @@ -1751,11 +1751,11 @@ }, "craft/beekeeper": { "name": "Apicultor", - "terms": "apicultor, colmenero" + "terms": "apicultor, colmenero, abeja, panel, miel" }, "craft/blacksmith": { "name": "Herrero", - "terms": "herrero, herrería, herrajes, hierro, forja" + "terms": "herrero, herrería, herrajes, hierro, forja, herradura, fragua" }, "craft/boatbuilder": { "name": "Constructor de barco", @@ -1795,7 +1795,7 @@ }, "craft/electrician": { "name": "Electricista", - "terms": "electricista, iluminista, trabajo de electricista" + "terms": "electricista, iluminista, trabajo de electricidad" }, "craft/gardener": { "name": "Jardinero", @@ -1831,11 +1831,11 @@ }, "craft/metal_construction": { "name": "Construcción metálica", - "terms": "Metalúrgica, Taller metálico, Construcciones de metal, Calderería" + "terms": "metalúrgica, taller metálico, construcciones de metal, calderería," }, "craft/optician": { "name": "Óptico", - "terms": "óptico, óptica, gafas" + "terms": "óptico, óptica, gafas, optometrista, oculista, lentillas" }, "craft/painter": { "name": "Pintor", @@ -1851,11 +1851,11 @@ }, "craft/plasterer": { "name": "Yesero", - "terms": "yeso, albañil, obra" + "terms": "yeso, albañil, obra, construcción" }, "craft/plumber": { "name": "Fontanero", - "terms": "Fontanero, Fontanería, Plomero, Plomería" + "terms": "fontanero, fontanería, plomero, plomería, desatascador, tubero" }, "craft/pottery": { "name": "Cerámica", @@ -1867,7 +1867,7 @@ }, "craft/roofer": { "name": "Techador", - "terms": "Techador, Techista" + "terms": "techador, techista, tejado, cubierta, encofrador" }, "craft/saddler": { "name": "Talabartero", @@ -1875,7 +1875,7 @@ }, "craft/sailmaker": { "name": "Velero", - "terms": "Fabricante de velas" + "terms": "Fabricante de velas, velero, barco" }, "craft/sawmill": { "name": "Aserradero", @@ -1899,7 +1899,7 @@ }, "craft/sweep": { "name": "Deshollinador", - "terms": "Deshollinador, Limpiachimeneas" + "terms": "deshollinador, limpiachimeneas, chimenea" }, "craft/tailor": { "name": "Sastre", @@ -1911,7 +1911,7 @@ }, "craft/tinsmith": { "name": "Hojalatero", - "terms": "Hojalatero, Soldador" + "terms": "hojalatero, soldador, metal" }, "craft/upholsterer": { "name": "Tapicero", @@ -3406,8 +3406,8 @@ "terms": "torrente, riachuelo, arroyuelo, regato, reguero, torrentera, rivera, corriente, afluente, brazo, toma, río, arroyo" }, "waterway/weir": { - "name": "Vertedero", - "terms": "presa, azud" + "name": "Presa", + "terms": "presa, azud, dique, represa" } } } diff --git a/vendor/assets/iD/iD/locales/fr.json b/vendor/assets/iD/iD/locales/fr.json index bcfeb30e6..0544d6802 100644 --- a/vendor/assets/iD/iD/locales/fr.json +++ b/vendor/assets/iD/iD/locales/fr.json @@ -834,7 +834,7 @@ } }, "mtb/scale/uphill": { - "label": "VTT Uphill Difficulté", + "label": "Difficulté VTT en montée", "placeholder": "0, 1, 2, 3...", "options": { "0": "0: Inclinaison <10% , sol consistent, pas d'obstacles", @@ -1046,6 +1046,7 @@ } }, "social_facility_for": { + "label": "Personnes desservies", "placeholder": "Sans-abris, handicapés, enfants, etc." }, "source": { @@ -1104,7 +1105,7 @@ "options": { "grade1": "Dur : pavé ou surface très compacte", "grade2": "Majoritairement dur : gravier/pierre avec quelque matériaux mous mélangés dedans", - "grade3": "Mélange homogène entre matériaux mous et durs", + "grade3": "Mélange à égalité entre matériaux mous et durs", "grade4": "Majoritairement mou : terre/sable/herbe avec quelque matériaux durs mélangés dedans", "grade5": "Mou : terre/sable/herbe" } @@ -1418,7 +1419,7 @@ }, "amenity/place_of_worship/christian": { "name": "Église", - "terms": "Eglise" + "terms": "Église" }, "amenity/place_of_worship/jewish": { "name": "Synagogue", @@ -1650,7 +1651,7 @@ }, "building/dormitory": { "name": "Résidence universitaire", - "terms": "Foyer" + "terms": "Dortoir,Foyer" }, "building/entrance": { "name": "Entrée/Sortie", @@ -2653,7 +2654,7 @@ "terms": "Environs, Voisinage, Quartier" }, "place/suburb": { - "name": "Commune", + "name": "Quartier", "terms": "Commune, Municipalité, District, Arrondissement, Bourough" }, "place/town": { @@ -3245,8 +3246,8 @@ "terms": "Hôtel" }, "tourism/information": { - "name": "Office de tourisme", - "terms": "Renseignements" + "name": "Informations", + "terms": "Informations,Renseignements,Office de tourisme,Panneau,Carte" }, "tourism/motel": { "name": "Motel", @@ -3296,6 +3297,10 @@ "name": "Interdiction de tourner à droite", "terms": "Interdiction de tourner à droite" }, + "type/restriction/no_straight_on": { + "name": "Interdiction d'aller tout droit", + "terms": "Interdiction d'aller tout droit" + }, "type/restriction/no_u_turn": { "name": "Demi-tour interdit", "terms": "Demi-tour interdit" diff --git a/vendor/assets/iD/iD/locales/gl.json b/vendor/assets/iD/iD/locales/gl.json index 01a0d120f..2c652d071 100644 --- a/vendor/assets/iD/iD/locales/gl.json +++ b/vendor/assets/iD/iD/locales/gl.json @@ -340,16 +340,20 @@ "deprecated_tags": "Etiquetas obsoletas: {tags}" }, "zoom": { - "in": "Acercar", - "out": "Afastar" + "in": "Ampliar", + "out": "Reducir" }, - "cannot_zoom": "Non se pode afastar máis no modo actual.", + "cannot_zoom": "Non se pode reducir máis no modo actual.", "gpx": { "local_layer": "Ficheiro GPX local", "drag_drop": "Arrastra e solta un ficheiro .gpx sobre a páxina, ou fai clic no botón da dereita para buscalo", "zoom": "Facer zoom á pista GPX", "browse": "Buscar un ficheiro .gpx" }, + "mapillary": { + "tooltip": "Fotos a pé de rúa de Mapillary", + "title": "Superposición de fotos (Mapillary)" + }, "help": { "title": "Axuda", "help": "# Axuda\n\nEste é un editor para [OpenStreetMap](http://www.openstreetmap.org/), o\nmapa mundial libre e editable. Podes usalo para engadir e actualizar datos\nna túa zona, facendo un mellor mapa mundial de código e datos abertos\nmellor para todos.\n\nAs edicións que fagas neste mapa serán visibles a todos os que usen\nOpenStreetMap. Para facer unha edición, necesitarás unha\n[conta de OpenStreetMap gratuíta](https://www.openstreetmap.org/user/new).\n\nO [editor iD](http://ideditor.com/) é un proxecto colaborativo con [código\nfonte dispoñible en GitHub](https://github.com/openstreetmap/iD).\n" diff --git a/vendor/assets/iD/iD/locales/hu.json b/vendor/assets/iD/iD/locales/hu.json index f575efc2f..531440c49 100644 --- a/vendor/assets/iD/iD/locales/hu.json +++ b/vendor/assets/iD/iD/locales/hu.json @@ -414,6 +414,9 @@ "category-rail": { "name": "Vasút" }, + "category-restriction": { + "name": "Korlátozás" + }, "category-road": { "name": "Út" }, @@ -469,6 +472,9 @@ "label": "Behajtás", "placeholder": "igen" }, + "access_toilets": { + "label": "Hozzáférés" + }, "address": { "label": "Cím", "placeholders": { @@ -477,6 +483,7 @@ "street": "utca", "city": "város", "postcode": "írányítószám", + "place": "Hely", "hamlet": "Falucska", "district": "Kerület", "state": "Régió", @@ -490,7 +497,11 @@ "label": "Típus" }, "aerialway/access": { - "label": "Be- és kiszállás" + "label": "Be- és kiszállás", + "options": { + "entry": "Bejárat", + "exit": "Kijárat" + } }, "aerialway/bubble": { "label": "Védőburok" @@ -511,7 +522,11 @@ "placeholder": "2, 4, 8..." }, "aerialway/summer/access": { - "label": "Be- és kiszállás (nyáron)" + "label": "Be- és kiszállás (nyáron)", + "options": { + "entry": "Bejárat", + "exit": "Kijárat" + } }, "aeroway": { "label": "típus" @@ -556,7 +571,19 @@ "N": "Észak", "E": "Kelet", "S": "Dél", - "W": "Nyugat" + "W": "Nyugat", + "NE": "Északkelet", + "SE": "Délkelet", + "SW": "Délnyugat", + "NW": "Északnyugat", + "NNE": "Észak-északkelet", + "ENE": "Kelet-északkelet", + "ESE": "Kelet-délkelet", + "SSE": "Dél-délkelet", + "SSW": "Dél-délnyugat", + "WSW": "Nyugat-délnyugat", + "WNW": "Nyugat-északnyugat", + "NNW": "Észak-északnyugat" } }, "clock_direction": { @@ -575,6 +602,12 @@ "country": { "label": "Ország" }, + "covered": { + "label": "Lefedett" + }, + "craft": { + "label": "Typus" + }, "crossing": { "label": "Típus" }, @@ -593,7 +626,9 @@ "electrified": { "label": "Villamosítottság", "options": { - "rail": "Villamosított vasútvonal" + "rail": "Villamosított vasútvonal", + "yes": "Igen (nem részletezett)", + "no": "Nem" } }, "elevation": { @@ -605,6 +640,9 @@ "entrance": { "label": "Típus" }, + "except": { + "label": "Kivételek" + }, "fax": { "label": "Fax", "placeholder": "+36 1 123 45 67" @@ -613,7 +651,11 @@ "label": "Fizetős" }, "fire_hydrant/type": { - "label": "Típus" + "label": "Típus", + "options": { + "underground": "Aluljáró", + "wall": "Fal" + } }, "fixme": { "label": "JavítsKi" @@ -621,6 +663,27 @@ "fuel": { "label": "Üzemanyag" }, + "fuel/biodiesel": { + "label": "Biodízelt árul" + }, + "fuel/diesel": { + "label": "Dízelt árul" + }, + "fuel/e10": { + "label": "E10-et árul" + }, + "fuel/e85": { + "label": "E85-öt árul" + }, + "fuel/lpg": { + "label": "Propánt árul" + }, + "fuel/octane_91": { + "label": "Normál benzint árul" + }, + "fuel/octane_98": { + "label": "Prémium benzint árul" + }, "generator/method": { "label": "Módszer" }, @@ -630,12 +693,18 @@ "generator/type": { "label": "Típus" }, + "handicap": { + "placeholder": "1-18" + }, "highway": { "label": "Típus" }, "historic": { "label": "Típus" }, + "hoops": { + "placeholder": "1, 2, 4..." + }, "iata": { "label": "IATA" }, @@ -645,14 +714,22 @@ "incline": { "label": "Lejtés" }, + "information": { + "label": "Típus" + }, "internet_access": { "label": "Internetelérés", "options": { + "yes": "Igen", + "no": "Nem", "wlan": "WiFi", - "wired": "vezetékes", - "terminal": "munkaállomás" + "wired": "Vezetékes", + "terminal": "Munkaállomás" } }, + "lamp_type": { + "label": "Típus" + }, "landuse": { "label": "Típus" }, @@ -666,6 +743,9 @@ "leisure": { "label": "Típus" }, + "length": { + "label": "Hosszúság (méterben)" + }, "levels": { "label": "Szintek", "placeholder": "2, 4, 6..." @@ -683,6 +763,24 @@ "label": "Sebességhatár", "placeholder": "30, 50, 70..." }, + "mtb/scale": { + "label": "Mountainbike nehézség", + "placeholder": "0, 1, 2, 3..." + }, + "mtb/scale/imba": { + "label": "IMBA útvonal nehézség", + "placeholder": "Egyszerű, közepes, nehéz", + "options": { + "0": "Legyegyszerűbb (fehér kör)", + "1": "Egyszerű (zöld kör)", + "2": "Közepes (kék négyzet)", + "3": "Nehéz (fekete gyémánt)", + "4": "Extrém nehéz (dupla fekete gyémánt)" + } + }, + "mtb/scale/uphill": { + "placeholder": "0, 1, 2, 3..." + }, "name": { "label": "Név", "placeholder": "Közismert név (ha van)" @@ -700,12 +798,19 @@ "label": "Típus" }, "oneway": { - "label": "Egyirányú" + "label": "Egyirányú", + "options": { + "undefined": "Feltételezzük, hogy nem egyirányú", + "yes": "Igen", + "no": "Nem" + } }, "oneway_yes": { "label": "Egyirányú", "options": { - "yes": "igen" + "undefined": "Feltételezzük, hogy egyirányú", + "yes": "Igen", + "no": "Nem" } }, "opening_hours": { @@ -714,13 +819,19 @@ "operator": { "label": "Üzemeltető" }, + "par": { + "placeholder": "3, 4, 5..." + }, "park_ride": { "label": "P+R" }, "parking": { "label": "Típus", "options": { - "surface": "Felület" + "surface": "Felület", + "multi-storey": "Többszintű", + "underground": "Aluljáró", + "lane": "Útmenti sáv" } }, "phone": { @@ -728,10 +839,20 @@ "placeholder": "+36 1 123 45 67" }, "piste/difficulty": { - "label": "Nehézség" + "label": "Nehézség", + "placeholder": "Kezdő, középhaladó, haladó", + "options": { + "easy": "Egyszerű (zöld kör)", + "intermediate": "Közepes (kék négyzet)", + "advanced": "Haladó (fekete gyémánt)", + "expert": "Profi (dupla fekete gyémánt)" + } }, "piste/grooming": { - "label": "Kezelés" + "label": "Kezelés", + "options": { + "classic": "Klasszikus" + } }, "piste/type": { "label": "Típus", @@ -775,6 +896,9 @@ "restriction": { "label": "Típus" }, + "restrictions": { + "label": "Kanyarodási korlátozások" + }, "route": { "label": "Típus" }, @@ -798,7 +922,13 @@ }, "smoking": { "label": "Dohányzó", + "placeholder": "Nem, Elkülönített helyen, Igen", "options": { + "no": "Mindenhol tilos", + "separated": "Egy légtérben dohányzó és nemdohányzó részek", + "isolated": "Teljesen elkülönített dohányzórész", + "outside": "Az épületen kívül engedélyezett", + "yes": "Mindenhol engedélyezett", "dedicated": "Dohányzóknak ( pl. Dohányzó Klub, Közösségi dohányzóhely) " } }, @@ -811,6 +941,9 @@ "sport_ice": { "label": "Sport" }, + "sport_racing": { + "label": "Sport" + }, "structure": { "label": "Szerkezet", "placeholder": "Ismeretlen", @@ -818,7 +951,8 @@ "bridge": "Híd", "tunnel": "Alagút", "embankment": "Töltés", - "cutting": "Bevágás" + "cutting": "Bevágás", + "ford": "Gázló" } }, "studio_type": { @@ -831,7 +965,10 @@ "label": "Felület" }, "toilets/disposal": { - "label": "Kezelés" + "label": "Kezelés", + "options": { + "chemical": "Vegyi anyag" + } }, "tourism": { "label": "Típus" @@ -933,14 +1070,16 @@ "name": "Forgalmi előtér" }, "aeroway/gate": { - "name": "Reptér kapu" + "name": "Reptér kapu", + "terms": "reptéri kapu" }, "aeroway/hangar": { "name": "Hangár", "terms": "hangár" }, "aeroway/helipad": { - "name": "Helikopter leszállóhely" + "name": "Helikopter leszállóhely", + "terms": "heliport, helikopter leszálló" }, "aeroway/runway": { "name": "Kifutópálya", @@ -950,7 +1089,8 @@ "name": "Gurulóút" }, "aeroway/terminal": { - "name": "Utasterminál" + "name": "Utasterminál", + "terms": "terminál" }, "amenity": { "name": "Ismeretlen típusú szolgáltatás" @@ -976,7 +1116,8 @@ "terms": "tábortűz,grill,piknik,tűzrakó" }, "amenity/bench": { - "name": "Pad" + "name": "Pad", + "terms": "pad" }, "amenity/bicycle_parking": { "name": "Kerékpárparkoló", @@ -1015,7 +1156,8 @@ "terms": "gépkocsi - gépjármű - személygépkocsi -személygépjármű, automobil - jármű - verda -kocsi - járgány - tragacs MOSÓ" }, "amenity/charging_station": { - "name": "elektronikus töltőállomás,elmű töltőoszlop,e-mobility állomás,áram töltő,akkumlátor töltő,elektromos autó," + "name": "elektronikus töltőállomás,elmű töltőoszlop,e-mobility állomás,áram töltő,akkumlátor töltő,elektromos autó,", + "terms": "töltőállomás" }, "amenity/childcare": { "name": "Bölcsőde", @@ -1093,7 +1235,8 @@ "terms": "könyvkölcsönző, kölcsönkönyvtár, közkönyvtár" }, "amenity/marketplace": { - "name": "Piac" + "name": "Piac", + "terms": "piac, üzlet" }, "amenity/nightclub": { "name": "Night Club - Éjszakai bár - diszkó", @@ -1103,6 +1246,9 @@ "name": "Parkoló", "terms": "parkolóház" }, + "amenity/parking_entrance": { + "terms": "parkológarázs bejárat/kijárat" + }, "amenity/pharmacy": { "name": "Gyógyszertár", "terms": "gyógyszertár, gyógyszerész,pharmaceutist,patika,pharma,drogéria,gyógyszer,orvosság, pirula, tabletta, kapszula, medicina, gyógyír, ellenszer,gyógy" @@ -1124,14 +1270,16 @@ "terms": "imaház,ortodox zsidó, zsinagóga," }, "amenity/place_of_worship/muslim": { - "name": "Mecset" + "name": "Mecset", + "terms": "Minaret" }, "amenity/police": { "name": "Rendőrség", "terms": "rendőr,csendőr,börtön,fakabát, közrendőr, hekus, zsaru, zsernyák, kopó, jard,közlekedésrendészet,rendészet,nyomozó,kapitányság" }, "amenity/post_box": { - "name": "Postaláda" + "name": "Postaláda", + "terms": "Postaláda" }, "amenity/post_office": { "name": "Posta", @@ -1160,7 +1308,8 @@ "terms": "fedett, fedél, esőház, esőkunyhó, menedékház" }, "amenity/social_facility": { - "name": "szociális szolgáltatás" + "name": "szociális szolgáltatás", + "terms": "Szociális intézmény" }, "amenity/social_facility/food_bank": { "name": " Élelmiszerbank ", @@ -1183,7 +1332,8 @@ "terms": "úszómedence, uszoda," }, "amenity/taxi": { - "name": "Taxiállomás" + "name": "Taxiállomás", + "terms": "Taxiállomás" }, "amenity/telephone": { "name": "Nyilvános telefon", @@ -1214,13 +1364,16 @@ "terms": "Állatorvos, Állatorvosi rendelő" }, "amenity/waste_basket": { - "name": "Szemetes" + "name": "Szemetes", + "terms": "szemeteskosár" }, "area": { - "name": "Terület" + "name": "Terület", + "terms": "terület" }, "barrier": { - "name": "Akadály" + "name": "Akadály", + "terms": "akadály" }, "barrier/block": { "name": "Torlasz" @@ -1233,22 +1386,27 @@ "terms": "tehénrács, marha rács" }, "barrier/city_wall": { - "name": "Városfal" + "name": "Városfal", + "terms": "városfal" }, "barrier/cycle_barrier": { - "name": "Kerékpáros akadály" + "name": "Kerékpáros akadály", + "terms": "bicikli akadály" }, "barrier/ditch": { "name": "Árok" }, "barrier/entrance": { - "name": "Bejárat" + "name": "Bejárat", + "terms": "Bejárat" }, "barrier/fence": { - "name": "Kerítés" + "name": "Kerítés", + "terms": "Kerítés" }, "barrier/gate": { - "name": "Kapu" + "name": "Kapu", + "terms": "Kapu" }, "barrier/hedge": { "name": "Sövény" @@ -1269,7 +1427,8 @@ "name": "Fizetőkapu" }, "barrier/wall": { - "name": "Fal" + "name": "Fal", + "terms": "Fal" }, "boundary/administrative": { "name": "Adminisztratív határvonal" @@ -1279,7 +1438,8 @@ "terms": "építmény, ház, lakás," }, "building/apartments": { - "name": "Lakások" + "name": "Lakások", + "terms": "Lakások, apartmanok" }, "building/barn": { "name": "Pajta", @@ -1310,7 +1470,8 @@ "terms": "Főiskolai felsőoktatási intézmény" }, "building/commercial": { - "name": "Kereskedelmi épület" + "name": "Kereskedelmi épület", + "terms": "Kereskedelmi épület" }, "building/construction": { "name": "Ház építés alatt", @@ -1320,8 +1481,12 @@ "name": "Kollégium", "terms": "Kollégium, Diákszálló, Diákotthon" }, + "building/entrance": { + "terms": "Bejárat/kijárat" + }, "building/garage": { - "name": "Garázs" + "name": "Garázs", + "terms": "Garázs" }, "building/garages": { "name": "Garazsak", @@ -1340,7 +1505,8 @@ "terms": "Hotel épület" }, "building/house": { - "name": "Ház" + "name": "Ház", + "terms": "Ház" }, "building/hut": { "name": "Kunyhó" @@ -1421,6 +1587,14 @@ "name": "Catering-Partyszerviz", "terms": "Catering, Partyszerviz, Rendezvényszervező " }, + "craft/clockmaker": { + "name": "Órás", + "terms": "Órád" + }, + "craft/dressmaker": { + "name": "Ruhakészítő", + "terms": "Ruhakészítő" + }, "craft/electrician": { "name": "Villanyszerelő", "terms": "Villanyszerelő" @@ -1441,6 +1615,10 @@ "name": "Kulcsos", "terms": "Kulcsos, Kulcskészítő, Kulcsmásoló" }, + "craft/locksmith": { + "name": "Zárjavító", + "terms": "Zárjavító" + }, "craft/optician": { "name": "Optikai labor-műhely", "terms": "Szemész és látásműhely, Optikus műhely, Látszerész műhely, látszerész labor, " @@ -1457,6 +1635,18 @@ "name": "Fotólabor", "terms": "Fotólabor , Fotóműhely , Fotólaboratórium" }, + "craft/plumber": { + "name": "Vízvezeték szerelő", + "terms": "Vízvezeték szerelő" + }, + "craft/roofer": { + "name": "Tetőfedő", + "terms": "Tetőfedő" + }, + "craft/sculpter": { + "name": "Szobrász", + "terms": "Szobrász" + }, "craft/shoemaker": { "name": "Cipész", "terms": "Cipész, Cipőkészítő, Cipőjavító, Suszter, Csizmadia, Varga, Lábbeli készítő és javító mester" @@ -1473,53 +1663,78 @@ "name": "Órás műhely", "terms": "Órakészítő és javító műhely" }, + "craft/winery": { + "name": "Borászat", + "terms": "Borászat" + }, "embankment": { - "name": "Töltés" + "name": "Töltés", + "terms": "Töltés" }, "emergency/ambulance_station": { "name": "Mentőállomás", "terms": "Mentőautó állomás" }, "emergency/fire_hydrant": { - "name": "Tűzcsap" + "name": "Tűzcsap", + "terms": "Tűzcsap" }, "emergency/phone": { "name": "Segélykérő telefon", "terms": "Vészhelyzeti telefon" }, + "entrance": { + "name": "Bejárat/Kijárat", + "terms": "Bejárat/Kijárat" + }, "footway/crossing": { - "name": "Kereszteződés" + "name": "Kereszteződés", + "terms": "Kereszteződés" }, "footway/sidewalk": { "name": "Járda" }, + "golf/hole": { + "name": "Golflyuk", + "terms": "golflyuk" + }, "highway": { - "name": "Közút" + "name": "Közút", + "terms": "Autópálya" }, "highway/bridleway": { "name": "Lovaglóút" }, "highway/bus_stop": { - "name": "Buszmegálló" + "name": "Buszmegálló", + "terms": "Buszmegálló" }, "highway/crossing": { "name": "Gyalogátkelő", "terms": "Gyalogátkelőhely, Zebra" }, "highway/cycleway": { - "name": "Kerékpárút" + "name": "Kerékpárút", + "terms": "Bicikliút" }, "highway/footway": { - "name": "Járda" + "name": "Járda", + "terms": "Járda" }, "highway/living_street": { - "name": "Pihenőút" + "name": "Pihenőút", + "terms": "Pihenő-lakóút" }, "highway/mini_roundabout": { - "name": "Mini körforgalom" + "name": "Mini körforgalom", + "terms": "Mini körforgalom" }, "highway/motorway": { - "name": "Autópálya" + "name": "Autópálya", + "terms": "Autópálya" + }, + "highway/motorway_junction": { + "name": "Autópálya Le/felhajtó / Kijárat" }, "highway/motorway_link": { "name": "Autópálya felhajtó" @@ -1528,31 +1743,48 @@ "name": "Ösvény" }, "highway/pedestrian": { - "name": "Gyalogos" + "name": "Gyalogos", + "terms": "Gyalogos" }, "highway/primary": { - "name": "Főút" + "name": "Főút", + "terms": "Elsőrendű főút" }, "highway/primary_link": { - "name": "Főút felhajtó" + "name": "Főút felhajtó", + "terms": "Elsőrendű főút csatlakozás" + }, + "highway/raceway": { + "name": "Motorsport pálya", + "terms": "Motorsport pály" }, "highway/residential": { - "name": "Lakóút" + "name": "Lakóút", + "terms": "Lakóút" + }, + "highway/rest_area": { + "name": "Pihenő terület", + "terms": "Pihenő terület" }, "highway/road": { - "name": "Ismeretlen út" + "name": "Ismeretlen út", + "terms": "Ismeretlen típusú út" }, "highway/secondary": { - "name": "Összekötőút" + "name": "Összekötőút", + "terms": "Másodrendű főút" }, "highway/secondary_link": { - "name": "Összekötőút felhajtó" + "name": "Összekötőút felhajtó", + "terms": "Másodrendű főút csatlakozás" }, "highway/service": { - "name": "Szervizút" + "name": "Szervizút", + "terms": "Szervizút" }, "highway/service/alley": { - "name": "Sikátor" + "name": "Sikátor", + "terms": "köz" }, "highway/service/drive-through": { "name": "Átjáró" @@ -1567,35 +1799,48 @@ "name": "Parkolóút" }, "highway/steps": { - "name": "Lépcső" + "name": "Lépcső", + "terms": "Lépcsők" }, "highway/stop": { "name": "Stoptábla", "terms": "stop" }, + "highway/street_lamp": { + "name": "Közvilágítási lámpa", + "terms": "Közvilágítási lámpa" + }, "highway/tertiary": { - "name": "Bekötőút" + "name": "Bekötőút", + "terms": "Harmadrendű főút" }, "highway/tertiary_link": { - "name": "Bekötőút felhajtó" + "name": "Bekötőút felhajtó", + "terms": "Harmadrendű főút csatlakozás" }, "highway/track": { - "name": "Földút" + "name": "Földút", + "terms": "Földút" }, "highway/traffic_signals": { - "name": "Jelzőlámpa" + "name": "Jelzőlámpa", + "terms": "Közlekedési lámpa" }, "highway/trunk": { - "name": "Autóút" + "name": "Autóút", + "terms": "Autóút" }, "highway/trunk_link": { - "name": "Autóút felhajtó" + "name": "Autóút felhajtó", + "terms": "Autóút csatlakozás" }, "highway/turning_circle": { - "name": "Forduló" + "name": "Forduló", + "terms": "Forduló" }, "highway/unclassified": { - "name": "Egyéb közút" + "name": "Egyéb közút", + "terms": "Ismeretlen típusú út" }, "historic": { "name": "Történelmi hely" @@ -1604,20 +1849,24 @@ "name": "Régészeti lelőhely" }, "historic/boundary_stone": { - "name": "Határkő" + "name": "Határkő", + "terms": "Határkő" }, "historic/castle": { "name": "Kastély", "terms": "Vár, Palota" }, "historic/memorial": { - "name": "Emlékmű" + "name": "Emlékmű", + "terms": "Emlékhely" }, "historic/monument": { - "name": "Műemlék" + "name": "Műemlék", + "terms": "Szobor" }, "historic/ruins": { - "name": "Romok" + "name": "Romok", + "terms": "Romok" }, "historic/wayside_cross": { "name": "Útmenti kereszt", @@ -1628,10 +1877,12 @@ "terms": "Útmenti szentély" }, "landuse": { - "name": "Területfunkció" + "name": "Területfunkció", + "terms": "Területhasználat" }, "landuse/allotments": { - "name": "Kertek" + "name": "Kertek", + "terms": "Hétvégi telkek" }, "landuse/basin": { "name": "Vízgyűjtő medence" @@ -1641,50 +1892,61 @@ "terms": "Köztemető" }, "landuse/commercial": { - "name": "Irodák" + "name": "Irodák", + "terms": "Kereskedelmi" }, "landuse/construction": { - "name": "Építési terület" + "name": "Építési terület", + "terms": "Építkezés" }, "landuse/farm": { - "name": "Farm" + "name": "Farm", + "terms": "Farm" }, "landuse/farmland": { - "name": "Mezőgazdaság" + "name": "Mezőgazdaság", + "terms": "Mezőgazdasági terület" }, "landuse/farmyard": { "name": "Tanyaudvar" }, "landuse/forest": { - "name": "Erdő" + "name": "Erdő", + "terms": "Erdő" }, "landuse/grass": { - "name": "Fű" + "name": "Fű", + "terms": "Füves terület" }, "landuse/industrial": { - "name": "Iparterület" + "name": "Iparterület", + "terms": "Iparterület" }, "landuse/meadow": { - "name": "Rét" + "name": "Rét", + "terms": "Legelő" }, "landuse/military": { "name": "Katonai", "terms": "Katonai, Honvédségi" }, "landuse/orchard": { - "name": "Gyümölcsös" + "name": "Gyümölcsös", + "terms": "Gyümölcsös" }, "landuse/quarry": { "name": "Kőfejtő" }, "landuse/residential": { - "name": "Lakóövezet" + "name": "Lakóövezet", + "terms": "Lakott terület" }, "landuse/retail": { "name": "Kereskedelem" }, "landuse/vineyard": { - "name": "Szőlős" + "name": "Szőlős", + "terms": "Szőlős terület" }, "leisure": { "name": "Szabadidő" @@ -1701,26 +1963,32 @@ "terms": "Tűzrakó hely" }, "leisure/garden": { - "name": "Kert" + "name": "Kert", + "terms": "Kert" }, "leisure/golf_course": { - "name": "Golfpálya" + "name": "Golfpálya", + "terms": "Golfpály" }, "leisure/marina": { - "name": "Kishajókikötő" + "name": "Kishajókikötő", + "terms": "Kikötő" }, "leisure/park": { - "name": "Park" + "name": "Park", + "terms": "Park" }, "leisure/picnic_table": { "name": "Piknikasztal", "terms": "Piknikasztal" }, "leisure/pitch": { - "name": "Sportpálya" + "name": "Sportpálya", + "terms": "Sportpálya" }, "leisure/pitch/american_football": { - "name": "Amerikai futballpálya" + "name": "Amerikai futballpálya", + "terms": "Amerikai foci pálya" }, "leisure/pitch/baseball": { "name": "Baseballpálya" @@ -1732,31 +2000,46 @@ "name": "Gördeszkapark" }, "leisure/pitch/soccer": { - "name": "Futballpálya" + "name": "Futballpálya", + "terms": "Focipálya" }, "leisure/pitch/tennis": { - "name": "Teniszpálya" + "name": "Teniszpálya", + "terms": "Tenispály" }, "leisure/pitch/volleyball": { - "name": "Röplabdapálya" + "name": "Röplabdapálya", + "terms": "Röplabda pálya" }, "leisure/playground": { - "name": "Játszótér" + "name": "Játszótér", + "terms": "Játszótér" + }, + "leisure/running_track": { + "name": "Fútópálya", + "terms": "Futópálya" }, "leisure/slipway": { "name": "Sólya" }, + "leisure/sports_center": { + "name": "Sportcenter / konditerem", + "terms": "Sportcenter / konditerem" + }, "leisure/stadium": { - "name": "Stadion" + "name": "Stadion", + "terms": "Stadion" }, "leisure/swimming_pool": { - "name": "Úszómedence" + "name": "Úszómedence", + "terms": "Úszómedence" }, "line": { "name": "Vonal" }, "man_made": { - "name": "Építmények" + "name": "Építmények", + "terms": "Ember alkotta" }, "man_made/breakwater": { "name": "Hullámtörő" @@ -1765,13 +2048,15 @@ "name": "Irtás" }, "man_made/embankment": { - "name": "Töltés" + "name": "Töltés", + "terms": "Töltés" }, "man_made/flagpole": { "name": "Zászlórúd" }, "man_made/lighthouse": { - "name": "Világítótorony" + "name": "Világítótorony", + "terms": "Világítótorony" }, "man_made/observation": { "name": "Kilátótorony", @@ -1781,22 +2066,28 @@ "name": "Móló" }, "man_made/pipeline": { - "name": "Csővezeték" + "name": "Csővezeték", + "terms": "Csővezeték" }, "man_made/survey_point": { - "name": "Földmérési alappont" + "name": "Földmérési alappont", + "terms": "Megfigyelőpont" }, "man_made/tower": { - "name": "Torony" + "name": "Torony", + "terms": "Torony" }, "man_made/wastewater_plant": { - "name": "Szennyvíztelep" + "name": "Szennyvíztelep", + "terms": "Szennyvíztisztító üzem" }, "man_made/water_tower": { - "name": "Víztorony" + "name": "Víztorony", + "terms": "Víztorony" }, "man_made/water_works": { - "name": "Vízmű" + "name": "Vízmű", + "terms": "Vízmű" }, "military/airfield": { "name": "Replülőtér" @@ -1805,10 +2096,12 @@ "name": "Barakk" }, "military/bunker": { - "name": "Bunker" + "name": "Bunker", + "terms": "Bunker" }, "military/range": { - "name": "Katonai lőtér" + "name": "Katonai lőtér", + "terms": "Katonai terület" }, "natural": { "name": "Természet" @@ -1817,10 +2110,12 @@ "name": "Öböl" }, "natural/beach": { - "name": "Strand" + "name": "Strand", + "terms": "Strand" }, "natural/cliff": { - "name": "Sziklapárkány" + "name": "Sziklapárkány", + "terms": "Sziklafal" }, "natural/coastline": { "name": "Partvonal" @@ -1833,7 +2128,8 @@ "name": "Gleccser" }, "natural/grassland": { - "name": "Füves terület" + "name": "Füves terület", + "terms": "Mező" }, "natural/heath": { "name": "Fenyér" @@ -1846,34 +2142,42 @@ "terms": "törmeléklejtő, kőfolyás" }, "natural/scrub": { - "name": "Cserjés" + "name": "Cserjés", + "terms": "Bokros" }, "natural/spring": { "name": "Forrás" }, "natural/tree": { - "name": "Fa" + "name": "Fa", + "terms": "Fa" }, "natural/water": { - "name": "Víz" + "name": "Víz", + "terms": "Víz" }, "natural/water/lake": { - "name": "Tó" + "name": "Tó", + "terms": "Tó" }, "natural/water/pond": { "name": "Sólepárló" }, "natural/water/reservoir": { - "name": "Víztározó" + "name": "Víztározó", + "terms": "Víztározó" }, "natural/wetland": { - "name": "Mocsaras terület" + "name": "Mocsaras terület", + "terms": "Mocsaras" }, "natural/wood": { - "name": "Erdő" + "name": "Erdő", + "terms": "Erdő" }, "office": { - "name": "Iroda" + "name": "Iroda", + "terms": "Iroda" }, "office/accountant": { "name": "Könyvelő", @@ -1920,7 +2224,8 @@ "terms": "ügyvéd, bíróság, közjegyző, ügyész" }, "office/newspaper": { - "name": "Újságos" + "name": "Újságos", + "terms": "Újság" }, "office/ngo": { "name": "Civil szervezet" @@ -1944,23 +2249,27 @@ "terms": "gyógyász, gyógyító" }, "office/travel_agent": { - "name": "Utazási iroda" + "name": "Utazási iroda", + "terms": "Utazási iroda" }, "piste": { "name": "Sípálya", "terms": "sífutóút, lesiklópálya" }, "place": { - "name": "Hely" + "name": "Hely", + "terms": "Hely" }, "place/city": { - "name": "Nagyváros" + "name": "Nagyváros", + "terms": "Nagyváros" }, "place/hamlet": { "name": "Falucska" }, "place/island": { - "name": "Sziget" + "name": "Sziget", + "terms": "ziget" }, "place/isolated_dwelling": { "name": "Elszigetelt lakás" @@ -1973,45 +2282,55 @@ "terms": "Környék, Negyed" }, "place/town": { - "name": "Város" + "name": "Város", + "terms": "Város" }, "place/village": { - "name": "Falu" + "name": "Falu", + "terms": "Falu" }, "point": { - "name": "Pont" + "name": "Pont", + "terms": "Pont" }, "power": { - "name": "Energia" + "name": "Energia", + "terms": "Energia" }, "power/generator": { "name": "Áramfejlesztő", "terms": "generátor, erőmű" }, "power/line": { - "name": "Távvezeték" + "name": "Távvezeték", + "terms": "Elektromos vezeték" }, "power/minor_line": { "name": "Elektromos vezeték", "terms": "távvezeték, villanyvezeték, magasfesztültségű vezeték" }, "power/pole": { - "name": "Villanyoszlop" + "name": "Villanyoszlop", + "terms": "Elektromos tartóoszlop" }, "power/sub_station": { - "name": "Áramelosztó-alállomás" + "name": "Áramelosztó-alállomás", + "terms": "Alállomás" }, "power/tower": { - "name": "Kábeltartó torony" + "name": "Kábeltartó torony", + "terms": "Magasfeszültségű torony" }, "power/transformer": { - "name": "Transzformátor" + "name": "Transzformátor", + "terms": "ranszformátor" }, "public_transport/platform": { "name": "Peron" }, "public_transport/stop_position": { - "name": "Megállóhely" + "name": "Megállóhely", + "terms": "Megállási pont" }, "railway": { "name": "Vasút", @@ -2034,7 +2353,8 @@ "terms": "Vasúti megállóhely, Vasúti megálló" }, "railway/level_crossing": { - "name": "Szintbeli kereszteződés" + "name": "Szintbeli kereszteződés", + "terms": "Szintbeli kereszteződés" }, "railway/monorail": { "name": "Egysínű vasút", @@ -2049,23 +2369,28 @@ "terms": "vasúti fel és leszállóhely, vasútmenti járda" }, "railway/rail": { - "name": "Vasút" + "name": "Vasút", + "terms": "Vasútvonal" }, "railway/station": { "name": "Vasútállomás", "terms": "vasúti pályaudvar" }, "railway/subway": { - "name": "Metró" + "name": "Metró", + "terms": "Metró" }, "railway/subway_entrance": { - "name": "Metrólejáró" + "name": "Metrólejáró", + "terms": "Metróbejáraat" }, "railway/tram": { - "name": "Villamos" + "name": "Villamos", + "terms": "Villamos" }, "relation": { - "name": "Kapcsolat" + "name": "Kapcsolat", + "terms": "Kapcsolat" }, "route/ferry": { "name": "Kompút" @@ -2107,7 +2432,8 @@ "terms": "Szaniter, csaptelep és fürdőszoba felszerelés szaküzlet" }, "shop/beauty": { - "name": "Kozmetikus" + "name": "Kozmetikus", + "terms": "Szépségszalon" }, "shop/bed": { "name": "Ágy és matrac bolt", @@ -2203,7 +2529,8 @@ "terms": "Házi Tejtermékek Boltja, Kecsketej bolt. Kézműves tejtermékek boltja" }, "shop/deli": { - "name": "Delikatesz bolt" + "name": "Delikatesz bolt", + "terms": "Delikát" }, "shop/department_store": { "name": "Áruház" @@ -2217,7 +2544,8 @@ "terms": " Száraztisztító" }, "shop/electronics": { - "name": "Elektronikai bolt" + "name": "Elektronikai bolt", + "terms": "Elektromos üzlet" }, "shop/erotic": { "name": "Erotikus bolt", @@ -2242,7 +2570,8 @@ "terms": "Rózsák boltja, Szobanövény bolt, dísznövény és bonsai bolt, virágdísznövények és kaktuszok boltja" }, "shop/frame": { - "name": "Képkeretező bolt" + "name": "Képkeretező bolt", + "terms": "Képkeretes" }, "shop/funeral_directors": { "name": "Temetkezési iroda", @@ -2257,7 +2586,8 @@ "terms": "IKEA bútorok boltja" }, "shop/garden_centre": { - "name": "Kertészet" + "name": "Kertészet", + "terms": "Kertészet" }, "shop/gift": { "name": "Ajándékbolt", @@ -2298,7 +2628,8 @@ "terms": "újságos trafik" }, "shop/kitchen": { - "name": "Konyhatervezési stúdió" + "name": "Konyhatervezési stúdió", + "terms": "Konyhabútor" }, "shop/laundry": { "name": "Mosoda", @@ -2348,7 +2679,8 @@ "terms": "Hangszer és kotta bolt, Hangszerdiszkont" }, "shop/newsagent": { - "name": "újságos" + "name": "újságos", + "terms": "Őjságos" }, "shop/optician": { "name": "Optikus bolt", @@ -2413,7 +2745,8 @@ "terms": "Papír - Írószer és nyomtatván bolt, Papír - írószer és irodaszer kereskedelem, papirbolt, irodaszerbolt" }, "shop/supermarket": { - "name": "Szupermarket" + "name": "Szupermarket", + "terms": "Szupermarket" }, "shop/tailor": { "name": "Szabóüzlet", @@ -2448,7 +2781,8 @@ "terms": "téli és nyári autógumi,gumiabroncs,michelin,continental,bridgestone, goodyear, avon, michelin, nexen, pirelli, dunlop,hankook,négyévszakos gumi,4x4 gumiabroncs, gumiszerelés,terepjáró gumi, transporter gumi, barum, falken, kumho, toyo, semperit, nokian, infinity, debica, fulda, nankang, strial, kormoran, kleber, vredestein, firestone, dayton, bfgoodrich, sava, zetum, uniroyal" }, "shop/vacant": { - "name": "üres üzlethelyiség" + "name": "üres üzlethelyiség", + "terms": "kiadó bolthelyiség" }, "shop/vacuum_cleaner": { "name": "Porszívóbolt", @@ -2480,7 +2814,7 @@ }, "shop/wine": { "name": "Borszaküzlet", - "terms": "Borkereskedés " + "terms": "bor, tokaji,aszú,vöröbor,fehérbor,félédes,chianti, bordói,must," }, "tourism": { "name": "Turizmus" @@ -2493,7 +2827,8 @@ "terms": "Művészeti alkotás, szobor, fafaragás, " }, "tourism/attraction": { - "name": "Turistalátványosság" + "name": "Turistalátványosság", + "terms": "Túrista látványosság" }, "tourism/camp_site": { "name": "Kemping" @@ -2505,55 +2840,94 @@ "name": "Nyaralóház" }, "tourism/guest_house": { - "name": "Vendégház" + "name": "Vendégház", + "terms": "Vendégház" }, "tourism/hostel": { - "name": "Turistaszálló" + "name": "Turistaszálló", + "terms": "Hostel" }, "tourism/hotel": { - "name": "Hotel" + "name": "Hotel", + "terms": "Hotel" }, "tourism/information": { - "name": "Információ" + "name": "Információ", + "terms": "Infomáció" }, "tourism/motel": { - "name": "Motel" + "name": "Motel", + "terms": "Motel" }, "tourism/museum": { - "name": "Múzeum" + "name": "Múzeum", + "terms": "Múzeum" }, "tourism/picnic_site": { - "name": "Piknikezőhely" + "name": "Piknikezőhely", + "terms": "Piknik terület" }, "tourism/theme_park": { - "name": "Vidámpark" + "name": "Vidámpark", + "terms": "vidámpark,élménypark,vurstli " }, "tourism/viewpoint": { - "name": "Kilátóhely" + "name": "Kilátóhely", + "terms": "Kilátópont" }, "tourism/zoo": { - "name": "Állatkert" + "name": "Állatkert", + "terms": "Állatkert" }, "type/boundary": { - "name": "Határvonal" + "name": "Határvonal", + "terms": "Határ" }, "type/boundary/administrative": { "name": "Közigazgatási határ" }, "type/multipolygon": { - "name": "Multipoligon" + "name": "Multipoligon", + "terms": "Multipoligon" }, "type/restriction": { - "name": "Korlátozás" + "name": "Korlátozás", + "terms": "Korlátozás" + }, + "type/restriction/no_left_turn": { + "name": "Tilos balra kanyarodni", + "terms": "Tilos balra kanyarodni" + }, + "type/restriction/no_right_turn": { + "name": "Tilos jobbra kanyarodni", + "terms": "Tilos jobbra kanyarodni" + }, + "type/restriction/no_straight_on": { + "name": "Tilos egyenesen haladni", + "terms": "Tilos egyenesen haladni" + }, + "type/restriction/no_u_turn": { + "name": "Tilos megfordulni", + "terms": "Tilos megfordulni" + }, + "type/restriction/only_left_turn": { + "name": "Csak balra kanyarodás", + "terms": "Csak balra kanyarodás" + }, + "type/restriction/only_right_turn": { + "name": "Csak jobbra kanyarodás", + "terms": "Csak jobbra kanyarodás" }, "type/route": { - "name": "Útvonal" + "name": "Útvonal", + "terms": "Útvonal" }, "type/route/bicycle": { "name": "Kerékpáros útvonal" }, "type/route/bus": { - "name": "Buszútvonal" + "name": "Buszútvonal", + "terms": "Buszvonal" }, "type/route/detour": { "name": "Kerülőút" @@ -2562,38 +2936,46 @@ "name": "Kompútvonal" }, "type/route/foot": { - "name": "Gyalogos útvonal" + "name": "Gyalogos útvonal", + "terms": "Gyalog útvonal" }, "type/route/hiking": { "name": "Turistaút", "terms": "túraút, gyalogtúra" }, "type/route/pipeline": { - "name": "Csővezeték útvonal" + "name": "Csővezeték útvonal", + "terms": "Csővezeték útvonal" }, "type/route/power": { - "name": "Elektromos hálózat útvonala" + "name": "Elektromos hálózat útvonala", + "terms": "Elektromos vezeték útvonal" }, "type/route/road": { "name": "Autóút útvonal" }, "type/route/train": { - "name": "Vonat útvonal" + "name": "Vonat útvonal", + "terms": "Vonat útvonal" }, "type/route/tram": { - "name": "Villamos útvonal" + "name": "Villamos útvonal", + "terms": "Villamos útvonal" }, "type/route_master": { "name": "Route Master" }, "vertex": { - "name": "Egyéb" + "name": "Egyéb", + "terms": "Egyéb" }, "waterway": { - "name": "Vízfolyás" + "name": "Vízfolyás", + "terms": "Vizi út" }, "waterway/canal": { - "name": "Csatorna" + "name": "Csatorna", + "terms": "Csatorna" }, "waterway/dam": { "name": "Gát" @@ -2602,13 +2984,16 @@ "name": "Árok" }, "waterway/drain": { - "name": "Vízelvezető árok" + "name": "Vízelvezető árok", + "terms": "Ér" }, "waterway/river": { - "name": "Folyó" + "name": "Folyó", + "terms": "Folyó" }, "waterway/riverbank": { - "name": "Folyópart" + "name": "Folyópart", + "terms": "Vízpart" }, "waterway/stream": { "name": "Patak" diff --git a/vendor/assets/iD/iD/locales/id.json b/vendor/assets/iD/iD/locales/id.json index 86b45a20c..0b46c1956 100644 --- a/vendor/assets/iD/iD/locales/id.json +++ b/vendor/assets/iD/iD/locales/id.json @@ -425,6 +425,9 @@ "category-rail": { "name": "Rel" }, + "category-restriction": { + "name": "Larangan" + }, "category-road": { "name": "Jalan" }, @@ -458,25 +461,38 @@ "description": "Akses terbatas untuk umum" }, "permissive": { - "title": "Dibolehkan" + "title": "Dibolehkan", + "description": "Akses diperbolehkan sampai batas pemilik membatalkan izin" }, "private": { - "title": "Pribadi" + "title": "Pribadi", + "description": "Akses diperbolehkan hanya dengan perizinan dari pemilik pada tingkatan pribadi" + }, + "designated": { + "title": "Ditunjuk", + "description": "Akses diperbolehkan sesuai dengan tanda atau peraturan lokal yang spesifik" }, "destination": { - "title": "Tujuan" + "title": "Tujuan", + "description": "Akses diperbolehkan hanya untuk mencapai tujuan" } } }, "access_simple": { + "label": "Akses", + "placeholder": "iya" + }, + "access_toilets": { "label": "Akses" }, "address": { "label": "Alamat", "placeholders": { + "housename": "Nama rumah", "housenumber": "123", "street": "Jalan", "city": "Kota", + "postcode": "Kode pos", "place": "Tempat", "hamlet": "Dusun", "suburb": "Kelurahan", @@ -490,16 +506,39 @@ "admin_level": { "label": "Tingkat Admin" }, + "aerialway": { + "label": "Tipe" + }, + "aerialway/access": { + "label": "Akses", + "options": { + "entry": "Masuk", + "exit": "Keluar", + "both": "Keduanya" + } + }, "aerialway/capacity": { + "label": "Kapasitas (perjam)", "placeholder": "500, 2500, 5000..." }, "aerialway/duration": { "label": "Durasi (menit)", "placeholder": "1, 2, 3..." }, + "aerialway/heating": { + "label": "Dipanaskan" + }, "aerialway/occupancy": { + "label": "Hunian", "placeholder": "2, 4, 8..." }, + "aerialway/summer/access": { + "options": { + "entry": "Masuk", + "exit": "Keluar", + "both": "Keduanya" + } + }, "aeroway": { "label": "Tipe" }, @@ -532,7 +571,25 @@ "placeholder": "50, 100, 200..." }, "cardinal_direction": { - "label": "Arah" + "label": "Arah", + "options": { + "N": "Utara", + "E": "Timur", + "S": "Selatan", + "W": "Barat", + "NE": "Timur Laut", + "SE": "Tenggara", + "SW": "Barat Daya", + "NW": "Barat Laut", + "NNE": "Utara-timur laut", + "ENE": "Timur-timur laut", + "ESE": "Timur-tenggara", + "SSE": "Selatan-tenggara", + "SSW": "Selatan-barat daya", + "WSW": "Barat-barat daya", + "WNW": "Barat-barat laut", + "NNW": "Timur-barat laut" + } }, "clock_direction": { "label": "Arah", @@ -553,6 +610,12 @@ "covered": { "label": "Terlindungi" }, + "craft": { + "label": "Tipe" + }, + "crop": { + "label": "Tanaman" + }, "crossing": { "label": "Tipe" }, @@ -568,6 +631,11 @@ "description": { "label": "Deskripsi" }, + "electrified": { + "options": { + "no": "Tidak" + } + }, "elevation": { "label": "Ketinggian" }, @@ -577,6 +645,9 @@ "entrance": { "label": "Tipe" }, + "except": { + "label": "Pengecualian" + }, "fax": { "label": "Faks", "placeholder": "+31 42 123 4567" @@ -585,11 +656,31 @@ "label": "Biaya" }, "fire_hydrant/type": { - "label": "Tipe" + "label": "Tipe", + "options": { + "underground": "Dibawah tanah", + "wall": "Tembok", + "pond": "Kolam" + } }, "fixme": { "label": "Perbaiki Saya" }, + "fuel/biodiesel": { + "label": "Menjual Biodiesel" + }, + "fuel/diesel": { + "label": "Menjual Diesel" + }, + "fuel/e10": { + "label": "Menjual E10" + }, + "fuel/e85": { + "label": "Menjual E85" + }, + "fuel/lpg": { + "label": "Menjual Propana" + }, "generator/method": { "label": "Metode" }, @@ -614,18 +705,27 @@ "incline": { "label": "Lereng" }, + "information": { + "label": "Tipe" + }, "internet_access": { "label": "Akses Internet", "options": { + "yes": "Iya", + "no": "Tidak", "wlan": "Wifi", "wired": "Kabel", "terminal": "Terminal" } }, + "lamp_type": { + "label": "Tipe" + }, "landuse": { "label": "Tipe" }, "lanes": { + "label": "Jalur", "placeholder": "1, 2, 3..." }, "layer": { @@ -651,6 +751,22 @@ "label": "Batas Kecepatan", "placeholder": "40, 50, 60..." }, + "mtb/scale": { + "placeholder": "0, 1, 2, 3..." + }, + "mtb/scale/imba": { + "placeholder": "Mudah, Menengah, Susah...", + "options": { + "0": "Sangat Mudah (lingkaran putih)", + "1": "Mudah (lingkaran hijau)", + "2": "Menengah (kotak biru)", + "3": "Susah (berlian hitam)", + "4": "Sangat Susah (berlian hitam ganda)" + } + }, + "mtb/scale/uphill": { + "placeholder": "0, 1, 2, 3..." + }, "name": { "label": "Nama", "placeholder": "Nama yang umum (jika ada)" @@ -668,10 +784,18 @@ "label": "Tipe" }, "oneway": { - "label": "Satu Arah" + "label": "Satu Arah", + "options": { + "yes": "Iya", + "no": "Tidak" + } }, "oneway_yes": { - "label": "Satu Arah" + "label": "Satu Arah", + "options": { + "yes": "Iya", + "no": "Tidak" + } }, "opening_hours": { "label": "Jam" @@ -679,8 +803,15 @@ "operator": { "label": "Operator" }, + "par": { + "placeholder": "3, 4, 5..." + }, "parking": { - "label": "Tipe" + "label": "Tipe", + "options": { + "surface": "Permukaan", + "underground": "Bawah Tanah" + } }, "phone": { "label": "Telepon", @@ -690,7 +821,10 @@ "label": "Tingkat Kesulitan" }, "piste/type": { - "label": "Tipe" + "label": "Tipe", + "options": { + "playground": "Taman Bermain" + } }, "place": { "label": "Tipe" @@ -770,6 +904,9 @@ "towertype": { "label": "Tipe Tower" }, + "tracktype": { + "label": "Tipe Trek" + }, "tree_type": { "label": "Tipe" }, @@ -858,6 +995,9 @@ "amenity/bbq": { "name": "Barbekyu/Pemanggang" }, + "amenity/bench": { + "name": "Kursi" + }, "amenity/bicycle_parking": { "name": "Parkir Sepeda", "terms": "Parkir Sepeda" @@ -869,6 +1009,9 @@ "amenity/boat_rental": { "name": "Penyewaan Perahu Boat" }, + "amenity/bus_station": { + "name": "Terminal Bus" + }, "amenity/cafe": { "name": "Cafe", "terms": "Warung Kopi" @@ -891,6 +1034,9 @@ "amenity/clock": { "name": "Jam" }, + "amenity/college": { + "name": "Lapangan Kampus" + }, "amenity/courthouse": { "name": "Pengadilan", "terms": "Pengadilan" @@ -1064,12 +1210,18 @@ "building/barn": { "name": "Lumbung" }, + "building/cabin": { + "name": "Kabin" + }, "building/cathedral": { "name": "Katedral" }, "building/church": { "name": "Gereja" }, + "building/college": { + "name": "Bangunan Kampus" + }, "building/commercial": { "name": "Bangunan Komersil" }, @@ -1612,12 +1764,18 @@ "shop/bicycle": { "name": "Toko Sepeda" }, + "shop/books": { + "name": "Toko Buku" + }, "shop/boutique": { "name": "Butik" }, "shop/butcher": { "name": "Penjagalan" }, + "shop/candles": { + "name": "Toko Lilin" + }, "shop/car": { "name": "Dealer Mobil" }, @@ -1627,24 +1785,48 @@ "shop/car_repair": { "name": "Bengkel Mobil" }, + "shop/carpet": { + "name": "Toko Karpet" + }, + "shop/cheese": { + "name": "Toko Keju" + }, "shop/chemist": { "name": "Toko Kimia" }, + "shop/chocolate": { + "name": "Toko Cokelat" + }, "shop/clothes": { "name": "Toko Baju" }, "shop/computer": { "name": "Toko Komputer" }, + "shop/confectionery": { + "name": "Toko Permen" + }, "shop/convenience": { "name": "Toko Kelontong" }, + "shop/copyshop": { + "name": "Tempat Fotokopi" + }, + "shop/cosmetics": { + "name": "Toko Kosmetik" + }, + "shop/craft": { + "name": "Toko Kesenian dan Kerajinan Tangan" + }, "shop/department_store": { "name": "Pasar Swalayan" }, "shop/electronics": { "name": "Toko Elektronik" }, + "shop/fabric": { + "name": "Toko Kain" + }, "shop/florist": { "name": "Toko Bunga" }, @@ -1669,12 +1851,24 @@ "shop/jewelry": { "name": "Toko Perhiasan" }, + "shop/kiosk": { + "name": "Kios Berita" + }, + "shop/kitchen": { + "name": "Toko Desain Interior Dapur" + }, "shop/laundry": { "name": "Laundri" }, + "shop/leather": { + "name": "Toko Kulit" + }, "shop/mall": { "name": "Mall" }, + "shop/medical_supply": { + "name": "Toko Peralatan Medis" + }, "shop/mobile_phone": { "name": "Toko Handphone" }, @@ -1684,12 +1878,30 @@ "shop/music": { "name": "Toko Musik" }, + "shop/newsagent": { + "name": "Toko Majalah/Koran" + }, "shop/optician": { "name": "Optik" }, + "shop/organic": { + "name": "Toko Barang Organik" + }, + "shop/outdoor": { + "name": "Toko Perlengkapan Outdoor" + }, "shop/pet": { "name": "Toko Peliharaan" }, + "shop/photo": { + "name": "Toko Fotografi" + }, + "shop/radiotechnics": { + "name": "Toko Komponen Radio/Elektronik" + }, + "shop/scuba_diving": { + "name": "Toko Perlengkapan Menyelam" + }, "shop/seafood": { "name": "Toko Seafood" }, @@ -1706,6 +1918,15 @@ "name": "Supermarket", "terms": "" }, + "shop/tailor": { + "name": "Tukang Jahit" + }, + "shop/tattoo": { + "name": "Jasa Pembuatan Tato" + }, + "shop/ticket": { + "name": "Penjual Tiket" + }, "shop/toys": { "name": "Toko Mainan" }, @@ -1770,15 +1991,30 @@ "type/multipolygon": { "name": "Banyak-poligon" }, + "type/restriction": { + "name": "Larangan" + }, "type/restriction/no_left_turn": { "name": "Dilarang Berbelok ke Kiri" }, "type/restriction/no_right_turn": { "name": "Dilarang Berbelok ke Kanan" }, + "type/restriction/no_straight_on": { + "name": "Tidak Boleh Lurus" + }, "type/restriction/no_u_turn": { "name": "Dilarang Putar Balik" }, + "type/restriction/only_left_turn": { + "name": "Belok Kiri Saja" + }, + "type/restriction/only_right_turn": { + "name": "Belok Kanan Saja" + }, + "type/restriction/only_straight_on": { + "name": "Dilarang Putar Balik" + }, "type/route": { "name": "Rute" }, diff --git a/vendor/assets/iD/iD/locales/it.json b/vendor/assets/iD/iD/locales/it.json index 381de5b5f..d110f898c 100644 --- a/vendor/assets/iD/iD/locales/it.json +++ b/vendor/assets/iD/iD/locales/it.json @@ -629,6 +629,9 @@ "covered": { "label": "Coperto" }, + "craft": { + "label": "Tipo" + }, "crop": { "label": "Coltura" }, @@ -691,6 +694,33 @@ "fuel": { "label": "Carburante" }, + "fuel/biodiesel": { + "label": "Vendita di biodiesel" + }, + "fuel/diesel": { + "label": "Vendita di diesel" + }, + "fuel/e10": { + "label": "Vendita di carburante E10" + }, + "fuel/e85": { + "label": "Vendita di carburante E85" + }, + "fuel/lpg": { + "label": "Vendita di propano" + }, + "fuel/octane_100": { + "label": "Vendita di carburante da competizione" + }, + "fuel/octane_91": { + "label": "Vendita di carburante normale (87)" + }, + "fuel/octane_95": { + "label": "Vendita di carburante medio (89)" + }, + "fuel/octane_98": { + "label": "Vendita di carburante super (93)" + }, "gauge": { "label": "Scartamento" }, diff --git a/vendor/assets/iD/iD/locales/ja.json b/vendor/assets/iD/iD/locales/ja.json index 73d70f81b..f4ef60e69 100644 --- a/vendor/assets/iD/iD/locales/ja.json +++ b/vendor/assets/iD/iD/locales/ja.json @@ -1310,6 +1310,14 @@ "name": "時計", "terms": "時計" }, + "amenity/college": { + "name": "大学の敷地", + "terms": "キャンパス" + }, + "amenity/community_centre": { + "name": "コミュニティセンター", + "terms": "公民館" + }, "amenity/compressed_air": { "name": "空気入れ", "terms": "空気入れ, エアー調整" @@ -1362,6 +1370,10 @@ "name": "病院の敷地", "terms": "病院の敷地" }, + "amenity/kindergarten": { + "name": "保育園/幼稚園の敷地", + "terms": "幼稚園の敷地, 保育園の敷地" + }, "amenity/library": { "name": "図書館", "terms": "図書館,ライブラリ,ライブラリー" @@ -1450,6 +1462,10 @@ "name": "フードバンク", "terms": "フードバンク" }, + "amenity/social_facility/group_home": { + "name": "老人ホーム", + "terms": "老人ホーム, グループホーム" + }, "amenity/social_facility/homeless_shelter": { "name": "ホームレス緊急一時宿泊施設", "terms": "ホームレス緊急一時宿泊施設, ホームレスシェルター" @@ -1482,6 +1498,10 @@ "name": "役場", "terms": "市役所,区役所,町役場,村役場,市庁" }, + "amenity/university": { + "name": "大学の敷地", + "terms": "大学の敷地, キャンパス" + }, "amenity/vending_machine": { "name": "自動販売機", "terms": "自動販売機" @@ -1602,6 +1622,10 @@ "name": "教会", "terms": "教会" }, + "building/college": { + "name": "大学の建物", + "terms": "大学の建物" + }, "building/commercial": { "name": "オフィスビル", "terms": "オフィスビル" @@ -1654,6 +1678,10 @@ "name": "工場", "terms": "工場" }, + "building/kindergarten": { + "name": "保育園/幼稚園の建物", + "terms": "保育園/幼稚園の建物" + }, "building/public": { "name": "公共施設", "terms": "公共施設" @@ -1702,6 +1730,10 @@ "name": "倉庫", "terms": "倉庫, 蔵" }, + "craft": { + "name": "工房", + "terms": "工房" + }, "craft/basket_maker": { "name": "かご製造所", "terms": "かご,籠" @@ -1882,6 +1914,10 @@ "name": "窓職人", "terms": "窓職人" }, + "craft/winery": { + "name": "ワイナリー", + "terms": "ワイナリー" + }, "embankment": { "name": "土手", "terms": "土手" @@ -2386,6 +2422,10 @@ "name": "給水塔", "terms": "給水塔" }, + "man_made/water_well": { + "name": "井戸", + "terms": "井戸" + }, "man_made/water_works": { "name": "浄水場", "terms": "浄水場" @@ -2730,6 +2770,22 @@ "name": "酒店", "terms": "酒店, 酒屋" }, + "shop/anime": { + "name": "アニメショップ", + "terms": "アニメショップ" + }, + "shop/antiques": { + "name": "古美術品店", + "terms": "古美術品店, アンティークショップ" + }, + "shop/art": { + "name": "アートギャラリー", + "terms": "アートギャラリー" + }, + "shop/baby_goods": { + "name": "赤ちゃん用品店", + "terms": "赤ちゃん用品店, ベビー用品店" + }, "shop/bakery": { "name": "パン屋", "terms": "パン屋, ベーカリー" diff --git a/vendor/assets/iD/iD/locales/lt.json b/vendor/assets/iD/iD/locales/lt.json index b53c1a3e6..177d9f46c 100644 --- a/vendor/assets/iD/iD/locales/lt.json +++ b/vendor/assets/iD/iD/locales/lt.json @@ -71,7 +71,8 @@ "line": "Suapvalinta linija.", "area": "Suapvalintas plotas." }, - "not_closed": "Negalima suapvalinti, nes linija nėra uždara." + "not_closed": "Negalima suapvalinti, nes linija nėra uždara.", + "too_large": "Negalima suapvalinti, nes nepilnai matoma" }, "orthogonalize": { "title": "Statūs kampai", @@ -84,7 +85,8 @@ "line": "Keisti linijos kampus stačiais.", "area": "Keisti ploto kampus stačiais." }, - "not_squarish": "Negalima pakeisti kampų stačiais, nes jie labai nestatūs." + "not_squarish": "Negalima pakeisti kampų stačiais, nes jie labai nestatūs.", + "too_large": "Negalima kvadratizuoti, nes nepilnai matoma" }, "straighten": { "title": "Tiesinti", @@ -95,6 +97,7 @@ }, "delete": { "title": "Ištrinti", + "description": "Ištrinti objektą visam.", "annotation": { "point": "Taškas ištrintas.", "vertex": "Viršūnė pašalinta iš kelio.", @@ -133,7 +136,8 @@ "annotation": "Sujungtos {n} linijos.", "not_eligible": "Šie geoobjektai negali būti sulieti.", "not_adjacent": "Šios linijos negali būti sulietos, nes jos nesusijungia.", - "restriction": "Šių linijų negalima sulieti, nes bent viena iš jų yra ryšio „{relation}“ narė." + "restriction": "Šių linijų negalima sulieti, nes bent viena iš jų yra ryšio „{relation}“ narė.", + "incomplete_relation": "Šie objektai negali būti sujungti, nes ne visi pilnai atsiųsti." }, "move": { "title": "Perkelti", @@ -146,7 +150,8 @@ "area": "Perkeltas plotas.", "multiple": "Perkelti keli objektai." }, - "incomplete_relation": "Šio geoobjekto negalima perkelti, nes jis nėra pilnai atsiųstas." + "incomplete_relation": "Šio geoobjekto negalima perkelti, nes jis nėra pilnai atsiųstas.", + "too_large": "Negalima perkelti, nes nepilnai matomas." }, "rotate": { "title": "Pasukti", @@ -155,7 +160,8 @@ "annotation": { "line": "Linija pasukta.", "area": "Pasuktas plotas." - } + }, + "too_large": "Negalima sukti, nes nepilnai matomas." }, "reverse": { "title": "Atstatyti", @@ -178,6 +184,18 @@ }, "not_eligible": "Linijos negali būti dalinamos ties jų pradžia ar pabaiga.", "multiple_ways": "Čia yra per daug linijų, kurias galima dalinti." + }, + "restriction": { + "help": { + "select": "Spustelėkite, kad pasiringtumėte kelio atkarpą.", + "toggle": "Spustelėkite, kad nustatytumėte posūkio apribojimus.", + "toggle_on": "Spustelėkite, kad pridėtumėte \"{restriction}\" apribojimą.", + "toggle_off": "Spustelėkite, kad panaikintumėte \"{restriction}\" apribojimą." + }, + "annotation": { + "create": "Posūkio apribojimas pridėtas", + "delete": "Posūkio apribojimas panaikintas" + } } }, "undo": { @@ -263,6 +281,7 @@ "percent_brightness": "{opacity}% ryškumas", "none": "Jokio", "custom": "Savas", + "custom_button": "Redaguoti pasirinktiną foną", "fix_misalignment": "Taisyti poziciją", "reset": "iš naujo" }, @@ -314,6 +333,9 @@ "untagged_area": "Plotas be žymų", "many_deletions": "Jūs naikinate {n} objektų. Ar tikrai norite tai padaryti? Tai panaikins objektus iš žemėlapio, kurį visi mato svetainėje openstreetmap.org.", "tag_suggests_area": "Žyma {tag} rodo, kad linija turėtų būti plotas, bet ji nėra plotas", + "untagged_point_tooltip": "Pasirinkite objekto tipą, kuris apibūdina, koks tai taškas yra.", + "untagged_line_tooltip": "Pasirinkite objekto tipą, kuris apibūdina, kokia tai linija yra.", + "untagged_area_tooltip": "Pasirinkite objekto tipą, kuris apibūdina, koks tai plotas yra.", "deprecated_tags": "Pasenusios žymos: {tags}" }, "zoom": { @@ -327,6 +349,11 @@ "zoom": "Rodyti GPX pėdsako plotą", "browse": "Naršyti .gpx failo" }, + "mapillary": { + "tooltip": "Gatvių-lygio nuotraukos iš Mapillary", + "title": "Nuotraukų perdanga (Mapillary)", + "view_on_mapillary": "Žiūrėti šią nuotrauką per Mapillary" + }, "help": { "title": "Pagalba", "help": "# Pagalba\n\nTai yra [OpenStreetMap](http://www.openstreetmap.org/) redaktorius.\nOpenStreetMap - atviras, redaguojamas pasaulio žemėlapis. Galite jį naudoti\nbei keisti duomenis, taip tobulindami atviro kodo ir atvirų duomenų pasaulio\nžemėlapį ir padėdami visiems.\n\nJūsų pakeitimai bus matomi visiems, kas naudoja OpenStreetMap. Norėdami\ndaryti pakeitimus, turėsite susikurti [nemokamą OpenStreetMap paskyrą](https://www.openstreetmap.org/user/new).\n\n[iD redaktorius](http://ideditor.com/) - tai bendruomenės projektas. Programos\nkodas yra atviras, jį galite rasti [GitHub](https://github.com/openstreetmap/iD).\n", @@ -399,6 +426,9 @@ "category-rail": { "name": "Gelžkelis" }, + "category-restriction": { + "name": "Apribojimas" + }, "category-road": { "name": "Kelias" }, @@ -450,13 +480,68 @@ } }, "access_simple": { + "label": "Prieiga", + "placeholder": "taip" + }, + "access_toilets": { "label": "Prieiga" }, "address": { "label": "Adresas", "placeholders": { + "housename": "Namo pavadinimas", + "housenumber": "123", "street": "Gatvė", - "city": "Miestas" + "city": "Miestas", + "postcode": "Pašto kodas", + "place": "Vieta", + "hamlet": "Kaimelis", + "suburb": "Priemiestis", + "subdistrict": "Seniūnija", + "district": "Rajonas", + "province": "Provincija", + "state": "Valstija", + "country": "Valstybė" + } + }, + "admin_level": { + "label": "Administracinis lygis" + }, + "aerialway": { + "label": "Tipas" + }, + "aerialway/access": { + "label": "Prieiga", + "options": { + "entry": "Įėjimas", + "exit": "Išėjimas", + "both": "Abu" + } + }, + "aerialway/bubble": { + "label": "Keltuvas" + }, + "aerialway/capacity": { + "label": "Talpa (per valandą)", + "placeholder": "500, 2500, 5000..." + }, + "aerialway/duration": { + "label": "Trukmė (minutėmis)", + "placeholder": "1, 2, 3..." + }, + "aerialway/heating": { + "label": "Šildomas" + }, + "aerialway/occupancy": { + "label": "Keleivių kiekis", + "placeholder": "2, 4, 8..." + }, + "aerialway/summer/access": { + "label": "Prieiga (vasarai)", + "options": { + "entry": "Įėjimas", + "exit": "Išėjimas", + "both": "Abu" } }, "aeroway": { @@ -465,9 +550,18 @@ "amenity": { "label": "Tipas" }, + "artist": { + "label": "Menininkas" + }, + "artwork_type": { + "label": "Tipas" + }, "atm": { "label": "ATM" }, + "backrest": { + "label": "Atlošas" + }, "barrier": { "label": "Tipas" }, @@ -488,7 +582,25 @@ "placeholder": "50, 100, 200..." }, "cardinal_direction": { - "label": "Kryptis" + "label": "Kryptis", + "options": { + "N": "Šiaurė", + "E": "Rytai", + "S": "Pietūs", + "W": "Vakarai", + "NE": "Šiaurės rytai", + "SE": "Pietryčiai", + "SW": "Pietvakariai", + "NW": "Šiaurės vakarai", + "NNE": "Šiaurės-šiaurės rytų", + "ENE": "Rytų-šiaurės rytų", + "ESE": "Rytų-pietryčių", + "SSE": "Pietų-pietryčių", + "SSW": "Pietų-pietvakarių", + "WSW": "Vakarų-pietvakarių", + "WNW": "Vakarų-šiaurės vakarų", + "NNW": "Šiaurės-šiaurės vakarų" + } }, "clock_direction": { "label": "Kryptis", @@ -506,6 +618,12 @@ "country": { "label": "Šalis" }, + "covered": { + "label": "Padengta" + }, + "craft": { + "label": "Tipas" + }, "crossing": { "label": "Tipas" }, @@ -515,15 +633,31 @@ "denomination": { "label": "Pavadinimas" }, + "denotation": { + "label": "Žymėjimas" + }, "description": { "label": "Aprašymas" }, + "electrified": { + "label": "Elektrifikacija", + "placeholder": "Kontaktinė linija, elektrifikuoti bėgiai...", + "options": { + "contact_line": "Kontaktinė linija", + "rail": "Elektrifikuoti bėgiai", + "yes": "Taip (nepatikslinta)", + "no": "Ne" + } + }, "elevation": { "label": "Aukštis" }, "entrance": { "label": "Tipas" }, + "except": { + "label": "Išimtys" + }, "fax": { "label": "Faksas", "placeholder": "+31 42 123 4567" @@ -532,11 +666,49 @@ "label": "Mokestis" }, "fire_hydrant/type": { - "label": "Tipas" + "label": "Tipas", + "options": { + "underground": "Požeminis", + "wall": "Siena", + "pond": "Kūdra" + } }, "fixme": { "label": "Sutvarkyk Mane" }, + "fuel": { + "label": "Degalai" + }, + "fuel/biodiesel": { + "label": "Parduoda biodyzelį" + }, + "fuel/diesel": { + "label": "Parduoda dyzelį" + }, + "fuel/e10": { + "label": "Parduoda E10" + }, + "fuel/e85": { + "label": "Parduoda E85" + }, + "fuel/lpg": { + "label": "Parduoda propaną" + }, + "fuel/octane_100": { + "label": "Parduoda lenktyninį benziną" + }, + "fuel/octane_91": { + "label": "Parduoda normalų benziną" + }, + "fuel/octane_95": { + "label": "Parduoda vidutinės kokybės benziną" + }, + "fuel/octane_98": { + "label": "Parduoda aukščiausios kokybės benziną" + }, + "gauge": { + "label": "Matuoklis" + }, "generator/method": { "label": "Metodas" }, @@ -546,20 +718,41 @@ "generator/type": { "label": "Tipas" }, + "golf_hole": { + "label": "Nuoroda" + }, + "handicap": { + "placeholder": "1-18" + }, "highway": { "label": "Tipas" }, "historic": { "label": "Tipas" }, + "hoops": { + "label": "Ratlankiai", + "placeholder": "1, 2, 4..." + }, + "incline": { + "label": "Nuolydis" + }, + "information": { + "label": "Tipas" + }, "internet_access": { "label": "Interneto prieiga", "options": { + "yes": "Taip", + "no": "Ne", "wlan": "Belaidis internetas", "wired": "Laidinis internetas", "terminal": "Terminalas" } }, + "lamp_type": { + "label": "Tipas" + }, "landuse": { "label": "Tipas" }, @@ -573,6 +766,9 @@ "leisure": { "label": "Tipas" }, + "length": { + "label": "Ilgis (metrais)" + }, "levels": { "label": "Lygiai", "placeholder": "2, 4, 6..." @@ -590,6 +786,27 @@ "label": "Greičio limitas", "placeholder": "40, 50, 60..." }, + "mtb/scale": { + "label": "Sudėtingumas kalnų dviračiais", + "placeholder": "0, 1, 2, 3...", + "options": { + "0": "0: Kietas žvyrius/suspaustos žemės, jokių kliūčių, platūs vingiai", + "1": "1: Šiek tiek pairusi danga , mažos kliūtys, platūs vingiai" + } + }, + "mtb/scale/imba": { + "placeholder": "Lengvas, vidutinis, sunkus...", + "options": { + "0": "Lengviausias (baltas apskritimas)", + "1": "Lengvas (žalias apskritimas)", + "2": "Vidutinis (mėlynas apskritimas)", + "3": "Sunkus (juodas rombas)", + "4": "Ypač sunkus (dvigubas juodas rombas)" + } + }, + "mtb/scale/uphill": { + "placeholder": "0, 1, 2, 3..." + }, "name": { "label": "Pavadinimas", "placeholder": "Pagrindinis pavadinimas (jeigu yra)" @@ -607,10 +824,20 @@ "label": "Tipas" }, "oneway": { - "label": "Vienpusis eismas" + "label": "Vienpusis eismas", + "options": { + "undefined": "Numatytai, kad Ne", + "yes": "Taip", + "no": "Ne" + } }, "oneway_yes": { - "label": "Vienpusis eismas" + "label": "Vienpusis eismas", + "options": { + "undefined": "Numatytai, kad Taip", + "yes": "Taip", + "no": "Ne" + } }, "opening_hours": { "label": "Valandos" @@ -618,25 +845,61 @@ "operator": { "label": "Operatorius" }, + "par": { + "placeholder": "3, 4, 5..." + }, "park_ride": { "label": "Palik automobilį ir važiuok" }, "parking": { - "label": "Tipas" + "label": "Tipas", + "options": { + "surface": "Danga", + "underground": "Požeminis" + } }, "phone": { "label": "Telefonas", "placeholder": "+31 42 123 4567" }, + "piste/difficulty": { + "label": "Sudėtingumas" + }, + "piste/grooming": { + "options": { + "classic": "Klasikinis" + } + }, + "piste/type": { + "label": "Tipas", + "options": { + "playground": "Vaikų žaidimų aikštelė" + } + }, "place": { "label": "Tipas" }, + "population": { + "label": "Gyventojų skaičius" + }, "power": { "label": "Tipas" }, "railway": { "label": "Tipas" }, + "recycling/cans": { + "label": "Priima skardines" + }, + "recycling/clothes": { + "label": "Priima drabužius" + }, + "recycling/glass": { + "label": "Priima stiklą" + }, + "recycling/paper": { + "label": "Priima popierių" + }, "ref": { "label": "Šaltinis" }, @@ -649,12 +912,18 @@ "restriction": { "label": "Tipas" }, + "restrictions": { + "label": "Posūkio apribojimai" + }, "route": { "label": "Tipas" }, "route_master": { "label": "Tipas" }, + "seasonal": { + "label": "Sezoninis" + }, "service": { "label": "Tipas" }, @@ -667,12 +936,36 @@ "shop": { "label": "Tipas" }, + "sloped_curb": { + "label": "Nužemintas šaligatvis" + }, + "smoking": { + "label": "Rūkymas", + "placeholder": "Ne, Atskirta, Taip...", + "options": { + "no": "Draudžiama rūkyti", + "separated": "Rūkymo vietose, neizoliuota fiziškai", + "isolated": "Rūkymo vietose, fiziškai izoliuota", + "outside": "Leidžiama lauke", + "yes": "Leidžiama visur", + "dedicated": "Skirta rūkantiems (pvz.: rūkančiųjų klubas)" + } + }, + "smoothness": { + "label": "Tikslumas" + }, "source": { "label": "Šaltinis" }, "sport": { "label": "Sportas" }, + "sport_ice": { + "label": "Sportas" + }, + "sport_racing": { + "label": "Sportas" + }, "structure": { "placeholder": "Nežinoma", "options": { @@ -680,6 +973,9 @@ "tunnel": "Tunelis" } }, + "studio_type": { + "label": "Tipas" + }, "surface": { "label": "Paviršius" }, @@ -690,7 +986,20 @@ "label": "Bokšto tipas" }, "trail_visibility": { - "label": "Maršruto matomumas" + "label": "Maršruto matomumas", + "placeholder": "Puikus, Geras, Prastas..." + }, + "tree_type": { + "label": "Tipas" + }, + "trees": { + "label": "Medžiai" + }, + "tunnel": { + "label": "Tunelis" + }, + "vending": { + "label": "Prekių tipas" }, "water": { "label": "Tipas" @@ -705,6 +1014,12 @@ "wetland": { "label": "Tipas" }, + "wheelchair": { + "label": "Važimėlio prieiga" + }, + "width": { + "label": "Plotis (Metrais)" + }, "wikipedia": { "label": "Wikipedia" }, @@ -732,6 +1047,9 @@ "aeroway/runway": { "name": "Pakilimo takas" }, + "aeroway/terminal": { + "name": "Oro uosto terminalas" + }, "amenity": { "name": "Paslaugos" }, @@ -759,6 +1077,12 @@ "amenity/boat_rental": { "name": "Laivų nuoma" }, + "amenity/bureau_de_change": { + "name": "Valiutos keitykla" + }, + "amenity/bus_station": { + "name": "Autobusų stotis" + }, "amenity/cafe": { "name": "Kavinė" }, @@ -771,15 +1095,34 @@ "amenity/car_wash": { "name": "Automobilių plovykla" }, + "amenity/charging_station": { + "name": "Įkrovimo stotelė" + }, "amenity/cinema": { "name": "Kino teatras" }, + "amenity/clinic": { + "name": "Klinika" + }, + "amenity/clock": { + "name": "Laikrodis" + }, + "amenity/college": { + "name": "Kolegijos kiemas" + }, + "amenity/compressed_air": { + "name": "Suspaustas oras" + }, "amenity/courthouse": { "name": "Teismo rūmai" }, "amenity/dentist": { + "name": "Dantistas", "terms": "odontologas,dantistas,stomatologas" }, + "amenity/doctor": { + "name": "Daktaras" + }, "amenity/drinking_water": { "name": "Geriamas vanduo" }, @@ -801,6 +1144,9 @@ "amenity/grave_yard": { "name": "Kapinės" }, + "amenity/hospital": { + "name": "Ligoninės kiemas" + }, "amenity/library": { "name": "Biblioteka" }, @@ -808,6 +1154,12 @@ "name": "Prekyvietė", "terms": "prekyvietė,turgus,turgelis" }, + "amenity/nightclub": { + "name": "Naktinis klubas" + }, + "amenity/parking": { + "name": "Automobilių parkavimas" + }, "amenity/pharmacy": { "name": "Vaistinė" }, @@ -841,12 +1193,24 @@ "amenity/ranger_station": { "name": "Girininkų stotis" }, + "amenity/recycling": { + "name": "Rūšiavimas" + }, "amenity/restaurant": { "name": "Restoranas" }, + "amenity/school": { + "name": "Mokyklos kiemas" + }, "amenity/shelter": { "name": "Pastogė" }, + "amenity/social_facility/food_bank": { + "name": "Maisto bankas" + }, + "amenity/studio": { + "name": "Studija" + }, "amenity/swimming_pool": { "name": "Baseinas" }, @@ -865,9 +1229,15 @@ "amenity/townhall": { "name": "Rotušė" }, + "amenity/university": { + "name": "Universiteto kiemas" + }, "amenity/vending_machine": { "name": "Prekių automatas" }, + "amenity/veterinary": { + "name": "Veterinarija" + }, "amenity/waste_basket": { "name": "Šiukšliadėžė" }, @@ -911,33 +1281,234 @@ "building/apartments": { "name": "Apartamentai" }, + "building/barn": { + "name": "Klėtis", + "terms": "Svirnas, Tvartas" + }, + "building/bunker": { + "name": "Bunkeris" + }, + "building/cathedral": { + "name": "Katedra" + }, + "building/chapel": { + "name": "Koplyčia" + }, + "building/church": { + "name": "Bažnyčia" + }, + "building/college": { + "name": "Kolegijos pastatas" + }, "building/commercial": { "name": "Komercinis pastatas", "terms": "komercinis,pastatas,statinys" }, + "building/construction": { + "name": "Statomas pastatas" + }, + "building/detached": { + "name": "Atskirtas namas" + }, + "building/dormitory": { + "name": "Bendrabutis" + }, + "building/entrance": { + "name": "Įėjimas/Išėjimas" + }, "building/garage": { "name": "Garažas" }, + "building/garages": { + "name": "Garažai" + }, + "building/greenhouse": { + "name": "Šiltnamis" + }, + "building/hospital": { + "name": "Ligoninės pastatas" + }, + "building/hotel": { + "name": "Viešbučio pastatas" + }, "building/house": { "name": "Namas" }, + "building/hut": { + "name": "Namelis" + }, "building/industrial": { "name": "Pramoninis pastatas", "terms": "pramoninis,pastatas,statinys,gamykla,įmonė" }, + "building/kindergarten": { + "name": "Vaikų daržėlio pastatas" + }, + "building/public": { + "name": "Viešasis pastatas" + }, "building/residential": { "name": "Gyvenamasis pastatas", "terms": "gyvenamasis,pastatas,namas,statinys" }, + "building/retail": { + "name": "Mažmeninės prekybos pastatas" + }, + "building/roof": { + "name": "Stogas" + }, + "building/school": { + "name": "Mokyklos pastatas" + }, + "building/shed": { + "name": "Angaras" + }, + "building/stable": { + "name": "Arklidės" + }, + "building/static_caravan": { + "name": "Statiški mobilūs namai" + }, + "building/train_station": { + "name": "Traukinių stotis" + }, + "building/university": { + "name": "Universiteto pastatas" + }, + "building/warehouse": { + "name": "Sandėlis" + }, + "craft/beekeeper": { + "name": "Bitininkas" + }, + "craft/blacksmith": { + "name": "Kalvis" + }, + "craft/boatbuilder": { + "name": "Valčių statytojas" + }, + "craft/bookbinder": { + "name": "Knygrišys" + }, + "craft/brewery": { + "name": "Alaus darykla", + "terms": "Aludarė" + }, + "craft/carpenter": { + "name": "Dailidė" + }, + "craft/clockmaker": { + "name": "Laikrodininkas" + }, + "craft/confectionary": { + "name": "Konditerija" + }, + "craft/dressmaker": { + "name": "Siuvėja" + }, + "craft/electrician": { + "name": "Elektrikas" + }, + "craft/gardener": { + "name": "Sodininkas", + "terms": "Daržininkas" + }, + "craft/handicraft": { + "name": "Rankdarbių meistras" + }, + "craft/jeweler": { + "name": "Juvelyrikas" + }, + "craft/key_cutter": { + "name": "Raktininkas" + }, + "craft/optician": { + "name": "Optikas", + "terms": "Okulistas" + }, + "craft/painter": { + "name": "Tapytojas", + "terms": "Dažytojas,Dailininkas" + }, + "craft/photographer": { + "name": "Fotografas" + }, + "craft/photographic_laboratory": { + "name": "Fotografijos laboratorija", + "terms": "Fotografijos studija" + }, + "craft/plumber": { + "name": "Santechnikas" + }, + "craft/pottery": { + "name": "Keramikos amatininkas", + "terms": "Puodų amatininkas" + }, + "craft/roofer": { + "name": "Stogdengys" + }, + "craft/saddler": { + "name": "Pakinkytojas", + "terms": "Pakinktininkas" + }, + "craft/sawmill": { + "name": "Lentpjūvė" + }, + "craft/scaffolder": { + "name": "Pastolių montuotojas" + }, + "craft/sculpter": { + "name": "Skulptorius" + }, + "craft/shoemaker": { + "name": "Batsiuvys", + "terms": "Kurpius" + }, + "craft/stonemason": { + "name": "Mūrininkas" + }, + "craft/sweep": { + "name": "Kaminkrėtys" + }, + "craft/tailor": { + "name": "Siuvėjas" + }, + "craft/tinsmith": { + "name": "Skardininkas" + }, + "craft/watchmaker": { + "name": "Laikrodininkas" + }, + "craft/window_construction": { + "name": "Langų montavimas" + }, + "craft/winery": { + "name": "Vyninė" + }, + "emergency/ambulance_station": { + "name": "Greitosios pagalbos stotis" + }, "emergency/fire_hydrant": { "name": "Hidrantas" }, "emergency/phone": { "name": "Pagalbos telefonas" }, + "entrance": { + "name": "Įėjimas/Išėjimas" + }, + "footway/crossing": { + "name": "Sankryža" + }, + "footway/crosswalk": { + "name": "Pėsčiųjų perėja" + }, "footway/sidewalk": { "name": "Šaligatvis" }, + "golf/hole": { + "name": "Golfo skylė" + }, "highway": { "name": "Greitkelis" }, @@ -950,6 +1521,9 @@ "highway/crossing": { "name": "Sankryža" }, + "highway/crosswalk": { + "name": "Pėsčiųjų perėja" + }, "highway/cycleway": { "name": "Dviračių takas" }, @@ -968,12 +1542,18 @@ "highway/path": { "name": "Takas" }, + "highway/pedestrian": { + "name": "Pėsčiųjų" + }, "highway/primary": { "name": "Pagrindinis kelias" }, "highway/residential": { "name": "Gyvenamasis kelias" }, + "highway/rest_area": { + "name": "Poilsio zona" + }, "highway/road": { "name": "Nežinomas kelias" }, @@ -986,18 +1566,27 @@ "highway/service/alley": { "name": "Alėja" }, + "highway/service/drive-through": { + "name": "Pravažiavimas" + }, "highway/service/driveway": { "name": "Įvažiavimas" }, "highway/service/emergency_access": { "name": "Pagalbos priėjimas" }, + "highway/services": { + "name": "Aptarnaujantis plotas" + }, "highway/steps": { "name": "Žingsniai" }, "highway/stop": { "name": "Stop ženklas" }, + "highway/street_lamp": { + "name": "Gatvė lempa" + }, "highway/track": { "name": "Kelias" }, @@ -1058,6 +1647,9 @@ "landuse/farm": { "name": "Ūkis" }, + "landuse/farmland": { + "name": "Dirbamos žemės" + }, "landuse/farmyard": { "name": "Sodyba" }, @@ -1070,9 +1662,15 @@ "landuse/industrial": { "name": "Pramoninė" }, + "landuse/landfill": { + "name": "Sąvartynas" + }, "landuse/meadow": { "name": "Pieva" }, + "landuse/military": { + "name": "Karinė" + }, "landuse/orchard": { "name": "Vaismedžių sodas" }, @@ -1091,18 +1689,33 @@ "leisure": { "name": "Laisvalaikis" }, + "leisure/common": { + "name": "Bendros ganyklos" + }, "leisure/dog_park": { "name": "Šunų parkas" }, + "leisure/firepit": { + "name": "Ugniaduobė" + }, "leisure/garden": { "name": "Sodas" }, "leisure/golf_course": { "name": "Golfo aikštynas" }, + "leisure/ice_rink": { + "name": "Čiuožykla" + }, + "leisure/marina": { + "name": "Prieplauka" + }, "leisure/park": { "name": "Parkas" }, + "leisure/picnic_table": { + "name": "Pikniko stalas" + }, "leisure/pitch": { "name": "Sporto aikštelė" }, @@ -1124,6 +1737,12 @@ "leisure/playground": { "name": "Žaidimų aikštelė" }, + "leisure/running_track": { + "name": "Bėgimo takelis" + }, + "leisure/sports_center": { + "name": "Sportas centras / Treniruoklių salė" + }, "leisure/stadium": { "name": "Stadionas" }, @@ -1136,6 +1755,9 @@ "man_made": { "name": "Žmogaus sukurtas" }, + "man_made/flagpole": { + "name": "Vėliavos stiebas" + }, "man_made/lighthouse": { "name": "Švyturys" }, @@ -1148,12 +1770,21 @@ "man_made/pipeline": { "name": "Vamzdynas" }, + "man_made/survey_point": { + "name": "Tyrimų vieta" + }, "man_made/tower": { "name": "Bokštas" }, + "man_made/wastewater_plant": { + "name": "Nuotekų valymo įmonė" + }, "man_made/water_tower": { "name": "Vandens bokštas" }, + "man_made/water_well": { + "name": "Vandens šulinys" + }, "military/bunker": { "name": "Bunkeris" }, @@ -1214,12 +1845,65 @@ "office": { "name": "Biuras" }, + "office/administrative": { + "name": "Administracinis biuras" + }, + "office/architect": { + "name": "Architektas" + }, "office/company": { "name": "Kompanijos kontora" }, + "office/educational_institution": { + "name": "Edukacinis institutas", + "terms": "Mokslo institutas,Mokslo įstaiga" + }, + "office/employment_agency": { + "name": "Įdarbinimo agentūra" + }, + "office/estate_agent": { + "name": "Nekilnojamo turto biuras" + }, + "office/financial": { + "name": "Finansų biuras", + "terms": "Finansų tarnyba" + }, + "office/government": { + "name": "Vyriausybės biuras", + "terms": "Valdžios biuras" + }, + "office/insurance": { + "name": "Draudimo įstaiga" + }, "office/it": { "name": "IT kontora" }, + "office/lawyer": { + "name": "Advokatų kontora" + }, + "office/newspaper": { + "name": "Laikraštis" + }, + "office/physician": { + "name": "Gydytojas", + "terms": "Daktaras" + }, + "office/political_party": { + "name": "Politinė partija" + }, + "office/research": { + "name": "Tyrimų tarnyba" + }, + "office/telecommunication": { + "name": "Telekomunikacijų biuras" + }, + "office/therapist": { + "name": "Terapeutas", + "terms": "Gydytojas" + }, + "office/travel_agent": { + "name": "Kelionių agentūra" + }, "place": { "name": "Vieta" }, @@ -1238,6 +1922,13 @@ "place/locality": { "name": "Vietovė" }, + "place/neighbourhood": { + "name": "Kaiminystė", + "terms": "Apylinkė" + }, + "place/suburb": { + "name": "Miestelis" + }, "place/town": { "name": "Miestelis" }, @@ -1247,6 +1938,9 @@ "point": { "name": "Taškas" }, + "power": { + "name": "Energija" + }, "power/generator": { "name": "Jėgainė" }, @@ -1268,6 +1962,9 @@ "public_transport/platform": { "name": "Platforma" }, + "public_transport/stop_position": { + "name": "Stop pozicija" + }, "railway": { "name": "Geležinkelis" }, @@ -1277,6 +1974,10 @@ "railway/disused": { "name": "Nebenaudojamas geležinkelis" }, + "railway/funicular": { + "name": "Keltuvas", + "terms": "Funikulierius" + }, "railway/level_crossing": { "name": "Vieno lygio susikirtimas" }, @@ -1310,9 +2011,27 @@ "shop/alcohol": { "name": "Alkoholinių gėrimų parduotuvė" }, + "shop/anime": { + "name": "Anime parduotuvė" + }, + "shop/antiques": { + "name": "Atikvarų parduotuvė" + }, + "shop/art": { + "name": "Meno galerija" + }, + "shop/baby_goods": { + "name": "Vaikų prekių parduotuvė" + }, + "shop/bag": { + "name": "Kuprinių/lagaminų parduotuvė" + }, "shop/bakery": { "name": "Kepykla" }, + "shop/bathroom_furnishing": { + "name": "Vonios baldų parduotuvė" + }, "shop/beauty": { "name": "Grožio salonas" }, @@ -1322,24 +2041,69 @@ "shop/bicycle": { "name": "Dviračių parduotuvė" }, + "shop/books": { + "name": "Knygynas" + }, + "shop/boutique": { + "name": "Parduotuvė" + }, "shop/butcher": { "name": "Mėsinė" }, + "shop/candles": { + "name": "Žvakių parduotuvė" + }, + "shop/car": { + "name": "Automobilių prekybos atstovybė" + }, "shop/car_parts": { "name": "Auto dalių parduotuvė" }, "shop/car_repair": { "name": "Auto taisykla" }, + "shop/carpet": { + "name": "Kilimų parduotuvė" + }, + "shop/cheese": { + "name": "Sūrių parduotuvė" + }, + "shop/chemist": { + "name": "Vaistinė" + }, + "shop/chocolate": { + "name": "Šokolado parduotuvė" + }, "shop/clothes": { "name": "Drabužių parduotuvė" }, "shop/computer": { "name": "Kompiuterių parduotuvė" }, + "shop/confectionery": { + "name": "Saldainių parduotuvė" + }, "shop/convenience": { "name": "Savitarnos parduotuvė" }, + "shop/copyshop": { + "name": "Kopijavimo parduotuvė" + }, + "shop/cosmetics": { + "name": "Kosmetikos parduotuvė" + }, + "shop/craft": { + "name": "Meno ir amatų parduotuvė" + }, + "shop/curtain": { + "name": "Užuolaidų parduotuvė" + }, + "shop/dairy": { + "name": "Pieno produktų parduotuvė" + }, + "shop/deli": { + "name": "Gastronomas" + }, "shop/department_store": { "name": "Universalinė parduotuvė" }, @@ -1349,18 +2113,39 @@ "shop/electronics": { "name": "Elektronikos parduotuvė" }, + "shop/erotic": { + "name": "Erotikos parduotuvė" + }, + "shop/fabric": { + "name": "Audinių parduotuvė" + }, + "shop/farm": { + "name": "Produktų stendas" + }, "shop/fishmonger": { "name": "Žuvų pardavėjas" }, "shop/florist": { "name": "Gėlės" }, + "shop/frame": { + "name": "Įrėminimo parduotuvė" + }, + "shop/funeral_directors": { + "name": "Laidojimo namai" + }, + "shop/furnace": { + "name": "Krosnių parduotuvė" + }, "shop/furniture": { "name": "Baldų parduotuvė" }, "shop/gift": { "name": "Dovanų parduotuvė" }, + "shop/greengrocer": { + "name": "Daržovių ir vaisių pardavėjas" + }, "shop/hairdresser": { "name": "Kirpykla", "terms": "kirpykla" @@ -1368,30 +2153,97 @@ "shop/hardware": { "name": "Techninės įrangos parduotuvė" }, + "shop/hearing_aids": { + "name": "Klausos aparatų parduotuvė" + }, + "shop/herbalist": { + "name": "Žolininkas" + }, + "shop/hifi": { + "name": "Hifi parduotuvė" + }, + "shop/interior_decoration": { + "name": "Interjero dekoravimo parduotuvė" + }, "shop/jewelry": { "name": "Juvelyrikos parduotuvė" }, + "shop/kiosk": { + "name": "Naujienų kioskas" + }, + "shop/kitchen": { + "name": "Virtuvės dizaino parduotuvė" + }, "shop/laundry": { "name": "Skalbykla" }, "shop/locksmith": { "name": "Raktininkas" }, + "shop/lottery": { + "name": "Loterijų parduotuvė" + }, "shop/mall": { "name": "Prekybos centras" }, + "shop/massage": { + "name": "Masažo parduotuvė" + }, + "shop/medical_supply": { + "name": "Medicinos reikmenų parduotuvė" + }, "shop/mobile_phone": { "name": "Mobiliųjų telefonų parduotuvė" }, + "shop/money_lender": { + "name": "Pinigų skolintojas" + }, "shop/music": { "name": "Muzikos parduotuvė" }, + "shop/musical_instrument": { + "name": "Muzikos instrumentų parduotuvė" + }, + "shop/newsagent": { + "name": "Laikraščių/žurnalų parduotuvė" + }, "shop/optician": { "name": "Optika" }, + "shop/organic": { + "name": "Ekologiškų prekių parduotuvė", + "terms": "Organinių prekių parduotuvė" + }, + "shop/outdoor": { + "name": "Laisvalaikio parduotuvė" + }, + "shop/paint": { + "name": "Dažų parduotuvė" + }, + "shop/pawnbroker": { + "name": "Lombardas" + }, "shop/pet": { "name": "Augintinių parduotuvė" }, + "shop/photo": { + "name": "Fotografijos parduotuvė" + }, + "shop/pyrotechnics": { + "name": "Fejerverkų parduotuvė" + }, + "shop/radiotechnics": { + "name": "Radijo/elektroninių dalių parduotuvė" + }, + "shop/religion": { + "name": "Religinė parduotuvė" + }, + "shop/scuba_diving": { + "name": "Povandeninio nardymo parduotuvė" + }, + "shop/seafood": { + "name": "Jūros gėrybių parduotuvė" + }, "shop/shoes": { "name": "Batų parduotuvė" }, @@ -1404,6 +2256,15 @@ "shop/supermarket": { "name": "Prekybos centras" }, + "shop/tattoo": { + "name": "Tatuiruočių salonas" + }, + "shop/tea": { + "name": "Arbatos parduotuvė" + }, + "shop/tobacco": { + "name": "Tabako parduotuvė" + }, "shop/toys": { "name": "Žaislų parduotuvė" }, @@ -1419,9 +2280,21 @@ "shop/video": { "name": "Vaizdo prekių parduotuvė" }, + "shop/video_games": { + "name": "Video Žaidimų parduotuvė" + }, + "shop/weapons": { + "name": "Ginklų parduotuvė" + }, + "shop/wine": { + "name": "Vyno parduotuvė" + }, "tourism": { "name": "Turizmas" }, + "tourism/alpine_hut": { + "name": "Kalnų namelis" + }, "tourism/artwork": { "name": "Meno kūrinys" }, @@ -1456,6 +2329,9 @@ "tourism/picnic_site": { "name": "Pikniko stovyklavietė" }, + "tourism/theme_park": { + "name": "Atrakcijonų parkas" + }, "tourism/viewpoint": { "name": "Apžvalgos taškas" }, @@ -1474,6 +2350,24 @@ "type/restriction": { "name": "Apribojimas" }, + "type/restriction/no_left_turn": { + "name": "Jokio sukimo į kairę" + }, + "type/restriction/no_right_turn": { + "name": "Jokio sukimo į dešinę" + }, + "type/restriction/no_u_turn": { + "name": "Jokio apsisukimo" + }, + "type/restriction/only_left_turn": { + "name": "Sukimas tik į kairę" + }, + "type/restriction/only_right_turn": { + "name": "Sukimas tik į dešinę" + }, + "type/restriction/only_straight_on": { + "name": "Jokių posūkių" + }, "type/route": { "name": "Maršrutas" }, @@ -1498,6 +2392,18 @@ "type/route/pipeline": { "name": "Vamzdyno maršrutas" }, + "type/route/power": { + "name": "Energijos maršrutas" + }, + "type/route/road": { + "name": "Kelio maršrutas" + }, + "type/route/train": { + "name": "Traukinio maršrutas" + }, + "type/route/tram": { + "name": "Tramvajaus maršrutas" + }, "vertex": { "name": "Kita" }, diff --git a/vendor/assets/iD/iD/locales/nl.json b/vendor/assets/iD/iD/locales/nl.json index 5b2a795e8..7f8dcb75c 100644 --- a/vendor/assets/iD/iD/locales/nl.json +++ b/vendor/assets/iD/iD/locales/nl.json @@ -297,6 +297,7 @@ "help": "Sla de aanpassingen bij OpenStreetMap op om deze voor andere gebruikers zichtbaar te maken", "no_changes": "Geen aanpassingen om op te slaan.", "error": "Bij het opslaan is een fout opgetreden", + "unknown_error_details": "Controleer of je bent verbonden met het internet.", "uploading": "De aanpassingen worden naar OpenStreetMap geüpload.", "unsaved_changes": "Je hebt niet-opgeslagen aanpassingen" }, diff --git a/vendor/assets/iD/iD/locales/pt-BR.json b/vendor/assets/iD/iD/locales/pt-BR.json index d38692d67..ad9ad1108 100644 --- a/vendor/assets/iD/iD/locales/pt-BR.json +++ b/vendor/assets/iD/iD/locales/pt-BR.json @@ -194,7 +194,7 @@ }, "annotation": { "create": "Adicionada uma restrição de curva", - "delete": "Apagada uma restrição de curva" + "delete": "Excluída uma restrição de curva" } } }, @@ -297,6 +297,7 @@ "help": "Salvar alterações no OpenStreetMap, tornando-as visíveis para outros usuários.", "no_changes": "Sem alterações para salvar.", "error": "Ocorreu um erro ao tentar salvar", + "unknown_error_details": "Por favor, verifique sua conexão com a internet.", "uploading": "Enviando alterações para o OpenStreetMap.", "unsaved_changes": "Você tem alterações não salvas." }, @@ -350,6 +351,11 @@ "zoom": "Aproximar para a trilha GPX", "browse": "Procurar um arquivo .gpx" }, + "mapillary": { + "tooltip": "Fotos de Rua do Mapillary", + "title": "Camada de Fotos (Mapillary)", + "view_on_mapillary": "Ver esta imagem no Mapillary" + }, "help": { "title": "Ajuda", "help": "# Ajuda\n\nEste é um editor para OpenStreetMap (http://www.openstreetmap.org/), o mapa mundial livre e editavel. Você pode usá-lo para adicionar e atualizar de dados em sua área, tornando um mapa mundi de codigo aberto melhor para todos.\nAs edições que você fizer nesse mapa serão visíveis para todos que usam OpenStreetMap. Para fazer uma edição você precisará de uma conta gratuita OpenStreetMap(https://www.openstreetmap.org/user/new).\n\nO editor iD (http://ideditor.com/) é um projeto colaborativo com o código fonte disponível no GitHub(https://github.com/openstreetmap/iD).\n", @@ -492,7 +498,7 @@ "address": { "label": "Endereço", "placeholders": { - "housename": "Complemento", + "housename": "Nome da casa", "housenumber": "123", "street": "Rua", "city": "Município", @@ -624,6 +630,9 @@ "covered": { "label": "Coberto" }, + "craft": { + "label": "Tipo" + }, "crop": { "label": "Cultivo" }, @@ -1219,7 +1228,7 @@ }, "aeroway/helipad": { "name": "Heliponto", - "terms": "Heliponto, ponto de pouso de helicópteros" + "terms": "Heliponto, ponto de pouso de helicópteros, Heliporto" }, "aeroway/runway": { "name": "Pista de Pouso e Decolagem", @@ -1302,7 +1311,8 @@ "terms": "Estação de Recarga, Estação de Carga Elétrica, Tomada de Cargamento, Tomada de Recarga" }, "amenity/childcare": { - "name": "Berçário/Creche" + "name": "Berçário/Creche", + "terms": "Berçário, Creche, Maternal, Jardim de infância, Cuidados infantis" }, "amenity/cinema": { "name": "Cinema", @@ -1316,6 +1326,14 @@ "name": "Relógio", "terms": "Relógio" }, + "amenity/college": { + "name": "Área da faculdade", + "terms": "Faculdade, Universidade, Ensino superior, Graduação" + }, + "amenity/community_centre": { + "name": "Salão de festas e eventos", + "terms": "Centro comunitário, Salão de festas e eventos" + }, "amenity/compressed_air": { "name": "Ar Comprimido", "terms": "Ar Comprimido" @@ -1368,6 +1386,10 @@ "name": "Hospital", "terms": "clínica,sala de emergência,serviço de saúde,hospício,enfermaria,instituição,asilo,sanatório,cirurgia" }, + "amenity/kindergarten": { + "name": "Pré-escola", + "terms": "Pré-escola, Centro de educação infantil, CEI, Jardim de infância" + }, "amenity/library": { "name": "Biblioteca", "terms": "Biblioteca" @@ -1456,6 +1478,10 @@ "name": "Banco de Alimentos", "terms": "Banco de Alimentos" }, + "amenity/social_facility/group_home": { + "name": "Lar de Idosos", + "terms": "Casa de Idosos" + }, "amenity/social_facility/homeless_shelter": { "name": "Abrigo para moradores de rua", "terms": "Refúgio para Desabrigados" @@ -1488,6 +1514,10 @@ "name": "Paço Municipal", "terms": "Prefeitura" }, + "amenity/university": { + "name": "Área Universitária", + "terms": "Área de Universidade" + }, "amenity/vending_machine": { "name": "Máquina de Venda", "terms": "Totem de vendas, Máquina de Venda Automática" @@ -1608,6 +1638,10 @@ "name": "Igreja", "terms": "Igreja" }, + "building/college": { + "name": "Edifício da faculdade", + "terms": "Faculdade, Universidade, Ensino superior, Graduação, Laboratório" + }, "building/commercial": { "name": "Edifício Comercial", "terms": "Edifício Comercial, Prédio Comercial" @@ -1660,6 +1694,10 @@ "name": "Edifício Industrial", "terms": "Edifício Industrial" }, + "building/kindergarten": { + "name": "Edifício da pré-escola", + "terms": "Pré-escola, Centro de educação infantil, CEI, Jardim de infância" + }, "building/public": { "name": "Edifício Público", "terms": "Edifício Público" @@ -1708,6 +1746,9 @@ "name": "Armazém", "terms": "Armazém, Depósito, Almoxarifado" }, + "craft": { + "name": "Artesanato" + }, "craft/basket_maker": { "name": "Cesteiro", "terms": "Cesteiro" @@ -1888,6 +1929,10 @@ "name": "Fabricante de Janelas", "terms": "Janeleiro" }, + "craft/winery": { + "name": "Vinícola", + "terms": "Adega" + }, "embankment": { "name": "Aterro Elevado", "terms": "aterro,terrapleno" @@ -2020,6 +2065,10 @@ "name": "Ligação Primária", "terms": "Acesso Primário, Acesso a Via Primária" }, + "highway/raceway": { + "name": "Pista de Automobilismo", + "terms": "Pista de Corrida de Automóveis, Autódromo, Kartódromo" + }, "highway/residential": { "name": "Via Residencial", "terms": "Via Residencial, Rua Residencial" @@ -2078,7 +2127,7 @@ }, "highway/street_lamp": { "name": "Lampião de rua.", - "terms": "Lampião, Lampião de rua, Revérbero" + "terms": "Lampião, Lampião de rua, Revérbero, Poste de luz" }, "highway/tertiary": { "name": "Via Terciária", @@ -2270,7 +2319,7 @@ }, "leisure/picnic_table": { "name": "Mesa de piquenique", - "terms": "Mesa de Piquenique" + "terms": "Mesa de piquenique, Picnic" }, "leisure/pitch": { "name": "Quadra Esportiva", @@ -2308,6 +2357,10 @@ "name": "Parque Infantil", "terms": "Parquinho, Parque Infantil" }, + "leisure/running_track": { + "name": "Pista de Atletismo", + "terms": "Pista de Corrida" + }, "leisure/slipway": { "name": "Rampa Náutica", "terms": "Rampa Náutica" @@ -2324,6 +2377,9 @@ "name": "Piscina", "terms": "Piscina" }, + "leisure/track": { + "name": "Pista de Corrida (veículos não motorizados)" + }, "line": { "name": "Linha", "terms": "Linha" @@ -2380,6 +2436,10 @@ "name": "Caixa d'Água", "terms": "Caixa d'Água" }, + "man_made/water_well": { + "name": "Poço de água", + "terms": "Poço d'água" + }, "man_made/water_works": { "name": "Estação de Tratamento de Água", "terms": "Estação de Tratamento de Água" @@ -2530,7 +2590,7 @@ }, "office/lawyer": { "name": "Escritório de Advocacia", - "terms": "advocacia" + "terms": "advocacia, advogado, " }, "office/newspaper": { "name": "Escritório de Jornal", @@ -2636,6 +2696,9 @@ "name": "Subestação Elétrica", "terms": "Subestação" }, + "power/substation": { + "name": "Subestação" + }, "power/tower": { "name": "Torre de Alta Tensão", "terms": "Torre de Alta Tensão" @@ -2724,14 +2787,42 @@ "name": "Loja de Licores", "terms": "Loja de Licores" }, + "shop/anime": { + "name": "Loja de animes", + "terms": "Anime, Mangá, Animação japonesa" + }, + "shop/antiques": { + "name": "Loja de Antiguidades", + "terms": "Antiquário" + }, + "shop/art": { + "name": "Galeria de arte", + "terms": "Museu de arte" + }, + "shop/baby_goods": { + "name": "Loja de Artigos para Bebês", + "terms": "Loja de Artigos Infantis, Loja de Roupas Infantis" + }, + "shop/bag": { + "name": "Loja de Bolsas", + "terms": "Loja de Malas, Loja de Bagagens" + }, "shop/bakery": { "name": "Padaria", "terms": "Padaria, Panificadora" }, + "shop/bathroom_furnishing": { + "name": "Loja de Mobiliário para Banheiros", + "terms": "Loja Especializada em Banheiros" + }, "shop/beauty": { "name": "Salão de Beleza", "terms": "Salão de Beleza" }, + "shop/bed": { + "name": "Loja de Camas e Colchões", + "terms": "Loja de Colchões, Loja de Camas" + }, "shop/beverages": { "name": "Loja de Bebidas", "terms": "Loja de Bebidas" @@ -2744,6 +2835,10 @@ "name": "Casa de Apostas", "terms": "Casa de Apostas" }, + "shop/books": { + "name": "Loja de livros", + "terms": "Livraria, Livros, Sebo" + }, "shop/boutique": { "name": "Butique", "terms": "Butique" @@ -2752,6 +2847,10 @@ "name": "Açougue", "terms": "Açougue" }, + "shop/candles": { + "name": "Doceria", + "terms": "Loja de Doces" + }, "shop/car": { "name": "Revenda de Automóveis", "terms": "Concessionária de Automóveis" @@ -2764,10 +2863,22 @@ "name": "Oficina Mecânica", "terms": "Oficina Automotiva" }, + "shop/carpet": { + "name": "Tapeçaria", + "terms": "Loja de Tapetes, Loja de Carpetes" + }, + "shop/cheese": { + "name": "Loja de Queijos", + "terms": "Queijaria" + }, "shop/chemist": { "name": "Loja de Cosméticos e Higiene", "terms": "Loja de Cosméticos e Higiene Pessoal" }, + "shop/chocolate": { + "name": "Loja de Chocolates", + "terms": "Chocolateria" + }, "shop/clothes": { "name": "Loja de Roupas", "terms": "Loja de Roupas, Vestuário" @@ -2776,10 +2887,31 @@ "name": "Loja de Informática", "terms": "Loja de Informática" }, + "shop/confectionery": { + "name": "Doceria", + "terms": "Loja de Doces" + }, "shop/convenience": { "name": "Loja de Conveniência", "terms": "Loja de Conveniência" }, + "shop/copyshop": { + "name": "Copiadora", + "terms": "Loja de cópias" + }, + "shop/cosmetics": { + "name": "Loja de Cosméticos" + }, + "shop/craft": { + "name": "Loja de Artes e Artesanato" + }, + "shop/curtain": { + "name": "Loja de Cortinas" + }, + "shop/dairy": { + "name": "Loja de Laticínios", + "terms": "Leiteria, Laticínios" + }, "shop/deli": { "name": "Delicatessen", "terms": "Delicatessen" @@ -2792,14 +2924,28 @@ "name": "Loja de Ferragens/Bricolagem", "terms": "Loja de Bricolagem, Faça você mesmo" }, + "shop/dry_cleaning": { + "name": "Lavanderia a seco", + "terms": "Tinturaria, Lavanderia, Lavagem a seco" + }, "shop/electronics": { "name": "Loja de Eletrônicos", "terms": "Loja de Eletrônicos" }, + "shop/erotic": { + "name": "Sex Shop", + "terms": "Loja de Artigos Sexuais, Loja de Artigos Eróticos" + }, + "shop/fabric": { + "name": "Loja de Tecidos" + }, "shop/farm": { "name": "Quitanda de Produção Local", "terms": "Quitanda de Produção Local" }, + "shop/fashion": { + "name": "Loja de Moda" + }, "shop/fishmonger": { "name": "Peixaria", "terms": "Peixaria, Frutos do mar" @@ -2808,10 +2954,16 @@ "name": "Floricultura", "terms": "Floricultura" }, + "shop/frame": { + "name": "Loja de Molduras" + }, "shop/funeral_directors": { "name": "Funerária", "terms": "Funerária" }, + "shop/furnace": { + "name": "Loja de Fornos" + }, "shop/furniture": { "name": "Loja de Móveis", "terms": "Loja de Móveis, Decoração" @@ -2836,18 +2988,38 @@ "name": "Loja de Material de Construção", "terms": "Loja de Ferragens, Material de Construção, Loja de Tintas, Loja de Parafusos" }, + "shop/hearing_aids": { + "name": "Loja de Aparelhos Auditivos" + }, + "shop/herbalist": { + "name": "Loja de ervas e plantas", + "terms": "Loja de produtos naturais, Empório, Ervanária, Herbalismo" + }, "shop/hifi": { "name": "Loja de Aparelhos Hi-Fi", "terms": "Loja de Equipamentos de Áudio, Loja de Aparelhos de Alta Fidelidade" }, + "shop/interior_decoration": { + "name": "Loja de Decoração Interior" + }, "shop/jewelry": { "name": "Joalheria", "terms": "Joalheria" }, + "shop/kiosk": { + "name": "Banca de Revistas", + "terms": "Banca de Jornais, Jornaleiro" + }, + "shop/kitchen": { + "name": "Loja de Cozinhas" + }, "shop/laundry": { "name": "Lavanderia", "terms": "Lavanderia" }, + "shop/leather": { + "name": "Loja de Couros" + }, "shop/locksmith": { "name": "Chaveiro", "terms": "Técnico de Chaves e Cadeados, Cópia de Chaves, Conserto de Cadeados" @@ -2860,10 +3032,21 @@ "name": "Centro Comercial", "terms": "Shopping Center, Galeria" }, + "shop/massage": { + "name": "Loja de Massagem" + }, + "shop/medical_supply": { + "name": "Loja de Equipamentos Hospitalares", + "terms": "Loja de Equipamentos Médicos" + }, "shop/mobile_phone": { "name": "Loja de Celulares", "terms": "Loja de Celulares, Loja de Telefones Celulares" }, + "shop/money_lender": { + "name": "Financeira", + "terms": "Casa de Empréstimos, Loja de Empréstimos" + }, "shop/motorcycle": { "name": "Revenda de Motos", "terms": "Concessionária de Motos" @@ -2872,10 +3055,31 @@ "name": "Loja de Instrumentos Musicais", "terms": "Loja de Discos Musicais, Loja de CD's, Loja de Vinil, Loja Musical" }, + "shop/musical_instrument": { + "name": "Loja de Instrumentos Musicais", + "terms": "Loja de Artigos Musicais" + }, + "shop/newsagent": { + "name": "Banca de Revistas", + "terms": "Loja de Revistas, Banca de Jornal, Jornaleiro" + }, "shop/optician": { "name": "Ótica", "terms": "Ótica" }, + "shop/organic": { + "name": "Loja de Alimentos Orgânicos" + }, + "shop/outdoor": { + "name": "Loja de Esportes de Aventura", + "terms": "Loja de Artigos Esportivos, Loja de Acampamento, Acampamento, Aventura, Escalada," + }, + "shop/paint": { + "name": "Loja de Tintas" + }, + "shop/pawnbroker": { + "name": "Loja de Penhoras" + }, "shop/pet": { "name": "Pet Shop", "terms": "Pet Shop" @@ -2884,10 +3088,26 @@ "name": "Loja de Fotografia", "terms": "Loja de Fotografia" }, + "shop/pyrotechnics": { + "name": "Loja de Fogos de Artifício" + }, + "shop/radiotechnics": { + "name": "Loja de Componentes Eletrônicos" + }, + "shop/religion": { + "name": "Loja de Artigos Religiosos" + }, + "shop/scuba_diving": { + "name": "Loja de Equipamentos de Mergulho", + "terms": "Loja de Mergulho" + }, "shop/seafood": { "name": "Loja de frutos do mar", "terms": "Peixaria, Petiscaria, Pescado, Petisqueira" }, + "shop/second_hand": { + "name": "Financeira" + }, "shop/shoes": { "name": "Loja de Calçados", "terms": "Loja de Calçados, Sapataria" @@ -2908,6 +3128,21 @@ "name": "Alfaiate", "terms": "Alfaiate" }, + "shop/tattoo": { + "name": "Estúdio de tatuagem", + "terms": "Tatuagem, Tattoo, Piercing, BodyMod" + }, + "shop/tea": { + "name": "Loja de Chás" + }, + "shop/ticket": { + "name": "Bilheteria", + "terms": "Loja de Tickets, Bilhetes, Entradas" + }, + "shop/tobacco": { + "name": "Tabacaria", + "terms": "Loja de tabaco. Cachimbo. Cigarro, Hookah" + }, "shop/toys": { "name": "Loja de Brinquedos", "terms": "Loja de Brinquedos" @@ -2917,13 +3152,16 @@ "terms": "Agência de Viagens" }, "shop/tyres": { - "name": "Loja de Pneus", - "terms": "Loja de Pneus" + "name": "Loja de pneus", + "terms": "Pneus, Rodas, Borracharia, Vulcanizadora" }, "shop/vacant": { "name": "Loja Desocupada", "terms": "Loja Desocupada" }, + "shop/vacuum_cleaner": { + "name": "Loja de Aspiradores de Pó" + }, "shop/variety_store": { "name": "Loja de Variedades", "terms": "Loja de Variedades" @@ -2932,6 +3170,22 @@ "name": "Loja/Locadora de Vídeos", "terms": "Loja de Vídeos, Locadora de Vídeos, Videolocadora" }, + "shop/video_games": { + "name": "Loja de Vídeogames", + "terms": "Loja de Jogos, Vídeogames" + }, + "shop/water_sports": { + "name": "Loja de Esportes Aquáticos", + "terms": "Loja de Artigos para Natação, Loja de Equipamentos para Esportes Áquáticos, Loja de Esportes Áquáticos" + }, + "shop/weapons": { + "name": "Loja de Armas", + "terms": "Loja de Tiro, Loja de Equipamentos de Tiro" + }, + "shop/window_blind": { + "name": "Loja de Blindagem de Vidros", + "terms": "Loja de Vidros Blindados" + }, "shop/wine": { "name": "Loja de Vinhos", "terms": "Vinícola, Adega" @@ -3004,6 +3258,21 @@ "name": "Zoológico", "terms": "Zoológico" }, + "traffic_calming/bump": { + "name": "Lombada", + "terms": "Lombada tipo I, Lomba, Quebra-mola, Ondulação transversal" + }, + "traffic_calming/hump": { + "name": "Lombada rápida", + "terms": "Lombada tipo II, Lomba, Quebra-mola, Ondulação transversal" + }, + "traffic_calming/rumble_strip": { + "name": "Sonorizador" + }, + "traffic_calming/table": { + "name": "Faixa elevada de pedestres", + "terms": "Travessia elevada de pedestres, Lombada" + }, "type/boundary": { "name": "Fronteira", "terms": "Fronteira" diff --git a/vendor/assets/iD/iD/locales/pt.json b/vendor/assets/iD/iD/locales/pt.json index f09a0e7f3..6e1f300d8 100644 --- a/vendor/assets/iD/iD/locales/pt.json +++ b/vendor/assets/iD/iD/locales/pt.json @@ -2042,7 +2042,7 @@ "terms": "Motorway Junction / Exit, Junção de Autoestradas, Saída de Autoestradas" }, "highway/motorway_link": { - "name": "Nó de ligação a uma Autoestrada", + "name": "Ligação a uma Autoestrada", "terms": "Ligação Autoestrada, Entrada Autoestrada, Saída Autoestrada" }, "highway/path": { @@ -2058,7 +2058,7 @@ "terms": "Primary Road, Estrada Nacional, Rodovia Principal, Estrada Primária, Rodovia Primária, Primário" }, "highway/primary_link": { - "name": "Nó de Ligação a uma Estrada Primária", + "name": "Ligação a uma Estrada Primária", "terms": "Primary Link, Ligação Estrada Nacional, Ligação Rodovia Nacional, Ligação Nacional, Ligação Estrada Principal, Entrada Estrada Nacional, Entrada Rodovia Nacional, Entrada Nacional, Entrada Estrada Nacional, Saída Nacional, Saída Rodovia Nacional, Saída Nacional, Saída Estrada Nacional," }, "highway/raceway": { @@ -2074,7 +2074,7 @@ "terms": "Rest Area, Posto de Descanço" }, "highway/road": { - "name": "Estrada com Classificação Desconhecida", + "name": "Estrada de Tipo Indeterminado", "terms": "Estrada Genérica, Rodovia Genérica, Estrada Desconhecida, Rodovia Desconhecida" }, "highway/secondary": { @@ -2082,7 +2082,7 @@ "terms": "Secondary Road, Estrada Regional, Rodovia Secundária, Secundário" }, "highway/secondary_link": { - "name": "Nó de Ligação a uma Estrada Secundária", + "name": "Ligação a uma Estrada Secundária", "terms": "Secondary Link, Ligação Estrada Regional, Ligação Rodovia Regional, Ligação Regional, Ligação Estrada Secundária, Entrada Estrada Regional, Entrada Rodovia Regional, Entrada Regional, Entrada Estrada Secundária, Saída Regional, Saída Rodovia Regional, Saída Regional, Saída Estrada Secundária" }, "highway/service": { @@ -2130,7 +2130,7 @@ "terms": "Tertiary Road, Estrada Municipal, Caminho Municipal, Rodovia Terciária, Terciário, Caminho Municipal" }, "highway/tertiary_link": { - "name": "Nó de Ligação a uma Estrada Terciária", + "name": "Ligação a uma Estrada Terciária", "terms": "Tertiary Link, Ligação Estrada Municipal, Ligação Rodovia Municipal, Ligação Municipal, Ligação Estrada Terciária, Entrada Estrada Municipal, Entrada Rodovia Municipal, Entrada Municipal, Entrada Estrada Terciária, Saída Municipal, Saída Rodovia Municipal, Saída Municipal, Saída Estrada Municipal" }, "highway/track": { @@ -2146,7 +2146,7 @@ "terms": "Via Reservada a Automóveis e Motociclos, Estrada Reservada a Automóveis e Motociclos, Via Expressa, Via Reservada" }, "highway/trunk_link": { - "name": "Nó de ligação a uma Via Rápida", + "name": "Ligação a uma Via Rápida", "terms": "Ligação Via Rápida, Entrada Via Rápida, Saída Via Rápida, Ligação Via Reservada a Automóveis e Motociclos, Entrada Via Reservada a Automóveis e Motociclos, Saída Via Reservada a Automóveis e Motociclos, Ligação Via Expressa, Entrada Expressa, Saída Via Expressa, Ligação Via Reservada, Entrada Via Reservada, Saída Via Reservada" }, "highway/turning_circle": { diff --git a/vendor/assets/iD/iD/locales/ru.json b/vendor/assets/iD/iD/locales/ru.json index 7f2964823..cf514669a 100644 --- a/vendor/assets/iD/iD/locales/ru.json +++ b/vendor/assets/iD/iD/locales/ru.json @@ -489,7 +489,7 @@ }, "access_simple": { "label": "Доступ", - "placeholder": "да" + "placeholder": "да для всех" }, "access_toilets": { "label": "Доступ" @@ -504,6 +504,9 @@ "postcode": "Почтовый индекс", "place": "Населённый пункт", "hamlet": "Малое село", + "suburb": "Пригород", + "district": "Район", + "province": "Провинция", "state": "Штат", "country": "Страна" } @@ -625,6 +628,9 @@ "covered": { "label": "Крытое" }, + "craft": { + "label": "Тип изделий" + }, "crop": { "label": "Обрезать" }, @@ -645,7 +651,10 @@ }, "electrified": { "label": "Электрификация", + "placeholder": "Контактная линия, электрифицированная линия...", "options": { + "contact_line": "Контактная линия", + "rail": "Электрифицированная линия", "yes": "Да (без уточнения)", "no": "Нет" } @@ -699,6 +708,18 @@ "fuel/lpg": { "label": "Продают пропан" }, + "fuel/octane_100": { + "label": "Продают бензин АИ100" + }, + "fuel/octane_91": { + "label": "Продают бензин АИ91" + }, + "fuel/octane_95": { + "label": "Продают бензин АИ95" + }, + "fuel/octane_98": { + "label": "Продают бензин АИ98" + }, "gauge": { "label": "Колея" }, @@ -788,14 +809,26 @@ "placeholder": "40, 50, 60..." }, "mtb/scale": { + "label": "Сложность трассы для горного велосипеда", "placeholder": "0, 1, 2, 3…" }, + "mtb/scale/imba": { + "label": "Сложность по рейтингу IMBA", + "placeholder": "Лёгкая, средняя, сложная...", + "options": { + "0": "Легчайшая (белый круг)", + "1": "Лёгкая (зелёный круг)", + "2": "Средняя (синий круг)", + "3": "Сложная (чёрный ромб)", + "4": "Экстремально сложная (двойной чёрный круг)" + } + }, "mtb/scale/uphill": { "placeholder": "0, 1, 2, 3…" }, "name": { "label": "Название", - "placeholder": "Разговорное название (если есть)" + "placeholder": "Имя собственное (если есть)" }, "natural": { "label": "Природа" @@ -832,6 +865,7 @@ "label": "Обслуживающая компания" }, "par": { + "label": "Паровое поле", "placeholder": "3, 4, 5..." }, "park_ride": { @@ -853,10 +887,23 @@ "placeholder": "+7 495 1234567" }, "piste/difficulty": { - "label": "Сложность" + "label": "Сложность", + "placeholder": "Простая, средней сложности, высокой сложности...", + "options": { + "novice": "Для начинающих (учебная)", + "easy": "Простейшая (зелёный круг)", + "intermediate": "Средняя (синий квадрат)", + "advanced": "Сложная (чёрный ромб)", + "expert": "Для экспертов (двойной чёрный ромб)", + "freeride": "Фрирайд" + } }, "piste/grooming": { - "label": "Подготовка" + "label": "Подготовка", + "options": { + "classic": "Классическая", + "mogul": "Могул" + } }, "piste/type": { "label": "Тип", @@ -943,7 +990,18 @@ } }, "smoothness": { - "label": "Проходимость" + "label": "Проходимость", + "placeholder": "Ролики, колёса, внедорожники...", + "options": { + "excellent": "Ролики: роликовые коньки, скейтборды", + "good": "Тонкие колёса: гоночные велосипеды", + "intermediate": "Колёса: городские велосипеды, коляски, скутеры", + "bad": "Крепкие колёса: гибридные велосипеды, машины, рикши", + "very_bad": "Большой клиренс: автомобили и малые внедорожники", + "horrible": "Внедорожники: полноценные внедорожники", + "very_horrible": "Специализированные внедорожники: трактора, мотовездеходы, танки, триалбайки", + "impassible": "Непроходимо ни для какой колесной техники" + } }, "social_facility_for": { "placeholder": "Обслуживают бездомных, инвалидов, детей и т. п." @@ -957,6 +1015,9 @@ "sport_ice": { "label": "Спорт" }, + "sport_racing": { + "label": "Вид спорта" + }, "structure": { "label": "Сооружение", "placeholder": "Неизвестно", @@ -981,7 +1042,13 @@ "label": "Тактильное покрытие" }, "toilets/disposal": { - "label": "Тип" + "label": "Тип", + "options": { + "flush": "Унитаз", + "pitlatrine": "Яма / отхожее место", + "chemical": "Химический", + "bucket": "Ведро" + } }, "tourism": { "label": "Тип" @@ -989,8 +1056,20 @@ "towertype": { "label": "Тип башни" }, + "tracktype": { + "label": "Покрытие просёлочных дорог", + "placeholder": "Твердая, скорее твёрдая, мягкая", + "options": { + "grade1": "Твердая: с покрытием, мощение плитами, камнем, кирпичом, укатанный гравий, кирпичный лом", + "grade2": "Скорее твердая: без покрытия, гравий, хорошо укатанный грунт, песок ", + "grade3": "Ровная смесь грунта, песка, гравия ", + "grade4": "Скорее мягкая: укатанный грунт с примесями твёрдых материалов ", + "grade5": "Мягкая: неукатанный грунт, песок, трава " + } + }, "trail_visibility": { - "label": "Видимость" + "label": "Видимость", + "placeholder": "Отличная, хорошая, плохая..." }, "tree_type": { "label": "Тип" @@ -1036,7 +1115,8 @@ "terms": "адрес" }, "aerialway": { - "name": "Подъёмник" + "name": "Подъёмник", + "terms": "Подъёмник, бугель, канатная дорога, ленточный подъёмник, анкерный подъёмник, ковёр, тарелочный подъёмник" }, "aerialway/cable_car": { "name": "Большая кабина (взад-вперёд)" @@ -1058,7 +1138,8 @@ "terms": "тарельчатый подъёмник, тарелочный подъёмник" }, "aerialway/pylon": { - "name": "Опора канатной дороги" + "name": "Опора канатной дороги", + "terms": "Опора канатной дороги, столб канатной дороги, опора, столб" }, "aerialway/rope_tow": { "name": "бугельный подъёмник", @@ -1185,6 +1266,14 @@ "name": "Часы", "terms": "часы, время" }, + "amenity/college": { + "name": "Территория колледжа", + "terms": "пту, техникум, колледж" + }, + "amenity/community_centre": { + "name": "Культурный центр", + "terms": "дом культуры" + }, "amenity/compressed_air": { "name": "Сжатый воздух" }, @@ -1235,6 +1324,10 @@ "amenity/hospital": { "name": "Территория больницы" }, + "amenity/kindergarten": { + "name": "Территория детского сада / ясель", + "terms": "Детский сад, дошкольный сад, ясли, детская площадка" + }, "amenity/library": { "name": "Библиотека", "terms": "библиотека" @@ -1259,7 +1352,7 @@ "terms": "Аптека" }, "amenity/place_of_worship": { - "name": "Храм", + "name": "Место поклонения", "terms": "церковь, храм, мечеть, синагога" }, "amenity/place_of_worship/buddhist": { @@ -1268,7 +1361,7 @@ }, "amenity/place_of_worship/christian": { "name": "Церковь", - "terms": "церковь, храм" + "terms": "храм, часовня, молельня, дом божий, капелла, церковь, кафедрарий, место поклонения, культовое сооружение, святое место, мечеть, собор, синагога" }, "amenity/place_of_worship/jewish": { "name": "Синагога", @@ -1451,40 +1544,52 @@ "building/bunker": { "name": "Бункер" }, + "building/cabin": { + "name": "Хижина", + "terms": "Хижина, халупа, лачуга, хибара" + }, "building/cathedral": { "name": "Собор", "terms": "Собор, Храм" }, "building/chapel": { - "name": "Капелла" + "name": "Капелла", + "terms": "Капела, церковь, храм" }, "building/church": { "name": "Церковь, Храм", "terms": "Церковь, Храм" }, + "building/college": { + "name": "Здание колледжа", + "terms": "пту, техникум, колледж" + }, "building/commercial": { "name": "Деловое здание", "terms": "Деловое здание, Коммерческое здание, Деловая недвижимость" }, "building/construction": { - "name": "Строящееся здание" + "name": "Строящееся здание", + "terms": "стройка, строительство, сооружение" }, "building/detached": { "name": "Отдельностоящий частный жилой дом" }, "building/dormitory": { - "name": "Студенческое общежитие" + "name": "Студенческое общежитие", + "terms": "Общага, общежитие" }, "building/entrance": { "name": "Вход/выход", "terms": "вход, выход" }, "building/garage": { - "name": "Гараж", + "name": "Один гараж", "terms": "гараж, ракушка" }, "building/garages": { - "name": "Гаражи" + "name": "Здания гаражей", + "terms": "Гаражи, гараж, ракушки" }, "building/greenhouse": { "name": "Теплица" @@ -1509,6 +1614,9 @@ "name": "Промышленное здание", "terms": "Промышленное здание, Производственное здание, Индустриальное здание, Цех" }, + "building/kindergarten": { + "name": "Здание детского сада / ясель" + }, "building/public": { "name": "Общественное здание, Общественный центр" }, @@ -1545,60 +1653,62 @@ "terms": "вокзал, ж/д вокзал, железнодорожный вокзал" }, "building/university": { - "name": "Здание университета, института " + "name": "Здание университета, института ", + "terms": "Здание университета, универ, здание института, институт, вуз, здание вуза" }, "building/warehouse": { "name": "Склад", "terms": " склад, складское помещение, товарный склад, пакгауз, хранилище" }, "craft/basket_maker": { - "name": "Корзина", + "name": "Мастер-лозоплёт", "terms": "корзинщик" }, "craft/beekeeper": { - "name": "Пчеловод", + "name": "Мастерская пчеловода", "terms": "пчеловод, пасечник" }, "craft/blacksmith": { - "name": "Кузнец", + "name": "Кузница", "terms": "ковка, кузнец, кузница, кузня" }, "craft/boatbuilder": { "name": "Строительство лодок" }, "craft/bookbinder": { - "name": "Книгосборка", + "name": "Переплётчик книг", "terms": "переплётчик" }, "craft/brewery": { - "name": "Пивоваренный завод" + "name": "Пивоваренный завод", + "terms": "Пивоварня" }, "craft/carpenter": { - "name": "Плотник", + "name": "Мастерская плотника", "terms": "плотник, столяр" }, "craft/carpet_layer": { - "name": "Ковровое покрытие" + "name": "Укладчик ковролина, ковров" }, "craft/caterer": { - "name": "Поставщик" + "name": "Кайтеринг (выездное ресторанное обслуживание)" }, "craft/clockmaker": { - "name": "Часовщик", + "name": "Мастерская часовщика", "terms": "часовщик" }, "craft/confectionary": { - "name": "Кондитерские изделия" + "name": "Мастерская кондитера" }, "craft/dressmaker": { - "name": "Портной" + "name": "Ателье портного" }, "craft/electrician": { - "name": "Электрик", + "name": "Офис электрика", "terms": "электрик" }, "craft/gardener": { - "name": "Садовник", + "name": "Ландшафтный дизайнер или садовник", "terms": "садовник" }, "craft/glaziery": { @@ -1606,7 +1716,7 @@ "terms": "остекление, стекла, стёкла, стекольная мастерская, стекольщик" }, "craft/handicraft": { - "name": "Рукодельник" + "name": "Мастерская рукодельника" }, "craft/hvac": { "name": "Установка кондиционеров" @@ -1615,7 +1725,7 @@ "name": "Изолятор" }, "craft/jeweler": { - "name": "Ювелир", + "name": "Мастерская ювелира", "terms": "ювелир" }, "craft/key_cutter": { @@ -1625,82 +1735,85 @@ "name": "Изготовление ключей" }, "craft/metal_construction": { - "name": "Мателоконструкции" + "name": "Место изготавливания из металлопрофиля" }, "craft/optician": { - "name": "Оптика" + "name": "Мастерская-оптика" }, "craft/painter": { "name": "Маляр" }, "craft/photographer": { - "name": "фотограф", + "name": "Мастерская фотографа", "terms": "фотограф, фото оператор" }, "craft/photographic_laboratory": { "name": "Фотолаборатория" }, "craft/plasterer": { - "name": "Скульптор" + "name": "Скульптор по декоративному гипсу" }, "craft/plumber": { - "name": "Водопроводчик", + "name": "Офис слесаря-сантехника", "terms": "Водопроводчик, сантехник" }, "craft/pottery": { - "name": "Портной" + "name": "Мастерская гончара" }, "craft/rigger": { - "name": "Мачтовая мастерская" + "name": "Верфь или мастерская лодок" }, "craft/roofer": { - "name": "Кровельщик", + "name": "Офис кровельщика", "terms": "кровельщик" }, "craft/saddler": { - "name": "Конюх" + "name": "Мастерская кресел для автомобилей и лодок" }, "craft/sailmaker": { - "name": "Парусный мастер" + "name": "Мастерская парусного мастера" }, "craft/sawmill": { "name": "Лесопилка", "terms": "лесозавод, лесопильня, пилорама, лесопильный завод" }, "craft/scaffolder": { - "name": "Строительные леса" + "name": "Офис строителей строительных лесов" }, "craft/sculpter": { - "name": "Скульптор" + "name": "Мастерская скульптора" }, "craft/shoemaker": { - "name": "Сапожник", + "name": "Мастерская сапожника", "terms": "сапожник, башмачник" }, "craft/stonemason": { - "name": "Каменщик" + "name": "Мастерская каменотёса" }, "craft/sweep": { "name": "Трубочист" }, "craft/tailor": { - "name": "Портной" + "name": "Ателье портного" }, "craft/tiler": { - "name": "Плиточник" + "name": "Офис плиточника" }, "craft/tinsmith": { - "name": "Жестянщик" + "name": "Мастерская жестянщика" }, "craft/upholsterer": { - "name": "Мебельщик" + "name": "Мастерская мебельщика" }, "craft/watchmaker": { - "name": "Часовщик", + "name": "Мастерская часовщика", "terms": "часовщик" }, "craft/window_construction": { - "name": "Оконщик" + "name": "Мастерская оконщика" + }, + "craft/winery": { + "name": "Винокурня" }, "embankment": { "name": "Насыпь", @@ -1980,7 +2093,8 @@ "name": "Сельскохозяйственные угодья" }, "landuse/farmyard": { - "name": "Ферма" + "name": "Ферма", + "terms": "ферма" }, "landuse/forest": { "name": "Лес", @@ -1995,11 +2109,12 @@ "terms": "Промышленная территория, Производственная территория, Промышленное землепользование" }, "landuse/landfill": { - "name": "Свалка" + "name": "Свалка", + "terms": "свалка, отходы" }, "landuse/meadow": { "name": "Луг (пастбище, сенокосный луг)", - "terms": "луг" + "terms": "луг, пашня, пастбище, сенокосный луг" }, "landuse/military": { "name": "Военная территория" @@ -2017,7 +2132,7 @@ "terms": "Жилая территория, Селитебная территория, Жилые земли, Селитебные земли" }, "landuse/retail": { - "name": "Торговля" + "name": "Торговая территория" }, "landuse/vineyard": { "name": "Виноградник", @@ -2166,6 +2281,9 @@ "name": "Водонапорная башня", "terms": "водонапорная башня, водонапорная вышка" }, + "man_made/water_well": { + "name": "Колодец" + }, "man_made/water_works": { "name": "Станция водоподготовки", "terms": "Водозабор" @@ -2182,7 +2300,7 @@ "terms": "Бункер, Подземное убежище, Подземное укрытие" }, "military/range": { - "name": "Военный полигон", + "name": "Военное стрельбище, полигон испытания оружия", "terms": "Военный полигон, Стрельбище" }, "natural": { @@ -2205,6 +2323,9 @@ "name": "Береговая линия", "terms": "береговая линия, побережье" }, + "natural/fell": { + "name": "Лесоповал" + }, "natural/glacier": { "name": "Ледник", "terms": "ледник" @@ -2269,18 +2390,18 @@ "terms": "Бухгалтерская фирма, Бухгалтерский учёт, Аудит" }, "office/administrative": { - "name": "Административное учреждение" + "name": "Местная администрация и надзирающие органы" }, "office/architect": { "name": "Архитектурная мастерская", "terms": "Архитектурная студия, Дизайнерское бюро, Архитектор" }, "office/company": { - "name": "Частная фирма", + "name": "Офис компании или организации", "terms": "Частная компания, Фирма, Организация" }, "office/educational_institution": { - "name": "Учебное заведение" + "name": "Администрация общеобразовательного учреждения" }, "office/employment_agency": { "name": "Кадровое агентство", @@ -2291,11 +2412,10 @@ "terms": "Бюро по недвижимости, Риелтор, Риелторская фирма, Риелторская компания," }, "office/financial": { - "name": "Финансовая организация", "terms": "финансовая организация" }, "office/government": { - "name": "Правительственное учреждение" + "name": "Государственное учреждение" }, "office/insurance": { "name": "Страховая компания", @@ -2330,7 +2450,7 @@ "terms": "Научно-исследовательская организация, Научно-исследовательский институт, Центр передовых исследований и разработки" }, "office/telecommunication": { - "name": "Телеком", + "name": "Офис телекоммуникационной компании", "terms": "Телеком" }, "office/therapist": { @@ -2499,16 +2619,40 @@ "name": "Магазин аниме", "terms": "магазин аниме, аниме, магазин манги, манга, магазин косплея, косплей" }, + "shop/antiques": { + "name": "Магазин антиквариата", + "terms": "атниквариат" + }, + "shop/art": { + "name": "Картинная галерея", + "terms": "магазин искусств, галерея" + }, + "shop/baby_goods": { + "name": "Магазин детских товаров", + "terms": "товары для детей, детский мир, игрушки" + }, + "shop/bag": { + "name": "Магазин сумок и саквояжа", + "terms": "сумка, саквояж, багаж, тележка" + }, "shop/bakery": { "name": "Хлебный", "terms": "Булочная, Хлебный магазин" }, + "shop/bathroom_furnishing": { + "name": "Магазин продающий мебель для ванных комнат", + "terms": "ванная, мебель" + }, "shop/beauty": { "name": "Салон красоты", - "terms": "салон красоты" + "terms": "салон красоты, маникюрный салон, солярий, массаж, спа" + }, + "shop/bed": { + "name": "Магазин матрасов и постельных принадлежностей", + "terms": "матрас, спальные принадлежности, постельное бельё" }, "shop/beverages": { - "name": "Магазин напитков", + "name": "Магазин по продаже алкогольных и безалкогольных напитков", "terms": "Магазин напитков, Продажа напитков" }, "shop/bicycle": { @@ -2516,7 +2660,7 @@ "terms": "Веломагазин" }, "shop/bookmaker": { - "name": "Букмекер", + "name": "Букмекерская контора", "terms": "Букмекер, Ставки, Лототрон, Пари, Лотерея" }, "shop/books": { @@ -2531,6 +2675,10 @@ "name": "Мясной", "terms": "мясной, мясная лавка, мясник" }, + "shop/candles": { + "name": "Свечной магазин", + "terms": "свечи, подсвечники, канделябры" + }, "shop/car": { "name": "Автодилер", "terms": "Автомобильный салон, Диллерский автоцентр " @@ -2543,6 +2691,10 @@ "name": "Автомастерская", "terms": "автомастерская, ремонт авто, станция техобслуживания, автосервис" }, + "shop/carpet": { + "name": "Магазин ковров", + "terms": "ковры" + }, "shop/cheese": { "name": "Магазин сыров", "terms": "магазин сыра, магазин сыров, сыр, сыры, сырный магазин" @@ -2552,7 +2704,8 @@ "terms": "Бытовая химия" }, "shop/chocolate": { - "name": "Магазин шоколада" + "name": "Магазин шоколада", + "terms": "шоколад" }, "shop/clothes": { "name": "Одежда", @@ -2562,28 +2715,65 @@ "name": "Компьютерный магазин", "terms": "Компьютерный магазин" }, + "shop/confectionery": { + "name": "Кондитерская", + "terms": "кондитерская" + }, "shop/convenience": { - "name": "Продуктовый", + "name": "Магазин у дома", "terms": "Продуктовый магазин, Магазин шаговой доступности" }, + "shop/copyshop": { + "name": "Магазин ксерокопирования, печати", + "terms": "ксерокопирование, распечатка текстов" + }, + "shop/cosmetics": { + "name": "Магазин косметики", + "terms": "косметика" + }, + "shop/craft": { + "name": "Магазин художественных принадлежностей", + "terms": "бумага, картон, холсты, краски, карандаши" + }, + "shop/curtain": { + "name": "Магазин штор и драпировок", + "terms": "шторы, драпировки" + }, + "shop/dairy": { + "name": "Магазин молочных продуктов", + "terms": "молочные продукты" + }, "shop/deli": { - "name": "Кулинария", - "terms": "Кулинария, Гастрономия" + "name": "Магазин деликатесов", + "terms": "деликатесы" }, "shop/department_store": { - "name": "Универсам", - "terms": "Универсам" + "name": "Универсальный магазин", + "terms": "универсам, универмаг" }, "shop/doityourself": { "name": "Магазин \"Сделай сам\"", "terms": "Магазин \"Сделай Сам\", Всё для ремонта" }, + "shop/dry_cleaning": { + "name": "Химчистка", + "terms": "химчистка" + }, "shop/electronics": { "name": "Магазин бытовой электроники", "terms": "Магазин бытовой электроники" }, + "shop/erotic": { + "name": "Секс-шоп", + "terms": "секс-игрушки, эротическое, нижнее бельё, контрацептивы, презервативы, латексные салфетки, эротические игры, порнографические фильмы, порнографические журналы" + }, + "shop/fabric": { + "name": "Магазин тканей", + "terms": "ткани, материалы для штор, тюль" + }, "shop/farm": { - "name": "Продуктовый Лоток" + "name": "Магазин свежих продуктов", + "terms": "продуктовый ларёк, арбузы, дыни, овощной, фруктовый" }, "shop/fishmonger": { "name": "Рыбный магазин", @@ -2593,23 +2783,32 @@ "name": "Цветочный", "terms": "Цветочный магазин" }, + "shop/frame": { + "name": "Магазин рамок для фотографий и картин", + "terms": "рамки, картины" + }, "shop/funeral_directors": { - "name": "Бюро похоронных услуг" + "name": "Бюро похоронных услуг", + "terms": "Бюро похоронных услуг, кремация, ритуальные услуги" + }, + "shop/furnace": { + "name": "Магазин систем отопления", + "terms": "водогрейные колонки, горячий пол" }, "shop/furniture": { - "name": "Мебельный", + "name": "Мебельный магазин", "terms": "Мебельный магазин" }, "shop/garden_centre": { "name": "Садовые принадлежности", - "terms": "садовый центр" + "terms": "садовый центр, саженцы, инструменты, удобрения" }, "shop/gift": { - "name": "Подарки", - "terms": "Магазин подарков" + "name": "Магазин сувениров", + "terms": "подарки, поздравительные открытки, сувениры" }, "shop/greengrocer": { - "name": "Овощи, фрукты", + "name": "Магазин овощей и фруктов", "terms": "Овощи-фрукты" }, "shop/hairdresser": { @@ -2620,24 +2819,45 @@ "name": "Хозяйственный магазин", "terms": "Хозяйственный магазин, Хозмаг" }, + "shop/hearing_aids": { + "name": "Магазин по продаже слуховых аппаратов", + "terms": "слуховые аппараты" + }, + "shop/herbalist": { + "name": "Травник", + "terms": "Травник, гербалист, знахарь, собиратель трав, лечебные травы" + }, "shop/hifi": { - "name": "Техника Hi-fi", - "terms": "Техника Hi-fi, Акустика Hi-fi" + "name": "Магазин по продаже Hi-Fi", + "terms": "Техника Hi-fi, Акустика Hi-fi, домашний кинотеатр" + }, + "shop/interior_decoration": { + "name": "Магазин дизайнера интерьеров", + "terms": "интерьер" }, "shop/jewelry": { - "name": "Ювелирный", + "name": "Ювелирный магазин", "terms": "ювелир" }, "shop/kiosk": { - "name": "Новостной киоск", - "terms": "новостной киоск, киоск новостей, киоск с новостями" + "name": "Киоск", + "terms": "новостной киоск, киоск новостей, киоск с новостями, журналы, табачные изделия, газеты, сладости, подарки, открытки" + }, + "shop/kitchen": { + "name": "Магазин продающий мебель для кухни на заказ", + "terms": "кухонная фурнитура, установка кухонь, кухни на заказ, планировка кухни" }, "shop/laundry": { "name": "Прачечная", "terms": "прачечная" }, + "shop/leather": { + "name": "Магазин кожаных изделий", + "terms": "кожа, кожаные куртки, кожаные, кожаная" + }, "shop/locksmith": { - "name": "Изготовление ключей" + "name": "Изготовление ключей", + "terms": "ключи, изготовление ключей" }, "shop/lottery": { "name": "Лотерейный магазин" @@ -2646,10 +2866,21 @@ "name": "Торговый центр", "terms": "Торговый центр, Торговый дом" }, + "shop/massage": { + "name": "Массажный салон", + "terms": "массаж, массажный" + }, + "shop/medical_supply": { + "name": "Медицинские принадлежности" + }, "shop/mobile_phone": { "name": "Мобильные телефоны", "terms": "Салон сотовой связи, Продажа сотовых телефонов" }, + "shop/money_lender": { + "name": "Ростовщик", + "terms": "деньги, быстроденьги" + }, "shop/motorcycle": { "name": "Магазин мотоциклов", "terms": "Магазин мотоциклов, Мотодиллер" @@ -2658,13 +2889,33 @@ "name": "Музыкальный магазин", "terms": "Музыкальный магазин, Аудио салон" }, + "shop/musical_instrument": { + "name": "Магазин музыкальных инструментов", + "terms": "гитары, барабаны, пианино, ноты, струны, песенники" + }, + "shop/newsagent": { + "name": "Магазин предлагающий в основном газеты и журналы", + "terms": "газеты, журналы" + }, "shop/optician": { "name": "Оптика", "terms": "оптика, очки" }, + "shop/outdoor": { + "name": "Магазин снаряжения для активного отдыха", + "terms": "палатки, GPS, туризм, скалолазание" + }, + "shop/paint": { + "name": "Магазин красочных изделий", + "terms": "лаки, краски" + }, + "shop/pawnbroker": { + "name": "Ломбард", + "terms": "ломбард" + }, "shop/pet": { "name": "Зоомагазин", - "terms": "зоомагазин" + "terms": "зоомагазин, для животных" }, "shop/photo": { "name": "Магазин Фототоваров", @@ -2674,10 +2925,26 @@ "name": "Магазин фейерверков", "terms": "магазин фейерверков, фейерверки, магазин пиротехники, пиротехника, магазин петард, петарды, пиротехнический магазин" }, + "shop/radiotechnics": { + "name": "Магазин радиодеталей", + "terms": "радио, радиодетали" + }, + "shop/religion": { + "name": "Религиозная лавка", + "terms": "иконы, ларёк" + }, + "shop/scuba_diving": { + "name": "Магазин подводного плавания", + "terms": "маски, акваланги, кислород" + }, "shop/seafood": { "name": "Морепродукты", "terms": "Морепродукты, Суши, Рыба, Рыбный" }, + "shop/second_hand": { + "name": "Магазин секонд хенда", + "terms": "секондхенд, секонд хенд, секонд" + }, "shop/shoes": { "name": "Обувной", "terms": "Обувной магазин" @@ -2697,10 +2964,22 @@ "shop/tailor": { "name": "Портной" }, + "shop/tattoo": { + "name": "Тату салон", + "terms": "тату, татуировки" + }, "shop/tea": { "name": "Чайный магазин", "terms": "магазин чая, чайный магазин, чайная лавка, лавка чая" }, + "shop/ticket": { + "name": "Билетная касса", + "terms": "концертные билеты, билетная касса, проездные билеты" + }, + "shop/tobacco": { + "name": "Табачный магазин", + "terms": "сигареты, сигары, табак, трубки, табачный магазин" + }, "shop/toys": { "name": "Игрушки", "terms": "магазин игрушек" @@ -2714,7 +2993,12 @@ "terms": "Шины, Покрышки, Автопокрышки, Автошины" }, "shop/vacant": { - "name": "Закрытый магазин" + "name": "Закрытый магазин", + "terms": "зактрытый" + }, + "shop/vacuum_cleaner": { + "name": "Магазин по продаже пылесосов", + "terms": "пылесосы" }, "shop/variety_store": { "name": "Товары по одной цене", @@ -2732,8 +3016,13 @@ "name": "Магазин оружия", "terms": "магазин оружия, оружейный магазин" }, + "shop/window_blind": { + "name": "Магазин продающий шторы, жалюзи", + "terms": "шторы, жалюзи" + }, "shop/wine": { - "name": "Винный магазин" + "name": "Винный магазин", + "terms": "вино, вина" }, "tourism": { "name": "Туризм", @@ -2799,6 +3088,22 @@ "name": "Зоопарк", "terms": "зоопарк" }, + "traffic_calming/bump": { + "name": "Лежачий полицейский", + "terms": "полицейский, лежачий" + }, + "traffic_calming/hump": { + "name": "Широкий лежачий полицейский ", + "terms": "широкий лежачий полицейский " + }, + "traffic_calming/rumble_strip": { + "name": "Стиральная доска", + "terms": "стиральная доска" + }, + "traffic_calming/table": { + "name": "Стол", + "terms": "стол" + }, "type/boundary": { "name": "Граница", "terms": "Граница" diff --git a/vendor/assets/iD/iD/locales/vi.json b/vendor/assets/iD/iD/locales/vi.json index 04b28da4d..9c1c3c022 100644 --- a/vendor/assets/iD/iD/locales/vi.json +++ b/vendor/assets/iD/iD/locales/vi.json @@ -297,6 +297,7 @@ "help": "Lưu các thay đổi vào OpenStreetMap để cho mọi người xem.", "no_changes": "Không có thay đổi nào để lưu.", "error": "Xảy ra lỗi khi lưu", + "unknown_error_details": "Xin vui lòng chắc chắn rằng bạn được kết nối với Internet.", "uploading": "Đang tải các thay đổi lên OpenStreetMap.", "unsaved_changes": "Bạn có Thay đổi Chưa lưu" }, @@ -1329,6 +1330,10 @@ "name": "Sân trường Cao đẳng", "terms": "sân trường cao đẳng, trường cao đẳng, cao đẳng, CĐ, san truong cao dang, truong cao dang, cao dang, CD" }, + "amenity/community_centre": { + "name": "Trung tâm Cộng đồng", + "terms": "trung tâm cộng đồng, hội trường cộng đồng, trung tam cong dong, hoi truong cong dong" + }, "amenity/compressed_air": { "name": "Khí Nén", "terms": "khí nén, không khí nén, khi nen, khong khi nen" @@ -2693,6 +2698,10 @@ "name": "Trạm Điện Phụ", "terms": "trạm điện phụ, tram dien phu" }, + "power/substation": { + "name": "Trạm Điện Phụ", + "terms": "trạm điện phụ, tram dien phu" + }, "power/tower": { "name": "Cột điện Cao thế", "terms": "cột điện cao thế, cot dien cao the" @@ -3273,6 +3282,22 @@ "name": "Vườn thú", "terms": "vườn thú, vườn bách thú, vuon thu, vuon bach thu" }, + "traffic_calming/bump": { + "name": "Gờ Giảm Tốc độ", + "terms": "gờ giảm tốc độ, bướu tốc độ, go giam toc do, buou toc do" + }, + "traffic_calming/hump": { + "name": "Bướu Tốc độ", + "terms": "bướu tốc độ, bướu giảm tốc độ, buou toc do, buou giam toc do" + }, + "traffic_calming/rumble_strip": { + "name": "Dải Gây Ồn", + "terms": "dải gây ồn, dai gay on" + }, + "traffic_calming/table": { + "name": "Lối Băng qua Đường Nổi lên", + "terms": "lối băng qua đường nổi lên, lối băng qua đường nhô lên, loi bang qua duong noi len, loi bang qua duong nho len" + }, "type/boundary": { "name": "Ranh giới", "terms": "biên giới, ranh giới, bien gioi, ranh gioi" diff --git a/vendor/assets/iD/iD/locales/zh-TW.json b/vendor/assets/iD/iD/locales/zh-TW.json index 26fded77d..d9997a564 100644 --- a/vendor/assets/iD/iD/locales/zh-TW.json +++ b/vendor/assets/iD/iD/locales/zh-TW.json @@ -231,6 +231,7 @@ "upload_explanation_with_user": "你以 {user} 具名的修改將會在所有使用OpenStreetMap資料的地圖上看到。", "save": "儲存", "cancel": "取消", + "changes": "{count} 變動數", "warnings": "警告", "modified": "已修改", "deleted": "已刪除", @@ -297,6 +298,7 @@ "help": "儲存修改至OpenStreetMap,讓其他用戶看見。", "no_changes": "沒有修改需要儲存。", "error": "儲存編輯時發生錯誤", + "unknown_error_details": "請確定你已經連上網路。", "uploading": "正在上載修改至OpenStreetMap。", "unsaved_changes": "你有未儲存的編輯" }, @@ -793,7 +795,7 @@ "label": "長度 (公尺)" }, "levels": { - "label": "屋宇層數", + "label": "房屋樓層數", "placeholder": "2, 4, 6..." }, "lit": { @@ -1329,6 +1331,10 @@ "name": "學院用地", "terms": "學院" }, + "amenity/community_centre": { + "name": "社區中心", + "terms": "社區發展協會,里活動中心,村活動中心" + }, "amenity/compressed_air": { "name": "壓縮空氣", "terms": "冷氣,冷氣機" @@ -1466,8 +1472,8 @@ "terms": "遮雨棚,亭,亭子" }, "amenity/social_facility": { - "name": "社福設施", - "terms": "社福機構" + "name": "社福機構", + "terms": "社福設施" }, "amenity/social_facility/food_bank": { "name": "食物銀行", @@ -2375,7 +2381,7 @@ }, "leisure/track": { "name": "賽道(非摩托賽道)", - "terms": "賽道(非摩托賽道)" + "terms": "賽道(非摩托賽道),操場" }, "line": { "name": "線",