Update to iD v1.3.7
This commit is contained in:
parent
e83fdf09e2
commit
e50229c0bc
24 changed files with 3272 additions and 416 deletions
5
vendor/assets/iD/iD.css.erb
vendored
5
vendor/assets/iD/iD.css.erb
vendored
|
@ -2732,14 +2732,13 @@ input[type=number] {
|
|||
|
||||
.form-field .addr-number {
|
||||
width: 33.3333%;
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
border-bottom: 0;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.form-field .addr-street {
|
||||
width: 66.6666%;
|
||||
border-top: 0;
|
||||
border-right: 0;
|
||||
border-bottom: 0;
|
||||
border-radius: 0;
|
||||
|
|
623
vendor/assets/iD/iD.js
vendored
623
vendor/assets/iD/iD.js
vendored
|
@ -16151,7 +16151,7 @@ window.iD = function () {
|
|||
return d3.rebind(context, dispatch, 'on');
|
||||
};
|
||||
|
||||
iD.version = '1.3.6';
|
||||
iD.version = '1.3.7';
|
||||
|
||||
(function() {
|
||||
var detected = {};
|
||||
|
@ -16187,7 +16187,7 @@ iD.version = '1.3.6';
|
|||
})();
|
||||
iD.taginfo = function() {
|
||||
var taginfo = {},
|
||||
endpoint = 'http://taginfo.openstreetmap.org/api/4/',
|
||||
endpoint = 'https://taginfo.openstreetmap.org/api/4/',
|
||||
tag_sorts = {
|
||||
point: 'count_nodes',
|
||||
vertex: 'count_nodes',
|
||||
|
@ -16323,7 +16323,7 @@ iD.taginfo = function() {
|
|||
};
|
||||
iD.wikipedia = function() {
|
||||
var wiki = {},
|
||||
endpoint = 'http://en.wikipedia.org/w/api.php?';
|
||||
endpoint = 'https://en.wikipedia.org/w/api.php?';
|
||||
|
||||
wiki.search = function(lang, query, callback) {
|
||||
lang = lang || 'en';
|
||||
|
@ -17702,10 +17702,14 @@ iD.actions.MergePolygon = function(ids, newRelationId) {
|
|||
graph = graph.remove(m);
|
||||
});
|
||||
|
||||
members.forEach(function(m) {
|
||||
var entity = graph.entity(m.id);
|
||||
relation = relation.mergeTags(entity.tags);
|
||||
graph = graph.replace(entity.update({ tags: {} }));
|
||||
entities.closedWay.forEach(function(way) {
|
||||
function isThisOuter(m) {
|
||||
return m.id === way.id && m.role !== 'inner';
|
||||
}
|
||||
if (members.some(isThisOuter)) {
|
||||
relation = relation.mergeTags(way.tags);
|
||||
graph = graph.replace(way.update({ tags: {} }));
|
||||
}
|
||||
});
|
||||
|
||||
return graph.replace(relation.update({
|
||||
|
@ -17719,6 +17723,8 @@ iD.actions.MergePolygon = function(ids, newRelationId) {
|
|||
if (entities.other.length > 0 ||
|
||||
entities.closedWay.length + entities.multipolygon.length < 2)
|
||||
return 'not_eligible';
|
||||
if (!entities.multipolygon.every(function(r) { return r.isComplete(graph); }))
|
||||
return 'incomplete_relation';
|
||||
};
|
||||
|
||||
return action;
|
||||
|
@ -20567,6 +20573,9 @@ iD.operations.Merge = function(selectedIDs, context) {
|
|||
if (j === 'restriction' && m && p)
|
||||
return t('operations.merge.restriction', {relation: context.presets().item('type/restriction').name()});
|
||||
|
||||
if (p === 'incomplete_relation' && j && m)
|
||||
return t('operations.merge.incomplete_relation');
|
||||
|
||||
if (j && m && p)
|
||||
return t('operations.merge.' + j);
|
||||
|
||||
|
@ -22033,7 +22042,9 @@ iD.History = function(context) {
|
|||
toJSON: function() {
|
||||
if (stack.length <= 1) return;
|
||||
|
||||
var allEntities = {};
|
||||
var allEntities = {},
|
||||
baseEntities = {},
|
||||
base = stack[0];
|
||||
|
||||
var s = stack.map(function(i) {
|
||||
var modified = [], deleted = [];
|
||||
|
@ -22046,6 +22057,12 @@ iD.History = function(context) {
|
|||
} else {
|
||||
deleted.push(id);
|
||||
}
|
||||
|
||||
// make sure that the originals of changed or deleted entities get merged
|
||||
// into the base of the stack after restoring the data from JSON.
|
||||
if (id in base.graph.entities) {
|
||||
baseEntities[id] = base.graph.entities[id];
|
||||
}
|
||||
});
|
||||
|
||||
var x = {};
|
||||
|
@ -22059,8 +22076,9 @@ iD.History = function(context) {
|
|||
});
|
||||
|
||||
return JSON.stringify({
|
||||
version: 2,
|
||||
version: 3,
|
||||
entities: _.values(allEntities),
|
||||
baseEntities: _.values(baseEntities),
|
||||
stack: s,
|
||||
nextIDs: iD.Entity.id.next,
|
||||
index: index
|
||||
|
@ -22073,13 +22091,22 @@ iD.History = function(context) {
|
|||
iD.Entity.id.next = h.nextIDs;
|
||||
index = h.index;
|
||||
|
||||
if (h.version === 2) {
|
||||
if (h.version === 2 || h.version === 3) {
|
||||
var allEntities = {};
|
||||
|
||||
h.entities.forEach(function(entity) {
|
||||
allEntities[iD.Entity.key(entity)] = iD.Entity(entity);
|
||||
});
|
||||
|
||||
if (h.version === 3) {
|
||||
// this merges originals for changed entities into the base of
|
||||
// the stack even if the current stack doesn't have them (for
|
||||
// example when iD has been restarted in a different region)
|
||||
var baseEntities = h.baseEntities.map(iD.Entity);
|
||||
stack[0].graph.rebase(baseEntities, _.pluck(stack, 'graph'));
|
||||
tree.rebase(baseEntities);
|
||||
}
|
||||
|
||||
stack = h.stack.map(function(d) {
|
||||
var entities = {}, entity;
|
||||
|
||||
|
@ -22151,8 +22178,6 @@ iD.History = function(context) {
|
|||
|
||||
var json = context.storage(getKey('saved_history'));
|
||||
if (json) history.fromJSON(json);
|
||||
|
||||
context.storage(getKey('saved_history', null));
|
||||
},
|
||||
|
||||
_getKey: getKey
|
||||
|
@ -23066,7 +23091,7 @@ iD.BackgroundSource.Bing = function(data, dispatch) {
|
|||
|
||||
var bing = iD.BackgroundSource(data),
|
||||
key = 'Arzdiw4nlOJzRwOz__qailc8NiR31Tt51dN2D7cm57NrnceZnCpgOkmJhNpGoppU', // Same as P2 and JOSM
|
||||
url = 'http://dev.virtualearth.net/REST/v1/Imagery/Metadata/Aerial?include=ImageryProviders&key=' +
|
||||
url = 'https://dev.virtualearth.net/REST/v1/Imagery/Metadata/Aerial?include=ImageryProviders&key=' +
|
||||
key + '&jsonp={callback}',
|
||||
providers = [];
|
||||
|
||||
|
@ -23085,7 +23110,7 @@ iD.BackgroundSource.Bing = function(data, dispatch) {
|
|||
dispatch.change();
|
||||
});
|
||||
|
||||
var template = 'http://ecn.t{t}.tiles.virtualearth.net/tiles/a{u}.jpeg?g=587&mkt=en-gb&n=z',
|
||||
var template = 'https://ecn.t{t}.tiles.virtualearth.net/tiles/a{u}.jpeg?g=587&mkt=en-gb&n=z',
|
||||
subdomains = [0, 1, 2, 3];
|
||||
|
||||
bing.url = function(coord) {
|
||||
|
@ -29384,7 +29409,6 @@ iD.ui.preset.access = function(field) {
|
|||
};
|
||||
iD.ui.preset.address = function(field, context) {
|
||||
var event = d3.dispatch('change'),
|
||||
housename,
|
||||
housenumber,
|
||||
street,
|
||||
city,
|
||||
|
@ -29482,12 +29506,6 @@ iD.ui.preset.address = function(field, context) {
|
|||
var enter = wrap.enter().append('div')
|
||||
.attr('class', 'preset-input-wrap');
|
||||
|
||||
enter.append('input')
|
||||
.property('type', 'text')
|
||||
.attr('placeholder', field.t('placeholders.housename'))
|
||||
.attr('class', 'addr-housename')
|
||||
.attr('id', 'preset-input-' + field.id);
|
||||
|
||||
enter.append('input')
|
||||
.property('type', 'text')
|
||||
.attr('placeholder', field.t('placeholders.number'))
|
||||
|
@ -29510,7 +29528,6 @@ iD.ui.preset.address = function(field, context) {
|
|||
|
||||
// Update
|
||||
|
||||
housename = wrap.select('.addr-housename');
|
||||
housenumber = wrap.select('.addr-number');
|
||||
street = wrap.select('.addr-street');
|
||||
city = wrap.select('.addr-city');
|
||||
|
@ -29541,7 +29558,6 @@ iD.ui.preset.address = function(field, context) {
|
|||
|
||||
function change() {
|
||||
event.change({
|
||||
'addr:housename': housename.value() || undefined,
|
||||
'addr:housenumber': housenumber.value() || undefined,
|
||||
'addr:street': street.value() || undefined,
|
||||
'addr:city': city.value() || undefined,
|
||||
|
@ -29556,7 +29572,6 @@ iD.ui.preset.address = function(field, context) {
|
|||
};
|
||||
|
||||
address.tags = function(tags) {
|
||||
housename.value(tags['addr:housename'] || '');
|
||||
housenumber.value(tags['addr:housenumber'] || '');
|
||||
street.value(tags['addr:street'] || '');
|
||||
city.value(tags['addr:city'] || '');
|
||||
|
@ -29564,7 +29579,7 @@ iD.ui.preset.address = function(field, context) {
|
|||
};
|
||||
|
||||
address.focus = function() {
|
||||
housename.node().focus();
|
||||
housenumber.node().focus();
|
||||
};
|
||||
|
||||
return d3.rebind(address, event, 'on');
|
||||
|
@ -62669,7 +62684,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
"dentist's office"
|
||||
],
|
||||
"tags": {
|
||||
"amenity": "doctors"
|
||||
"amenity": "dentist"
|
||||
},
|
||||
"icon": "hospital",
|
||||
"fields": [
|
||||
|
@ -63904,6 +63919,102 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
},
|
||||
"name": "Apartments"
|
||||
},
|
||||
"building/barn": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "barn"
|
||||
},
|
||||
"name": "Barn"
|
||||
},
|
||||
"building/bunker": {
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "bunker"
|
||||
},
|
||||
"name": "Bunker",
|
||||
"searchable": false
|
||||
},
|
||||
"building/cabin": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "cabin"
|
||||
},
|
||||
"name": "Cabin"
|
||||
},
|
||||
"building/cathedral": {
|
||||
"icon": "place-of-worship",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "cathedral"
|
||||
},
|
||||
"name": "Cathedral"
|
||||
},
|
||||
"building/chapel": {
|
||||
"icon": "place-of-worship",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "chapel"
|
||||
},
|
||||
"name": "Chapel"
|
||||
},
|
||||
"building/church": {
|
||||
"icon": "place-of-worship",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "church"
|
||||
},
|
||||
"name": "Church"
|
||||
},
|
||||
"building/commercial": {
|
||||
"icon": "commercial",
|
||||
"geometry": [
|
||||
|
@ -63916,6 +64027,54 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
},
|
||||
"name": "Commercial Building"
|
||||
},
|
||||
"building/construction": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "construction"
|
||||
},
|
||||
"name": "Building Under Construction"
|
||||
},
|
||||
"building/detached": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "detached"
|
||||
},
|
||||
"name": "Detached Home"
|
||||
},
|
||||
"building/dormitory": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "dormitory"
|
||||
},
|
||||
"name": "Dormitory"
|
||||
},
|
||||
"building/entrance": {
|
||||
"icon": "entrance",
|
||||
"geometry": [
|
||||
|
@ -63942,6 +64101,69 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
"name": "Garage",
|
||||
"icon": "warehouse"
|
||||
},
|
||||
"building/garages": {
|
||||
"icon": "warehouse",
|
||||
"fields": [
|
||||
"capacity"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "garages"
|
||||
},
|
||||
"name": "Garages"
|
||||
},
|
||||
"building/greenhouse": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "greenhouse"
|
||||
},
|
||||
"name": "Greenhouse"
|
||||
},
|
||||
"building/hospital": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "hospital"
|
||||
},
|
||||
"name": "Hospital Building"
|
||||
},
|
||||
"building/hotel": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "hotel"
|
||||
},
|
||||
"name": "Hotel Building"
|
||||
},
|
||||
"building/house": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
|
@ -63984,6 +64206,22 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
},
|
||||
"name": "Industrial Building"
|
||||
},
|
||||
"building/public": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "public"
|
||||
},
|
||||
"name": "Public Building"
|
||||
},
|
||||
"building/residential": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
|
@ -64000,6 +64238,167 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
},
|
||||
"name": "Residential Building"
|
||||
},
|
||||
"building/retail": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "retail"
|
||||
},
|
||||
"name": "Retail Building"
|
||||
},
|
||||
"building/roof": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "roof"
|
||||
},
|
||||
"name": "Roof"
|
||||
},
|
||||
"building/school": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "school"
|
||||
},
|
||||
"name": "School Building"
|
||||
},
|
||||
"building/shed": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "shed"
|
||||
},
|
||||
"name": "Shed"
|
||||
},
|
||||
"building/stable": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "stable"
|
||||
},
|
||||
"name": "Stable"
|
||||
},
|
||||
"building/static_caravan": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "static_caravan"
|
||||
},
|
||||
"name": "Static Mobile Home"
|
||||
},
|
||||
"building/terrace": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "terrace"
|
||||
},
|
||||
"name": "Row Houses"
|
||||
},
|
||||
"building/train_station": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "train_station"
|
||||
},
|
||||
"name": "Train Station",
|
||||
"searchable": false
|
||||
},
|
||||
"building/university": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "university"
|
||||
},
|
||||
"name": "University Building"
|
||||
},
|
||||
"building/warehouse": {
|
||||
"icon": "building",
|
||||
"fields": [
|
||||
"address",
|
||||
"levels"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"building": "warehouse"
|
||||
},
|
||||
"name": "Warehouse"
|
||||
},
|
||||
"craft/basket_maker": {
|
||||
"name": "Basket Maker",
|
||||
"geometry": [
|
||||
|
@ -67761,6 +68160,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
},
|
||||
"railway/station": {
|
||||
"icon": "rail",
|
||||
"fields": [
|
||||
"building_area"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
|
@ -67879,6 +68281,27 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
],
|
||||
"name": "Liquor Store"
|
||||
},
|
||||
"shop/art": {
|
||||
"icon": "art-gallery",
|
||||
"fields": [
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"terms": [
|
||||
"art store",
|
||||
"art gallery"
|
||||
],
|
||||
"tags": {
|
||||
"shop": "art"
|
||||
},
|
||||
"name": "Art Shop"
|
||||
},
|
||||
"shop/bakery": {
|
||||
"icon": "bakery",
|
||||
"fields": [
|
||||
|
@ -67953,6 +68376,23 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
},
|
||||
"name": "Bicycle Shop"
|
||||
},
|
||||
"shop/bookmaker": {
|
||||
"icon": "shop",
|
||||
"fields": [
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"shop": "bookmaker"
|
||||
},
|
||||
"name": "Bookmaker"
|
||||
},
|
||||
"shop/books": {
|
||||
"icon": "shop",
|
||||
"fields": [
|
||||
|
@ -68472,6 +68912,23 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
},
|
||||
"name": "Locksmith"
|
||||
},
|
||||
"shop/lottery": {
|
||||
"icon": "shop",
|
||||
"fields": [
|
||||
"address",
|
||||
"building_area",
|
||||
"opening_hours"
|
||||
],
|
||||
"geometry": [
|
||||
"point",
|
||||
"vertex",
|
||||
"area"
|
||||
],
|
||||
"tags": {
|
||||
"shop": "lottery"
|
||||
},
|
||||
"name": "Lottery Shop"
|
||||
},
|
||||
"shop/mall": {
|
||||
"icon": "shop",
|
||||
"fields": [
|
||||
|
@ -97121,7 +97578,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
"address": {
|
||||
"type": "address",
|
||||
"keys": [
|
||||
"addr:housename",
|
||||
"addr:housenumber",
|
||||
"addr:street",
|
||||
"addr:city",
|
||||
|
@ -97132,7 +97588,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
"label": "Address",
|
||||
"strings": {
|
||||
"placeholders": {
|
||||
"housename": "Housename",
|
||||
"number": "123",
|
||||
"street": "Street",
|
||||
"city": "City",
|
||||
|
@ -109952,7 +110407,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
"annotation": "Merged {n} lines.",
|
||||
"not_eligible": "These features can't be merged.",
|
||||
"not_adjacent": "These lines can't be merged because they aren't connected.",
|
||||
"restriction": "These lines can't be merged because at least one is a member of a \"{relation}\" relation."
|
||||
"restriction": "These lines can't be merged because at least one is a member of a \"{relation}\" relation.",
|
||||
"incomplete_relation": "These features can't be merged because at least one hasn't been fully downloaded."
|
||||
},
|
||||
"move": {
|
||||
"title": "Move",
|
||||
|
@ -110287,7 +110743,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
"address": {
|
||||
"label": "Address",
|
||||
"placeholders": {
|
||||
"housename": "Housename",
|
||||
"number": "123",
|
||||
"street": "Street",
|
||||
"city": "City",
|
||||
|
@ -111108,10 +111563,46 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
"name": "Apartments",
|
||||
"terms": ""
|
||||
},
|
||||
"building/barn": {
|
||||
"name": "Barn",
|
||||
"terms": ""
|
||||
},
|
||||
"building/bunker": {
|
||||
"name": "Bunker",
|
||||
"terms": ""
|
||||
},
|
||||
"building/cabin": {
|
||||
"name": "Cabin",
|
||||
"terms": ""
|
||||
},
|
||||
"building/cathedral": {
|
||||
"name": "Cathedral",
|
||||
"terms": ""
|
||||
},
|
||||
"building/chapel": {
|
||||
"name": "Chapel",
|
||||
"terms": ""
|
||||
},
|
||||
"building/church": {
|
||||
"name": "Church",
|
||||
"terms": ""
|
||||
},
|
||||
"building/commercial": {
|
||||
"name": "Commercial Building",
|
||||
"terms": ""
|
||||
},
|
||||
"building/construction": {
|
||||
"name": "Building Under Construction",
|
||||
"terms": ""
|
||||
},
|
||||
"building/detached": {
|
||||
"name": "Detached Home",
|
||||
"terms": ""
|
||||
},
|
||||
"building/dormitory": {
|
||||
"name": "Dormitory",
|
||||
"terms": ""
|
||||
},
|
||||
"building/entrance": {
|
||||
"name": "Entrance",
|
||||
"terms": ""
|
||||
|
@ -111120,6 +111611,22 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
"name": "Garage",
|
||||
"terms": ""
|
||||
},
|
||||
"building/garages": {
|
||||
"name": "Garages",
|
||||
"terms": ""
|
||||
},
|
||||
"building/greenhouse": {
|
||||
"name": "Greenhouse",
|
||||
"terms": ""
|
||||
},
|
||||
"building/hospital": {
|
||||
"name": "Hospital Building",
|
||||
"terms": ""
|
||||
},
|
||||
"building/hotel": {
|
||||
"name": "Hotel Building",
|
||||
"terms": ""
|
||||
},
|
||||
"building/house": {
|
||||
"name": "House",
|
||||
"terms": ""
|
||||
|
@ -111132,10 +111639,54 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
"name": "Industrial Building",
|
||||
"terms": ""
|
||||
},
|
||||
"building/public": {
|
||||
"name": "Public Building",
|
||||
"terms": ""
|
||||
},
|
||||
"building/residential": {
|
||||
"name": "Residential Building",
|
||||
"terms": ""
|
||||
},
|
||||
"building/retail": {
|
||||
"name": "Retail Building",
|
||||
"terms": ""
|
||||
},
|
||||
"building/roof": {
|
||||
"name": "Roof",
|
||||
"terms": ""
|
||||
},
|
||||
"building/school": {
|
||||
"name": "School Building",
|
||||
"terms": ""
|
||||
},
|
||||
"building/shed": {
|
||||
"name": "Shed",
|
||||
"terms": ""
|
||||
},
|
||||
"building/stable": {
|
||||
"name": "Stable",
|
||||
"terms": ""
|
||||
},
|
||||
"building/static_caravan": {
|
||||
"name": "Static Mobile Home",
|
||||
"terms": ""
|
||||
},
|
||||
"building/terrace": {
|
||||
"name": "Row Houses",
|
||||
"terms": ""
|
||||
},
|
||||
"building/train_station": {
|
||||
"name": "Train Station",
|
||||
"terms": ""
|
||||
},
|
||||
"building/university": {
|
||||
"name": "University Building",
|
||||
"terms": ""
|
||||
},
|
||||
"building/warehouse": {
|
||||
"name": "Warehouse",
|
||||
"terms": ""
|
||||
},
|
||||
"craft/basket_maker": {
|
||||
"name": "Basket Maker",
|
||||
"terms": "basket,basketry,basket maker,basket weaver"
|
||||
|
@ -112112,6 +112663,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
"name": "Liquor Store",
|
||||
"terms": "alcohol"
|
||||
},
|
||||
"shop/art": {
|
||||
"name": "Art Shop",
|
||||
"terms": "art store,art gallery"
|
||||
},
|
||||
"shop/bakery": {
|
||||
"name": "Bakery",
|
||||
"terms": ""
|
||||
|
@ -112128,6 +112683,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
"name": "Bicycle Shop",
|
||||
"terms": ""
|
||||
},
|
||||
"shop/bookmaker": {
|
||||
"name": "Bookmaker",
|
||||
"terms": ""
|
||||
},
|
||||
"shop/books": {
|
||||
"name": "Bookstore",
|
||||
"terms": ""
|
||||
|
@ -112248,6 +112807,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
"name": "Locksmith",
|
||||
"terms": "keys"
|
||||
},
|
||||
"shop/lottery": {
|
||||
"name": "Lottery Shop",
|
||||
"terms": ""
|
||||
},
|
||||
"shop/mall": {
|
||||
"name": "Mall",
|
||||
"terms": ""
|
||||
|
|
6
vendor/assets/iD/iD/locales/bn.json
vendored
6
vendor/assets/iD/iD/locales/bn.json
vendored
|
@ -17,7 +17,7 @@
|
|||
},
|
||||
"browse": {
|
||||
"title": "ঘুরে ফিরে দেখুন",
|
||||
"description": "মানচিত্র প্যান এবং জুম করুন "
|
||||
"description": "মানচিত্র প্যান এবং জুম করুন।"
|
||||
},
|
||||
"draw_area": {
|
||||
"tail": "অাপনার এলাকায় নোড সংযোজন-এর জন্য ক্লিক করুন। এলাকাটি সম্পুর্ন করার জন্য প্রথম নোড-এ ক্লিক করুন।"
|
||||
|
@ -46,7 +46,7 @@
|
|||
"description": "এই রেখাকে প্রলম্বিত করুন.",
|
||||
"not_eligible": "কোন রেখাকে এখানে প্রলম্বিত করা যাবে না.",
|
||||
"annotation": {
|
||||
"line": "একটি রেখাকে প্রলম্বিত করা হয়েছে",
|
||||
"line": "একটি রেখাকে প্রলম্বিত করা হয়েছে।",
|
||||
"area": "একটি ক্ষেত্রকে বড় করা হয়েছে"
|
||||
}
|
||||
},
|
||||
|
@ -176,7 +176,7 @@
|
|||
},
|
||||
"redo": {
|
||||
"tooltip": "পুনরায় করুন: {action}",
|
||||
"nothing": "পুনরায় করার কিছুই নেই."
|
||||
"nothing": "পুনরায় করার কিছুই নেই।"
|
||||
},
|
||||
"tooltip_keyhint": "শর্টকাট:",
|
||||
"browser_notice": "এই এডিটরটি ফায়ারফক্স, ক্রোম, সাফারি, অপেরা এবং ইন্টারনেট এক্সপ্লোরার ৯ এবং তার উপরে কাজ করে। দয়া করে অাপনার ব্রাউসারটিকে উন্নত করুন অথবা ম্যাপ এ পরিবর্তন করতে পটল্যাচ ২ ব্যব্হার করুন।",
|
||||
|
|
85
vendor/assets/iD/iD/locales/ca.json
vendored
85
vendor/assets/iD/iD/locales/ca.json
vendored
|
@ -134,7 +134,8 @@
|
|||
"annotation": "Heu fusionat {n} línies.",
|
||||
"not_eligible": "Aquestes característiques no poden ser fusionades.",
|
||||
"not_adjacent": "Aquestes línies no poden ser com fusionades ja que no estàn connectades.",
|
||||
"restriction": "Aquestes línies no poden ser fusionades perquè com a mínim una d'elles és membre de la relació \"{relation}\""
|
||||
"restriction": "Aquestes línies no poden ser fusionades perquè com a mínim una d'elles és membre de la relació \"{relation}\"",
|
||||
"incomplete_relation": "Aquestes característiques no poden ser fusionades perquè com a mínim una no s'ha descarregat del tot."
|
||||
},
|
||||
"move": {
|
||||
"title": "Mou",
|
||||
|
@ -1254,15 +1255,55 @@
|
|||
"building/apartments": {
|
||||
"name": "Apartaments"
|
||||
},
|
||||
"building/barn": {
|
||||
"name": "Graner"
|
||||
},
|
||||
"building/bunker": {
|
||||
"name": "Búnquer"
|
||||
},
|
||||
"building/cabin": {
|
||||
"name": "Cabina"
|
||||
},
|
||||
"building/cathedral": {
|
||||
"name": "Catedral"
|
||||
},
|
||||
"building/chapel": {
|
||||
"name": "Capella"
|
||||
},
|
||||
"building/church": {
|
||||
"name": "Església"
|
||||
},
|
||||
"building/commercial": {
|
||||
"name": "Edifici comercial"
|
||||
},
|
||||
"building/construction": {
|
||||
"name": "Edifici en construcció"
|
||||
},
|
||||
"building/detached": {
|
||||
"name": "Xalet unifamiliar",
|
||||
"terms": "casa aïllada, casa d'urbanització, xalet, chalet, xalets, chalets, casa i jardí, casa amb jardí"
|
||||
},
|
||||
"building/dormitory": {
|
||||
"name": "Edifici d'habitacions"
|
||||
},
|
||||
"building/entrance": {
|
||||
"name": "Entrada"
|
||||
},
|
||||
"building/garage": {
|
||||
"name": "garatge "
|
||||
},
|
||||
"building/garages": {
|
||||
"name": "Garatges"
|
||||
},
|
||||
"building/greenhouse": {
|
||||
"name": "Hivernacle"
|
||||
},
|
||||
"building/hospital": {
|
||||
"name": "Edifici hospitalari"
|
||||
},
|
||||
"building/hotel": {
|
||||
"name": "Edifici hoteler"
|
||||
},
|
||||
"building/house": {
|
||||
"name": "Casa"
|
||||
},
|
||||
|
@ -1272,9 +1313,42 @@
|
|||
"building/industrial": {
|
||||
"name": "Edifici industrial"
|
||||
},
|
||||
"building/public": {
|
||||
"name": "Edifici públic"
|
||||
},
|
||||
"building/residential": {
|
||||
"name": "Edifici residencial"
|
||||
},
|
||||
"building/retail": {
|
||||
"name": "Edifici de grans magatzems"
|
||||
},
|
||||
"building/roof": {
|
||||
"name": "Teulada"
|
||||
},
|
||||
"building/school": {
|
||||
"name": "Edifici escolar"
|
||||
},
|
||||
"building/shed": {
|
||||
"name": "Traster"
|
||||
},
|
||||
"building/stable": {
|
||||
"name": "Estable"
|
||||
},
|
||||
"building/static_caravan": {
|
||||
"name": "Caravana fixa"
|
||||
},
|
||||
"building/terrace": {
|
||||
"name": "Cases unifamiliars"
|
||||
},
|
||||
"building/train_station": {
|
||||
"name": "Estació de ferrocarril"
|
||||
},
|
||||
"building/university": {
|
||||
"name": "Edifici universitari"
|
||||
},
|
||||
"building/warehouse": {
|
||||
"name": "Magatzem"
|
||||
},
|
||||
"craft/basket_maker": {
|
||||
"name": "Cistellaire"
|
||||
},
|
||||
|
@ -2011,6 +2085,9 @@
|
|||
"shop/alcohol": {
|
||||
"name": "Botiga de licors"
|
||||
},
|
||||
"shop/art": {
|
||||
"name": "Botiga d'art"
|
||||
},
|
||||
"shop/bakery": {
|
||||
"name": "Fleca"
|
||||
},
|
||||
|
@ -2023,6 +2100,9 @@
|
|||
"shop/bicycle": {
|
||||
"name": "Botiga de bicicletes"
|
||||
},
|
||||
"shop/bookmaker": {
|
||||
"name": "Cusidor de llibres"
|
||||
},
|
||||
"shop/books": {
|
||||
"name": "Llibreria"
|
||||
},
|
||||
|
@ -2113,6 +2193,9 @@
|
|||
"shop/locksmith": {
|
||||
"name": "Copisteria de claus"
|
||||
},
|
||||
"shop/lottery": {
|
||||
"name": "Administració de loteria"
|
||||
},
|
||||
"shop/mall": {
|
||||
"name": "Centre comercial"
|
||||
},
|
||||
|
|
111
vendor/assets/iD/iD/locales/da.json
vendored
111
vendor/assets/iD/iD/locales/da.json
vendored
|
@ -134,7 +134,8 @@
|
|||
"annotation": "Fusionerede {n} linjer.",
|
||||
"not_eligible": "Disse elementer kan ikke fusioneres.",
|
||||
"not_adjacent": "Disse linjer kan ikke fusioneres fordi de ikke er knyttet sammen",
|
||||
"restriction": "Disse linjer kan ikke flettes sammen, da mindst en af disse er medlem af \"{relation}\" relation."
|
||||
"restriction": "Disse linjer kan ikke flettes sammen, da mindst en af disse er medlem af \"{relation}\" relation.",
|
||||
"incomplete_relation": "Disse kortegenskaber kan ikke fusioneres, da de ikke er blevet downloadet fuldstændigt."
|
||||
},
|
||||
"move": {
|
||||
"title": "Flyt",
|
||||
|
@ -1284,10 +1285,46 @@
|
|||
"name": "Lejligheder",
|
||||
"terms": "Lejligheder, Ejerlejligheder"
|
||||
},
|
||||
"building/barn": {
|
||||
"name": "Lade",
|
||||
"terms": "Lade, Stald"
|
||||
},
|
||||
"building/bunker": {
|
||||
"name": "Bunker",
|
||||
"terms": "Bunker"
|
||||
},
|
||||
"building/cabin": {
|
||||
"name": "Hytte",
|
||||
"terms": "Hytte"
|
||||
},
|
||||
"building/cathedral": {
|
||||
"name": "Katedral",
|
||||
"terms": "Katedral, Domkirke"
|
||||
},
|
||||
"building/chapel": {
|
||||
"name": "Kapel",
|
||||
"terms": "Kapel"
|
||||
},
|
||||
"building/church": {
|
||||
"name": "Kirke",
|
||||
"terms": "Kirke"
|
||||
},
|
||||
"building/commercial": {
|
||||
"name": "Indkøbscenter",
|
||||
"terms": "Indkøbscenter, Storcenter"
|
||||
},
|
||||
"building/construction": {
|
||||
"name": "Bygning under konstruktion",
|
||||
"terms": "Bygning under konstruktion, Byggeplads"
|
||||
},
|
||||
"building/detached": {
|
||||
"name": "Parcelhus",
|
||||
"terms": "Parcelhus"
|
||||
},
|
||||
"building/dormitory": {
|
||||
"name": " Kollegie",
|
||||
"terms": " Kollegie, Klubværelse, Kollegium"
|
||||
},
|
||||
"building/entrance": {
|
||||
"name": "Indgang",
|
||||
"terms": "Indgang"
|
||||
|
@ -1296,6 +1333,22 @@
|
|||
"name": "Garage",
|
||||
"terms": "Garage, Carport"
|
||||
},
|
||||
"building/garages": {
|
||||
"name": "Garager",
|
||||
"terms": "Garager"
|
||||
},
|
||||
"building/greenhouse": {
|
||||
"name": "Drivhus",
|
||||
"terms": "Drivhus"
|
||||
},
|
||||
"building/hospital": {
|
||||
"name": "Hospitalsbygning",
|
||||
"terms": "Hospitalsbygning, Sygehusbygning"
|
||||
},
|
||||
"building/hotel": {
|
||||
"name": "Hotelbygning",
|
||||
"terms": "Hotelbygning"
|
||||
},
|
||||
"building/house": {
|
||||
"name": "Hus",
|
||||
"terms": "Hus, Parcelhus"
|
||||
|
@ -1308,10 +1361,54 @@
|
|||
"name": "Industribygning",
|
||||
"terms": "Industribygning"
|
||||
},
|
||||
"building/public": {
|
||||
"name": "Offentlig bygning",
|
||||
"terms": "Offentlig bygning"
|
||||
},
|
||||
"building/residential": {
|
||||
"name": "Beboelsesbygning",
|
||||
"terms": "Beboelsesbygning, Parcelhus"
|
||||
},
|
||||
"building/retail": {
|
||||
"name": "Butiksbygning",
|
||||
"terms": "Butiksbygning, Forretningsbygning"
|
||||
},
|
||||
"building/roof": {
|
||||
"name": "Tag",
|
||||
"terms": "Tag"
|
||||
},
|
||||
"building/school": {
|
||||
"name": "Skolebygning",
|
||||
"terms": "Skolebygning"
|
||||
},
|
||||
"building/shed": {
|
||||
"name": "Skur",
|
||||
"terms": "Skur"
|
||||
},
|
||||
"building/stable": {
|
||||
"name": "Stald",
|
||||
"terms": "Stald, Hestestald, Kostald, Grisestald"
|
||||
},
|
||||
"building/static_caravan": {
|
||||
"name": "Fast mobilt hus",
|
||||
"terms": "Fast mobilt hus"
|
||||
},
|
||||
"building/terrace": {
|
||||
"name": "Rækkehuse",
|
||||
"terms": "Rækkehuse"
|
||||
},
|
||||
"building/train_station": {
|
||||
"name": "Togstation",
|
||||
"terms": "Togstation, Station"
|
||||
},
|
||||
"building/university": {
|
||||
"name": "Universitetsbygning",
|
||||
"terms": "Universitetsbygning"
|
||||
},
|
||||
"building/warehouse": {
|
||||
"name": "Lager",
|
||||
"terms": "Lager, Lagerhotel, Varelager"
|
||||
},
|
||||
"craft/basket_maker": {
|
||||
"name": "Kurvemager",
|
||||
"terms": "Kurvemager"
|
||||
|
@ -2288,6 +2385,10 @@
|
|||
"name": "Vinforhandler",
|
||||
"terms": "Vinforhandler, Vinbutik, Vinforretning"
|
||||
},
|
||||
"shop/art": {
|
||||
"name": "Kunstbutik",
|
||||
"terms": "Kunstbutik, Kunstforretning"
|
||||
},
|
||||
"shop/bakery": {
|
||||
"name": "Bager",
|
||||
"terms": "Bager, Bageri"
|
||||
|
@ -2304,6 +2405,10 @@
|
|||
"name": "Cykelbutik",
|
||||
"terms": "Cykelforretning, Cykelbutik"
|
||||
},
|
||||
"shop/bookmaker": {
|
||||
"name": "Bookmaker",
|
||||
"terms": "Bookmaker"
|
||||
},
|
||||
"shop/books": {
|
||||
"name": "Boghandler",
|
||||
"terms": "Boghandler"
|
||||
|
@ -2424,6 +2529,10 @@
|
|||
"name": "Låsesmed",
|
||||
"terms": "Låsesmed"
|
||||
},
|
||||
"shop/lottery": {
|
||||
"name": "Lotteributik",
|
||||
"terms": "Lotteributik, Lotteriforretning"
|
||||
},
|
||||
"shop/mall": {
|
||||
"name": "Indkøbscenter",
|
||||
"terms": "Indkøbscenter"
|
||||
|
|
121
vendor/assets/iD/iD/locales/de.json
vendored
121
vendor/assets/iD/iD/locales/de.json
vendored
|
@ -134,7 +134,8 @@
|
|||
"annotation": "{n} Linien vereinigt.",
|
||||
"not_eligible": "Diese Objekte können nicht vereinigt werden.",
|
||||
"not_adjacent": "Diese Linien können nicht vereinigt werden, da sie nicht verbunden sind.",
|
||||
"restriction": "Diese Linien können nicht vereinigt werden, da mindestens eine Linie ein Mitglied einer \"{relation}\" Relation ist."
|
||||
"restriction": "Diese Linien können nicht vereinigt werden, da mindestens eine Linie ein Mitglied einer \"{relation}\" Relation ist.",
|
||||
"incomplete_relation": "Diese Objekte können nicht zusammengefügt werden, da mindestens eines noch nicht vollständig heruntergeladen wurde."
|
||||
},
|
||||
"move": {
|
||||
"title": "Verschieben",
|
||||
|
@ -332,7 +333,7 @@
|
|||
},
|
||||
"help": {
|
||||
"title": "Hilfe",
|
||||
"help": "#Hilfe\n\nDies ist ein Editor für [OpenStreetMap](http://www.openstreetmap.org/), der freien und editierbaren Weltkarte. Du kannst ihn verwenden, um Daten in deiner Umgebung hinzuzufügen oder zu verändern und so diese Karte mit freien Quellen und freien Daten für jeden verbessern.\n\nVeränderungen werden für alle Nutzer von OpenStreetMap sichtbar. Um Veränderungen vornehmen zu können, musst du ein [kostenloses OpenStreetMap Profil](https://www.openstreetmap.org/user/new) anlegen.\n\nDer [iD editor](http://ideditor.com/) ist ein Gemeinschaftsprojektn dessen [Quellcode\nauf GitHub verfügbar ist](https://github.com/openstreetmap/iD).\n",
|
||||
"help": "#Hilfe\n\nDies ist ein Editor für [OpenStreetMap](http://www.openstreetmap.org/), der freien und editierbaren Weltkarte. Du kannst ihn verwenden, um Daten in deiner Umgebung hinzuzufügen oder zu verändern und so diese Karte mit freien Quellen und freien Daten für jeden verbessern.\n\nVeränderungen werden für alle Nutzer von OpenStreetMap sichtbar. Um Veränderungen vornehmen zu können, musst du ein [kostenloses OpenStreetMap Profil](https://www.openstreetmap.org/user/new) anlegen.\n\nDer [iD editor](http://ideditor.com/) ist ein Gemeinschaftsprojekt dessen [Quellcode\nauf GitHub verfügbar ist](https://github.com/openstreetmap/iD).\n",
|
||||
"editing_saving": "# Editieren & Speichern\n\nDieser Editor wurde entworfen, um online zu arbeiten und du erreichst ihn über diese Webseite.\n\n### Objekte auswählen\n\nUm ein Kartenobjekt wie eine Straße oder ein Sonderziel (POI) auszuwählen, klicke auf der Karte darauf. Dadurch wird das Objekt hervorgehoben und ein Bedienfeld mit Details und Möglichkeiten zur Veränderung aufgerufen.\n\nMehrere Objekte kannst du auswählen indem du die Shift-Taste (Umschalttaste) drückst und die Objekte einzeln anklickst oder klickst und einen Rahmen darum ziehst.\nSo können mehrere Objekte gleichzeitig geändert werden.\n\n### Speichern der Änderungen\n\nWenn du Änderungen an einer Straße, einem Gebäude oder einem Platz vorgenommen hast, sind diese lokal gespeichert, bis du sie auf dem Server speicherst. Keine Sorge falls du einen Fehler machen solltest: Du kannst Änderungen jederzeit über den Rückgängig-Knopf rückgängig machen oder über den Wiederherstellen-Knopf noch einmal ausführen.\n\nKlicke auf \"Speichern\", um eine Gruppe von Änderungen zu speichern. Zum Beispiel, wenn du in einem Stadtteil fertig bist und in einer neuen Gegend editieren willst.\nDu bekommst dann die Möglichkeit noch einmal zu überprüfen, was du gerade getan hast und der Editor zeigt dir nützliche Hinweise oder mögliche Fehler, wenn etwas nicht in Ordnung zu sein scheint.\n\nWenn alles gut aussieht kannst du einen kurzen Kommentar schreiben, der erklärt, was du gemacht hast. Drücke nun \"Speichern\", um die Änderungen auf dem Server zu speichern.\nNun können es alle auf [OpenStreetMap.org](http://www.openstreetmap.org/) sehen und darauf aufbauen.\n\nWenn du es zeitlich nicht schaffst, kannst du das Editor-Fenster einfach schließen. Wenn du die Seite wieder aufrufst (mit dem gleichen Browser und Computer) wird dir angeboten, die letzte Sitzung wiederherzustellen.\n",
|
||||
"roads": "# Straßen\n\nMit dem Editor kannst du Wege erstellen, verändern und löschen. Wege können alles mögliche sein, zum Beispiel Pfade, Straßen, Schienen, Fahrradwege und anderes.\n\n### Auswählen\n\nKlicke auf einen Weg, um ihn auszuwählen. Er sollte nun hervorgehoben werden. Außerdem erscheint ein kleines Werkzeugmenü und eine Seitenleiste mit den Eigenschaften des Weges.\n\n### Modifizieren\n\nOft sieht man, dass Wege nicht mit dem Luftbild oder einer GPS-Spur übereinstimmen. Du kannst den Weg aber so anpassen, dass er an der richtigen Stelle ist. Beachte jedoch, dass Luftbilder einen Versatz aufweisen können.\n\nAls Erstes wählst du einen Weg aus. Dieser wird nun hervorgehoben und es werden die Knoten des Weges angezeigt. Diese kannst du verschieben, bis sie an der richtigen Stelle sind. Wenn du neue Knoten hinzufügen möchtest, klicke doppelt zwischen den Knoten auf die Linie und es wird ein neuer Punkt erzeugt.\n\nWenn zwei Wege in Wirklichkeit mit einander verbunden sind, aber auf der Karte nicht, kannst du sie verbinden, indem du einen Knoten des einen Weges auf den anderen Weg ziehst. Dass Wege verbunden sind, ist wichtig für die Karte und essentiell für die Nutzung von Routenführung.\n\nDu kannst auch das \"Bewegen\"-Werkzeug nutzen oder \"M\" drücken, um den kompletten Weg zu verschieben. Beende die Aktion mit einem Klick.\n\n### Löschen\n\nWenn du weißt, dass ein Weg nicht existiert, kannst du ihn löschen, um ihn von der Karte zu entfernen. Sei beim Löschen von Objekten besonders vorsichtig, da diese Änderungen von jedem gesehen werden können und Luftbilder oft veraltet sind. Das heißt, dass ein Weg, der im Luftbild nicht zu sehen ist, vielleicht einfach neu gebaut wurde.\n\nDu kannst Wege löschen, indem du sie anklickst und das Mülltonnensymbol auswählst oder die \"Entfernen\"-Taste drückst.\n\n### Erstellen\n\nDu kennst einen Weg der nicht eingezeichnet ist? Dann klicke auf das \"Linien\"-Symbol oben links im Editor oder drücke die Taste \"2\" und beginne mit dem Zeichnen einer Linie.\n\nKlicke dort hin, wo die Straße anfängt. Sollte sie von einer bereits existierenden Straße abzweigen, klicke an der entsprechenden Stelle auf diese Straße.\n\nZeichne nun den Weg, indem du Punkte anhand der Luftaufnahme oder der GPS-Spur entlang des Weges setzt. Sollte der Weg einen anderen kreuzen, klicke auf den Kreuzungspunkt, um beide Wege zu verbinden. Wenn du mit dem Zeichnen fertig bist, klicke doppelt oder drücke \"Enter\" auf der Tastatur, um den Weg abzuschließen.\n",
|
||||
"gps": "# GPS\n\nGPS-Daten sind die vertrauenswürdigste Quelle für OpenStreetMap.\nDieser Editor unterstützt lokale GPS-Spuren — \".gpx\"-Dateien auf \ndeinem Computer. Du kannst diese GPS-Spuren mit Hilfe diverser\nSmartphone-Apps oder anderen GPS-Geräten aufnehmen.\n\nFür Informationen über das Sammeln von GPS-Daten kannst du dir\nfolgende Anleitung durchlesen: [Surveying with a GPS](http://learnosm.org/en/beginner/using-gps/) (zur Zeit nur auf Englisch)\n\nUm einen GPX-Track zu verwenden, ziehe ihn einfach in den Karteneditor.\nWenn er erkannt wurde, wird dieser Track als leuchtend grüne Linie auf\nder Karte dargestellt. Klicke auf \"Hintergrundeinstellungen\", um sie zu\n(de-)aktivieren, oder um zum Gebiet des Tracks zu gelangen (Lupe).\n\nDer GPX-Track wird nicht automatisch direkt zu OpenStreetMap hochgeladen.\nAm besten verwendest du ihn, um neue Wege hinzuzufügen. Möchtest du den \nGPX-Track jedem zugänglich machen, kannst du ihn über die [Track-Upload-Seite](http://www.openstreetmap.org/trace/create) hochladen.\n",
|
||||
|
@ -465,7 +466,7 @@
|
|||
"address": {
|
||||
"label": "Adresse",
|
||||
"placeholders": {
|
||||
"housename": "Hausname",
|
||||
"housename": "postalischer Hausname",
|
||||
"number": "123",
|
||||
"street": "Straße",
|
||||
"city": "Stadt",
|
||||
|
@ -961,7 +962,7 @@
|
|||
"terms": "Geldautomat"
|
||||
},
|
||||
"amenity/bank": {
|
||||
"name": "Bank",
|
||||
"name": "Bank (Geldinstitut)",
|
||||
"terms": "Kasse,Kontor,Kreditgenossenschaft,Lagerstelle,Fiskus,Fonds,Vermögen,Investmentfirma,Register,Rücklage,Vorrat,Tresor,Rücklagen,Grundkapital,Vorrat,Lager,Lagerhaus,Sparkasse,Schatz,Treuhandgesellschaft,Tresorraum"
|
||||
},
|
||||
"amenity/bar": {
|
||||
|
@ -969,7 +970,7 @@
|
|||
"terms": "Bar"
|
||||
},
|
||||
"amenity/bench": {
|
||||
"name": "Bank",
|
||||
"name": "Sitzbank",
|
||||
"terms": "Bank, Sitzbank"
|
||||
},
|
||||
"amenity/bicycle_parking": {
|
||||
|
@ -1284,10 +1285,46 @@
|
|||
"name": "Wohnungen",
|
||||
"terms": "Wohnung"
|
||||
},
|
||||
"building/barn": {
|
||||
"name": "Scheune",
|
||||
"terms": "Scheune, Stall"
|
||||
},
|
||||
"building/bunker": {
|
||||
"name": "Bunker",
|
||||
"terms": "Bunker, Schutzraum"
|
||||
},
|
||||
"building/cabin": {
|
||||
"name": "Hütte",
|
||||
"terms": "Hütte, Wochenendhaus"
|
||||
},
|
||||
"building/cathedral": {
|
||||
"name": "Kathedrale",
|
||||
"terms": "Kathedrale, Dom"
|
||||
},
|
||||
"building/chapel": {
|
||||
"name": "Kapelle (Sakralbau)",
|
||||
"terms": "Kapelle"
|
||||
},
|
||||
"building/church": {
|
||||
"name": "Kirche",
|
||||
"terms": "Kirche"
|
||||
},
|
||||
"building/commercial": {
|
||||
"name": "Geschäftshaus",
|
||||
"terms": "Gewerbehaus,gewerblich genutztes Gebäude,"
|
||||
},
|
||||
"building/construction": {
|
||||
"name": "im Bau befindliches Gebäude",
|
||||
"terms": "Gebäude im Bau"
|
||||
},
|
||||
"building/detached": {
|
||||
"name": "Doppelhaus",
|
||||
"terms": "Haushälfte, Doppelhaus"
|
||||
},
|
||||
"building/dormitory": {
|
||||
"name": "Schlafsaal",
|
||||
"terms": "Schlafsaal, Dormitorium"
|
||||
},
|
||||
"building/entrance": {
|
||||
"name": "Eingang",
|
||||
"terms": "Eingang"
|
||||
|
@ -1296,6 +1333,22 @@
|
|||
"name": "Garage",
|
||||
"terms": "Garage"
|
||||
},
|
||||
"building/garages": {
|
||||
"name": "Garagen",
|
||||
"terms": "Garagen"
|
||||
},
|
||||
"building/greenhouse": {
|
||||
"name": "Gewächshaus",
|
||||
"terms": "Glashaus, Gewächshaus, Treibhaus"
|
||||
},
|
||||
"building/hospital": {
|
||||
"name": "Krankenhausgebäude",
|
||||
"terms": "Krankenhausgebäude, Klinikgebäude"
|
||||
},
|
||||
"building/hotel": {
|
||||
"name": "Hotelgebäude",
|
||||
"terms": "Hotelgebäude"
|
||||
},
|
||||
"building/house": {
|
||||
"name": "Haus",
|
||||
"terms": "Haus"
|
||||
|
@ -1308,10 +1361,54 @@
|
|||
"name": "Industriegebäude",
|
||||
"terms": "Industriegebäude"
|
||||
},
|
||||
"building/public": {
|
||||
"name": "Öffentliches Gebäude",
|
||||
"terms": "Öffentliches Gebäude"
|
||||
},
|
||||
"building/residential": {
|
||||
"name": "Wohngebäude",
|
||||
"terms": "Wohnhaus,Einfamilienhaus,Mehrfamilienhaus"
|
||||
},
|
||||
"building/retail": {
|
||||
"name": "Geschäftsgebäude",
|
||||
"terms": "Geschäftsgebäude, Gebäude mit Läden"
|
||||
},
|
||||
"building/roof": {
|
||||
"name": "Dach",
|
||||
"terms": "Dach"
|
||||
},
|
||||
"building/school": {
|
||||
"name": "Schulgebäude",
|
||||
"terms": "Schulgebäude, Schulhaus"
|
||||
},
|
||||
"building/shed": {
|
||||
"name": "Schuppen",
|
||||
"terms": "Hütte, Baracke"
|
||||
},
|
||||
"building/stable": {
|
||||
"name": "Stall",
|
||||
"terms": "Stall, Stallgebäude"
|
||||
},
|
||||
"building/static_caravan": {
|
||||
"name": "Feststehender Wohnwagen",
|
||||
"terms": "Abgestellter Wohnwagen"
|
||||
},
|
||||
"building/terrace": {
|
||||
"name": "Reihenhäuser",
|
||||
"terms": "Reihenhäuser"
|
||||
},
|
||||
"building/train_station": {
|
||||
"name": "Bahnhof",
|
||||
"terms": "Bahnhof, Haltestelle, Haltepunkt"
|
||||
},
|
||||
"building/university": {
|
||||
"name": "Universitätsgebäude",
|
||||
"terms": "Universitätsgebäude, Campusgebäude"
|
||||
},
|
||||
"building/warehouse": {
|
||||
"name": "Lagerhalle",
|
||||
"terms": "Lagerhaus, Lagergebäude"
|
||||
},
|
||||
"craft/basket_maker": {
|
||||
"name": "Korbflechter",
|
||||
"terms": "Korbflecher, Korbmacher, Korbhersteller"
|
||||
|
@ -1754,7 +1851,7 @@
|
|||
},
|
||||
"landuse/commercial": {
|
||||
"name": "Gewerbegebiet",
|
||||
"terms": "Gewerbezone,Gewerbegebiet,gewerblich genutzte Gebäude,Buissenes Park,Büros"
|
||||
"terms": "Gewerbezone,Gewerbegebiet,gewerblich genutzte Gebäude,Business Park,Büros"
|
||||
},
|
||||
"landuse/construction": {
|
||||
"name": "Baustelle",
|
||||
|
@ -2288,6 +2385,10 @@
|
|||
"name": "Spirituosenladen",
|
||||
"terms": "Alkohol"
|
||||
},
|
||||
"shop/art": {
|
||||
"name": "Kunsthandlung",
|
||||
"terms": "Kunsthandlung, Kunstladen"
|
||||
},
|
||||
"shop/bakery": {
|
||||
"name": "Bäckerei",
|
||||
"terms": "Bäckerei"
|
||||
|
@ -2304,6 +2405,10 @@
|
|||
"name": "Fahrradladen",
|
||||
"terms": "Fahrradladen, Fahrradgeschäft, Fahrrad-Geschäft, Fahrrad-Handlung"
|
||||
},
|
||||
"shop/bookmaker": {
|
||||
"name": "Buchmacher",
|
||||
"terms": "Buchmacher"
|
||||
},
|
||||
"shop/books": {
|
||||
"name": "Buchhandlung",
|
||||
"terms": "Buchhandlung, Buchladen"
|
||||
|
@ -2424,6 +2529,10 @@
|
|||
"name": "Schlosser",
|
||||
"terms": "Schlosser, Schlüsseldienst"
|
||||
},
|
||||
"shop/lottery": {
|
||||
"name": "Lottoannahmestelle",
|
||||
"terms": "Lottoannahmestelle"
|
||||
},
|
||||
"shop/mall": {
|
||||
"name": "Einkaufzentrum",
|
||||
"terms": "Einkaufszentrum, Mall"
|
||||
|
|
6
vendor/assets/iD/iD/locales/en-GB.json
vendored
6
vendor/assets/iD/iD/locales/en-GB.json
vendored
|
@ -82,6 +82,12 @@
|
|||
"amenity/theatre": {
|
||||
"name": "Theatre"
|
||||
},
|
||||
"building/static_caravan": {
|
||||
"name": "Static Caravan"
|
||||
},
|
||||
"building/terrace": {
|
||||
"name": "Terraced houses"
|
||||
},
|
||||
"leisure/sports_center": {
|
||||
"name": "Sports Centre"
|
||||
},
|
||||
|
|
111
vendor/assets/iD/iD/locales/en.json
vendored
111
vendor/assets/iD/iD/locales/en.json
vendored
|
@ -134,7 +134,8 @@
|
|||
"annotation": "Merged {n} lines.",
|
||||
"not_eligible": "These features can't be merged.",
|
||||
"not_adjacent": "These lines can't be merged because they aren't connected.",
|
||||
"restriction": "These lines can't be merged because at least one is a member of a \"{relation}\" relation."
|
||||
"restriction": "These lines can't be merged because at least one is a member of a \"{relation}\" relation.",
|
||||
"incomplete_relation": "These features can't be merged because at least one hasn't been fully downloaded."
|
||||
},
|
||||
"move": {
|
||||
"title": "Move",
|
||||
|
@ -1290,10 +1291,46 @@
|
|||
"name": "Apartments",
|
||||
"terms": ""
|
||||
},
|
||||
"building/barn": {
|
||||
"name": "Barn",
|
||||
"terms": ""
|
||||
},
|
||||
"building/bunker": {
|
||||
"name": "Bunker",
|
||||
"terms": ""
|
||||
},
|
||||
"building/cabin": {
|
||||
"name": "Cabin",
|
||||
"terms": ""
|
||||
},
|
||||
"building/cathedral": {
|
||||
"name": "Cathedral",
|
||||
"terms": ""
|
||||
},
|
||||
"building/chapel": {
|
||||
"name": "Chapel",
|
||||
"terms": ""
|
||||
},
|
||||
"building/church": {
|
||||
"name": "Church",
|
||||
"terms": ""
|
||||
},
|
||||
"building/commercial": {
|
||||
"name": "Commercial Building",
|
||||
"terms": ""
|
||||
},
|
||||
"building/construction": {
|
||||
"name": "Building Under Construction",
|
||||
"terms": ""
|
||||
},
|
||||
"building/detached": {
|
||||
"name": "Detached Home",
|
||||
"terms": ""
|
||||
},
|
||||
"building/dormitory": {
|
||||
"name": "Dormitory",
|
||||
"terms": ""
|
||||
},
|
||||
"building/entrance": {
|
||||
"name": "Entrance",
|
||||
"terms": ""
|
||||
|
@ -1302,6 +1339,22 @@
|
|||
"name": "Garage",
|
||||
"terms": ""
|
||||
},
|
||||
"building/garages": {
|
||||
"name": "Garages",
|
||||
"terms": ""
|
||||
},
|
||||
"building/greenhouse": {
|
||||
"name": "Greenhouse",
|
||||
"terms": ""
|
||||
},
|
||||
"building/hospital": {
|
||||
"name": "Hospital Building",
|
||||
"terms": ""
|
||||
},
|
||||
"building/hotel": {
|
||||
"name": "Hotel Building",
|
||||
"terms": ""
|
||||
},
|
||||
"building/house": {
|
||||
"name": "House",
|
||||
"terms": ""
|
||||
|
@ -1314,10 +1367,54 @@
|
|||
"name": "Industrial Building",
|
||||
"terms": ""
|
||||
},
|
||||
"building/public": {
|
||||
"name": "Public Building",
|
||||
"terms": ""
|
||||
},
|
||||
"building/residential": {
|
||||
"name": "Residential Building",
|
||||
"terms": ""
|
||||
},
|
||||
"building/retail": {
|
||||
"name": "Retail Building",
|
||||
"terms": ""
|
||||
},
|
||||
"building/roof": {
|
||||
"name": "Roof",
|
||||
"terms": ""
|
||||
},
|
||||
"building/school": {
|
||||
"name": "School Building",
|
||||
"terms": ""
|
||||
},
|
||||
"building/shed": {
|
||||
"name": "Shed",
|
||||
"terms": ""
|
||||
},
|
||||
"building/stable": {
|
||||
"name": "Stable",
|
||||
"terms": ""
|
||||
},
|
||||
"building/static_caravan": {
|
||||
"name": "Static Mobile Home",
|
||||
"terms": ""
|
||||
},
|
||||
"building/terrace": {
|
||||
"name": "Row Houses",
|
||||
"terms": ""
|
||||
},
|
||||
"building/train_station": {
|
||||
"name": "Train Station",
|
||||
"terms": ""
|
||||
},
|
||||
"building/university": {
|
||||
"name": "University Building",
|
||||
"terms": ""
|
||||
},
|
||||
"building/warehouse": {
|
||||
"name": "Warehouse",
|
||||
"terms": ""
|
||||
},
|
||||
"craft/basket_maker": {
|
||||
"name": "Basket Maker",
|
||||
"terms": "basket,basketry,basket maker,basket weaver"
|
||||
|
@ -2294,6 +2391,10 @@
|
|||
"name": "Liquor Store",
|
||||
"terms": "alcohol"
|
||||
},
|
||||
"shop/art": {
|
||||
"name": "Art Shop",
|
||||
"terms": "art store,art gallery"
|
||||
},
|
||||
"shop/bakery": {
|
||||
"name": "Bakery",
|
||||
"terms": ""
|
||||
|
@ -2310,6 +2411,10 @@
|
|||
"name": "Bicycle Shop",
|
||||
"terms": ""
|
||||
},
|
||||
"shop/bookmaker": {
|
||||
"name": "Bookmaker",
|
||||
"terms": ""
|
||||
},
|
||||
"shop/books": {
|
||||
"name": "Bookstore",
|
||||
"terms": ""
|
||||
|
@ -2430,6 +2535,10 @@
|
|||
"name": "Locksmith",
|
||||
"terms": "keys"
|
||||
},
|
||||
"shop/lottery": {
|
||||
"name": "Lottery Shop",
|
||||
"terms": ""
|
||||
},
|
||||
"shop/mall": {
|
||||
"name": "Mall",
|
||||
"terms": ""
|
||||
|
|
310
vendor/assets/iD/iD/locales/es.json
vendored
310
vendor/assets/iD/iD/locales/es.json
vendored
|
@ -134,7 +134,8 @@
|
|||
"annotation": "{n} líneas combinadas.",
|
||||
"not_eligible": "Estos elementos no pueden ser fusionados.",
|
||||
"not_adjacent": "Estas líneas no pueden ser fusionadas porque no están conectadas",
|
||||
"restriction": "Estas líneas no se pueden combinar porque al menos una es miembro de una relación de \"{relation}\"."
|
||||
"restriction": "Estas líneas no se pueden combinar porque al menos una es miembro de una relación de \"{relation}\".",
|
||||
"incomplete_relation": "Estos elementos no se pueden combinar porque al menos uno de ellos no se ha descargado por completo."
|
||||
},
|
||||
"move": {
|
||||
"title": "Mover",
|
||||
|
@ -490,6 +491,7 @@
|
|||
"placeholder": "1, 2, 3..."
|
||||
},
|
||||
"aerialway/occupancy": {
|
||||
"label": "Ocupación",
|
||||
"placeholder": "2, 4, 8..."
|
||||
},
|
||||
"aeroway": {
|
||||
|
@ -525,6 +527,9 @@
|
|||
"building_area": {
|
||||
"label": "Edificio"
|
||||
},
|
||||
"cans": {
|
||||
"label": "Acepta envases"
|
||||
},
|
||||
"capacity": {
|
||||
"label": "Capacidad",
|
||||
"placeholder": "50, 100, 200..."
|
||||
|
@ -539,6 +544,9 @@
|
|||
"anticlockwise": "En sentido antihorario"
|
||||
}
|
||||
},
|
||||
"clothes": {
|
||||
"label": "Acepta ropas"
|
||||
},
|
||||
"collection_times": {
|
||||
"label": "Horario de recogida"
|
||||
},
|
||||
|
@ -566,6 +574,9 @@
|
|||
"description": {
|
||||
"label": "Descripción"
|
||||
},
|
||||
"electrified": {
|
||||
"label": "Electrificación"
|
||||
},
|
||||
"elevation": {
|
||||
"label": "Altura"
|
||||
},
|
||||
|
@ -580,7 +591,7 @@
|
|||
"placeholder": "+31 42 123 4567"
|
||||
},
|
||||
"fee": {
|
||||
"label": "Tarifa"
|
||||
"label": "Couta"
|
||||
},
|
||||
"fire_hydrant/type": {
|
||||
"label": "Tipo"
|
||||
|
@ -588,6 +599,9 @@
|
|||
"fixme": {
|
||||
"label": "Arreglame"
|
||||
},
|
||||
"gauge": {
|
||||
"label": "Gálibo"
|
||||
},
|
||||
"generator/method": {
|
||||
"label": "Método"
|
||||
},
|
||||
|
@ -597,6 +611,9 @@
|
|||
"generator/type": {
|
||||
"label": "Tipo"
|
||||
},
|
||||
"glass": {
|
||||
"label": "Acepta vidrio"
|
||||
},
|
||||
"golf_hole": {
|
||||
"label": "Referencia",
|
||||
"placeholder": "Número de hoyo (1-18)"
|
||||
|
@ -689,6 +706,9 @@
|
|||
"operator": {
|
||||
"label": "Operador"
|
||||
},
|
||||
"paper": {
|
||||
"label": "Acepta papel"
|
||||
},
|
||||
"par": {
|
||||
"label": "Par",
|
||||
"placeholder": "3, 4, 5..."
|
||||
|
@ -760,6 +780,9 @@
|
|||
"shop": {
|
||||
"label": "Tipo"
|
||||
},
|
||||
"social_facility_for": {
|
||||
"placeholder": "Personas sin hogar, discapacitados, niños, etc"
|
||||
},
|
||||
"source": {
|
||||
"label": "Fuente"
|
||||
},
|
||||
|
@ -840,8 +863,23 @@
|
|||
"aerialway": {
|
||||
"name": "Pista aérea"
|
||||
},
|
||||
"aerialway/cable_car": {
|
||||
"name": "Teleférico",
|
||||
"terms": "transbordador, funicular, telecabina, telesilla, telesquí"
|
||||
},
|
||||
"aerialway/chair_lift": {
|
||||
"name": "Telesilla",
|
||||
"terms": "telesquí, teleférico, funicular"
|
||||
},
|
||||
"aerialway/gondola": {
|
||||
"name": "Góndola"
|
||||
"name": "Góndola",
|
||||
"terms": "Telecabina"
|
||||
},
|
||||
"aerialway/magic_carpet": {
|
||||
"name": "Alfombra mágica"
|
||||
},
|
||||
"aerialway/pylon": {
|
||||
"name": "Pilona"
|
||||
},
|
||||
"aeroway": {
|
||||
"name": "Aerovía",
|
||||
|
@ -938,7 +976,8 @@
|
|||
"terms": "cinematógrafo,cine"
|
||||
},
|
||||
"amenity/clinic": {
|
||||
"name": "Clínica"
|
||||
"name": "Clínica",
|
||||
"terms": "clínica, centro médico, hospital"
|
||||
},
|
||||
"amenity/clock": {
|
||||
"name": "Reloj"
|
||||
|
@ -952,10 +991,12 @@
|
|||
"terms": "tribunal, magistratura, judicatura, audiencia,justicia"
|
||||
},
|
||||
"amenity/dentist": {
|
||||
"name": "Dentista"
|
||||
"name": "Dentista",
|
||||
"terms": "dentista, odontólogo"
|
||||
},
|
||||
"amenity/doctor": {
|
||||
"name": "Médico"
|
||||
"name": "Médico",
|
||||
"terms": "médico, doctor, facultativo, medicina, curador"
|
||||
},
|
||||
"amenity/drinking_water": {
|
||||
"name": "Agua potable",
|
||||
|
@ -982,7 +1023,7 @@
|
|||
"terms": "gasolinera,surtidor, estación de servicio"
|
||||
},
|
||||
"amenity/grave_yard": {
|
||||
"name": "Camposanto",
|
||||
"name": "Cementerio",
|
||||
"terms": "cementerio,camposanto, necrópolis, sacramental"
|
||||
},
|
||||
"amenity/hospital": {
|
||||
|
@ -1059,7 +1100,18 @@
|
|||
"terms": "escuela,colegio, academia, instituto, liceo, conservatorio"
|
||||
},
|
||||
"amenity/shelter": {
|
||||
"name": "Refugio"
|
||||
"name": "Refugio",
|
||||
"terms": "albergue, abrigo, amparo, asilo, cobertizo, garita, refugio"
|
||||
},
|
||||
"amenity/social_facility": {
|
||||
"name": "Instalación social"
|
||||
},
|
||||
"amenity/social_facility/food_bank": {
|
||||
"name": "Banco de alimentos"
|
||||
},
|
||||
"amenity/social_facility/homeless_shelter": {
|
||||
"name": "Refugio de vagabundos",
|
||||
"terms": "Refugio social"
|
||||
},
|
||||
"amenity/swimming_pool": {
|
||||
"name": "Piscina",
|
||||
|
@ -1078,7 +1130,7 @@
|
|||
"terms": "Teatro"
|
||||
},
|
||||
"amenity/toilets": {
|
||||
"name": "Baños",
|
||||
"name": "Aseos",
|
||||
"terms": "baños, baño, aseo, letrina, lavabo, servicio, tocador, ducha"
|
||||
},
|
||||
"amenity/townhall": {
|
||||
|
@ -1093,7 +1145,8 @@
|
|||
"name": "Máquina expendedora"
|
||||
},
|
||||
"amenity/veterinary": {
|
||||
"name": "Veterinario"
|
||||
"name": "Veterinario",
|
||||
"terms": "veterinario, albéitar, mascotas, animales"
|
||||
},
|
||||
"amenity/waste_basket": {
|
||||
"name": "Papelera",
|
||||
|
@ -1183,10 +1236,39 @@
|
|||
"name": "Apartamentos",
|
||||
"terms": "apartamento, piso, vivienda, alojamiento, buhardilla, estudio, edificio"
|
||||
},
|
||||
"building/barn": {
|
||||
"name": "Granero"
|
||||
},
|
||||
"building/bunker": {
|
||||
"name": "Búnker",
|
||||
"terms": "Fortaleza"
|
||||
},
|
||||
"building/cabin": {
|
||||
"name": "Cabina"
|
||||
},
|
||||
"building/cathedral": {
|
||||
"name": "Catedral",
|
||||
"terms": "Iglesia, Lugar de culto, templo, basílica, parroquia, santuario, oratorio, iglesia, basílica"
|
||||
},
|
||||
"building/chapel": {
|
||||
"name": "Capilla"
|
||||
},
|
||||
"building/church": {
|
||||
"name": "Iglesia",
|
||||
"terms": "templo, basílica, capilla, colegiata, parroquia, santuario, ermita, oratorio,iglesia, basílica, catedral"
|
||||
},
|
||||
"building/commercial": {
|
||||
"name": "Edificio comercial",
|
||||
"terms": "centro comercial, edificio comercial"
|
||||
},
|
||||
"building/construction": {
|
||||
"name": "Edificio bajo construcción",
|
||||
"terms": "Edificio en construcción"
|
||||
},
|
||||
"building/detached": {
|
||||
"name": "Casa unifamiliar",
|
||||
"terms": "Chalet, unifamiliar"
|
||||
},
|
||||
"building/entrance": {
|
||||
"name": "Entrada",
|
||||
"terms": "puerta, portal, vestíbulo, umbral, soportal, pórtico, abertura, acceso, boca, embocadura, agujero, hueco"
|
||||
|
@ -1195,6 +1277,20 @@
|
|||
"name": "Garaje",
|
||||
"terms": "garaje,cochera"
|
||||
},
|
||||
"building/garages": {
|
||||
"name": "Garajes",
|
||||
"terms": "garajes, cocheras"
|
||||
},
|
||||
"building/greenhouse": {
|
||||
"name": "Invernadero"
|
||||
},
|
||||
"building/hospital": {
|
||||
"name": "Edificio hospital",
|
||||
"terms": "Hospital, sanatorio, Centro de primeros auxilios"
|
||||
},
|
||||
"building/hotel": {
|
||||
"name": "Edificio Hotel"
|
||||
},
|
||||
"building/house": {
|
||||
"name": "Casa",
|
||||
"terms": "domicilio, hogar, vivienda, morada, residencia"
|
||||
|
@ -1207,52 +1303,164 @@
|
|||
"name": "Edificio industrial",
|
||||
"terms": "fábrica,factoría, industria, manufactura, taller, empresa, explotación"
|
||||
},
|
||||
"building/public": {
|
||||
"name": "Edificio Público"
|
||||
},
|
||||
"building/residential": {
|
||||
"name": "Edificio residencial",
|
||||
"terms": "bloque"
|
||||
},
|
||||
"building/roof": {
|
||||
"name": "Tejado"
|
||||
},
|
||||
"building/school": {
|
||||
"name": "Edificio Escuela",
|
||||
"terms": "Edificio colegio"
|
||||
},
|
||||
"building/shed": {
|
||||
"name": "Cobertizo"
|
||||
},
|
||||
"building/stable": {
|
||||
"name": "Establo",
|
||||
"terms": "Cuadra, caballeriza"
|
||||
},
|
||||
"building/static_caravan": {
|
||||
"name": "Caravana estática"
|
||||
},
|
||||
"building/terrace": {
|
||||
"name": "Bloque"
|
||||
},
|
||||
"building/train_station": {
|
||||
"name": "Estación de ferrocarril",
|
||||
"terms": "parada, alto, detención, apeadero, terminal, tren, ferrocarril"
|
||||
},
|
||||
"building/university": {
|
||||
"name": "Edificio universidad"
|
||||
},
|
||||
"building/warehouse": {
|
||||
"name": "Almacén",
|
||||
"terms": "almacén, depósito, bodega, lonja, nave"
|
||||
},
|
||||
"craft/beekeeper": {
|
||||
"name": "Apicultor"
|
||||
},
|
||||
"craft/blacksmith": {
|
||||
"name": "Herrero"
|
||||
},
|
||||
"craft/boatbuilder": {
|
||||
"name": "Constructor de barco"
|
||||
},
|
||||
"craft/bookbinder": {
|
||||
"name": "Capa"
|
||||
},
|
||||
"craft/brewery": {
|
||||
"name": "Cervecería"
|
||||
},
|
||||
"craft/carpenter": {
|
||||
"name": "Carpintería",
|
||||
"terms": "carpintero, ebanistería, ebanista, madera, madedero"
|
||||
},
|
||||
"craft/caterer": {
|
||||
"name": "Abastecedor, Proveedor"
|
||||
},
|
||||
"craft/clockmaker": {
|
||||
"name": "Relojero"
|
||||
},
|
||||
"craft/confectionary": {
|
||||
"name": "Golosinas",
|
||||
"terms": "golosinas, chucherías, caramelos"
|
||||
},
|
||||
"craft/dressmaker": {
|
||||
"name": "Modista"
|
||||
},
|
||||
"craft/electrician": {
|
||||
"name": "Electricista",
|
||||
"terms": "electricista, iluminista, trabajo de electricista"
|
||||
},
|
||||
"craft/gardener": {
|
||||
"name": "Jardinero, Jardinería"
|
||||
},
|
||||
"craft/glaziery": {
|
||||
"name": "Vidriería"
|
||||
},
|
||||
"craft/handicraft": {
|
||||
"name": "Artesanía"
|
||||
},
|
||||
"craft/hvac": {
|
||||
"name": "Aire acondicionado"
|
||||
},
|
||||
"craft/insulator": {
|
||||
"name": "Aislante"
|
||||
},
|
||||
"craft/jeweler": {
|
||||
"name": "Joyería",
|
||||
"terms": "joyero, relojería, relojero, platería, orfebrería, orfebre"
|
||||
},
|
||||
"craft/locksmith": {
|
||||
"name": "Cerrajero",
|
||||
"terms": "Cerrajero, cerraduras"
|
||||
},
|
||||
"craft/metal_construction": {
|
||||
"name": "Construcción metálica"
|
||||
},
|
||||
"craft/optician": {
|
||||
"name": "Óptico",
|
||||
"terms": "óptico, óptica, gafas"
|
||||
},
|
||||
"craft/painter": {
|
||||
"name": "Pintor, albañil"
|
||||
},
|
||||
"craft/photographer": {
|
||||
"name": "Fotógrafo"
|
||||
"name": "Fotógrafo",
|
||||
"terms": "fotógrafo, retratista"
|
||||
},
|
||||
"craft/photographic_labratory": {
|
||||
"name": "Laboratorio fotográfico"
|
||||
},
|
||||
"craft/plasterer": {
|
||||
"name": "Yesero",
|
||||
"terms": "yeso, albañil, obra"
|
||||
},
|
||||
"craft/plumber": {
|
||||
"name": "Fontanero"
|
||||
},
|
||||
"craft/pottery": {
|
||||
"name": "Cerámica",
|
||||
"terms": "cerámica, cerasmista, alfarería, cantarería, alcaller, alfar"
|
||||
},
|
||||
"craft/saddler": {
|
||||
"terms": "guarnicionero, talabartero, guarnicería"
|
||||
},
|
||||
"craft/sailmaker": {
|
||||
"name": "Velero",
|
||||
"terms": "Fabricante de velas"
|
||||
},
|
||||
"craft/sawmill": {
|
||||
"name": "Aserradero"
|
||||
},
|
||||
"craft/scaffolder": {
|
||||
"name": "Andamiaje"
|
||||
},
|
||||
"craft/sculpter": {
|
||||
"name": "Escultor",
|
||||
"terms": "escultor, artista, cincelador, imaginero, tallista, modelista"
|
||||
},
|
||||
"craft/shoemaker": {
|
||||
"name": "zapatero, remendón, zapatería, arreglo de zapatos"
|
||||
"name": "zapatero, remendón, zapatería, arreglo de zapatos",
|
||||
"terms": "zapatero, remendón"
|
||||
},
|
||||
"craft/tailor": {
|
||||
"name": "Sastre"
|
||||
},
|
||||
"craft/upholsterer": {
|
||||
"name": "Tapicero"
|
||||
},
|
||||
"craft/watchmaker": {
|
||||
"name": "Relojero"
|
||||
},
|
||||
"craft/window_construction": {
|
||||
"name": "Construcción de ventanas"
|
||||
},
|
||||
"embankment": {
|
||||
"name": "Terraplén"
|
||||
},
|
||||
|
@ -1272,7 +1480,8 @@
|
|||
"terms": "puerta, portal, vestíbulo, umbral, soportal, pórtico, abertura, acceso, boca, entrada, portilla"
|
||||
},
|
||||
"footway/crossing": {
|
||||
"name": "Cruce peatonal"
|
||||
"name": "Cruce peatonal",
|
||||
"terms": "cruce, travesía, paso, cruzamiento, pasaje, vado, paseo, traviesa, paso de peatones"
|
||||
},
|
||||
"footway/sidewalk": {
|
||||
"name": "Acera",
|
||||
|
@ -1349,7 +1558,8 @@
|
|||
"terms": "calle, vía, paseo, avenida, bulevar, rambla, ronda, carrera, arteria, corredera, callejón, travesía, pasadizo, pasaje, rúa, vial, costanilla, callejuela"
|
||||
},
|
||||
"highway/rest_area": {
|
||||
"name": "Área de Descanso"
|
||||
"name": "Área de Descanso",
|
||||
"terms": "Área de descanso"
|
||||
},
|
||||
"highway/road": {
|
||||
"name": "Carretera sin categoría conocida",
|
||||
|
@ -1388,14 +1598,16 @@
|
|||
"terms": "aparcamiento, parking"
|
||||
},
|
||||
"highway/services": {
|
||||
"name": "Área de Servicio"
|
||||
"name": "Área de Servicio",
|
||||
"terms": "área de servicios, área de descanso"
|
||||
},
|
||||
"highway/steps": {
|
||||
"name": "Escaleras",
|
||||
"terms": "escalera, escalinata, grada, gradería, escala, escalerilla, peldaños, escalones"
|
||||
},
|
||||
"highway/stop": {
|
||||
"name": "Señal de Stop"
|
||||
"name": "Señal de Stop",
|
||||
"terms": "señal de detención, señal de parada, señal, stop, detención, parada"
|
||||
},
|
||||
"highway/tertiary": {
|
||||
"name": "Carretera local",
|
||||
|
@ -1494,7 +1706,8 @@
|
|||
"terms": "Granja"
|
||||
},
|
||||
"landuse/farmland": {
|
||||
"name": "Tierra de labranza"
|
||||
"name": "Tierra de labranza",
|
||||
"terms": "granja, tierra de cultivo"
|
||||
},
|
||||
"landuse/farmyard": {
|
||||
"name": "Tierras de cultivo",
|
||||
|
@ -1684,10 +1897,15 @@
|
|||
"terms": "Aerodromo, Aeropuerto, Pista"
|
||||
},
|
||||
"military/barracks": {
|
||||
"name": "Cuartel"
|
||||
"name": "Cuartel",
|
||||
"terms": "cuartel, barracones, acantonamiento, acuartelamiento, campamento"
|
||||
},
|
||||
"military/bunker": {
|
||||
"name": "Búnker"
|
||||
"name": "Búnker",
|
||||
"terms": "búnker, refugio subterráneo"
|
||||
},
|
||||
"military/range": {
|
||||
"name": "Rango militar"
|
||||
},
|
||||
"natural": {
|
||||
"name": "Natural",
|
||||
|
@ -1849,8 +2067,8 @@
|
|||
"terms": "urbe, capital, metrópoli, ciudad, núcleo urbano, localidad, villa"
|
||||
},
|
||||
"place/hamlet": {
|
||||
"name": "Aldea",
|
||||
"terms": "aldea, caserío, poblado, pueblo, aldehuela, aldeorrio, villorrio, pueblecito"
|
||||
"name": "Aldea o barrio",
|
||||
"terms": "aldea, caserío, poblado, pueblo, aldehuela, aldeorrio, villorrio, localidad, barrio, vecindario"
|
||||
},
|
||||
"place/island": {
|
||||
"name": "Isla",
|
||||
|
@ -1911,7 +2129,8 @@
|
|||
"name": "Plataforma"
|
||||
},
|
||||
"public_transport/stop_position": {
|
||||
"name": "Punto de parada"
|
||||
"name": "Punto de parada",
|
||||
"terms": "punto de detención, stop, parada"
|
||||
},
|
||||
"railway": {
|
||||
"name": "Ferrocarril",
|
||||
|
@ -1940,6 +2159,9 @@
|
|||
"name": "Monorraíl ",
|
||||
"terms": "Monorail"
|
||||
},
|
||||
"railway/narrow_gauge": {
|
||||
"name": "Carril de vía estrecha"
|
||||
},
|
||||
"railway/platform": {
|
||||
"name": "Andén",
|
||||
"terms": "Andén de ferrocarril"
|
||||
|
@ -1980,6 +2202,10 @@
|
|||
"name": "Licorería",
|
||||
"terms": "licor, trago, bebida, alcohol, tienda, licorería"
|
||||
},
|
||||
"shop/art": {
|
||||
"name": "Tienda de arte",
|
||||
"terms": "Galería de arte"
|
||||
},
|
||||
"shop/bakery": {
|
||||
"name": "Panadería o pastelería",
|
||||
"terms": "panadería, horno, tahona, tienda, pastelería, confitería, pastel, pan, bollería, bollo"
|
||||
|
@ -1996,6 +2222,9 @@
|
|||
"name": "Tienda de bicicletas",
|
||||
"terms": "tienda de bicicletas, bici"
|
||||
},
|
||||
"shop/bookmaker": {
|
||||
"name": "Librero"
|
||||
},
|
||||
"shop/books": {
|
||||
"name": "Librería",
|
||||
"terms": "librería, venta de libros"
|
||||
|
@ -2112,6 +2341,9 @@
|
|||
"shop/locksmith": {
|
||||
"name": "Cerrajero"
|
||||
},
|
||||
"shop/lottery": {
|
||||
"name": "Administración de loterías"
|
||||
},
|
||||
"shop/mall": {
|
||||
"name": "Centro comercial",
|
||||
"terms": "mall,centro comercial,plaza comercial"
|
||||
|
@ -2209,16 +2441,16 @@
|
|||
"terms": "casa"
|
||||
},
|
||||
"tourism/guest_house": {
|
||||
"name": "Pensión",
|
||||
"terms": "hostal,hotel,pensión"
|
||||
"name": "Hospedaje",
|
||||
"terms": "hostal, hotel, pensión, B&B, Bed & Breakfast, casa rural, bed and breakfast, posada, cama y desayuno, alojamiento, alojamiento rural, agroturismo, casa de aldea, casa de labranza, hostería"
|
||||
},
|
||||
"tourism/hostel": {
|
||||
"name": "Albergue",
|
||||
"terms": "hostal,hotel,pensión"
|
||||
"terms": "hostal, hotel, pensión, alojamiento, albergue, hostería"
|
||||
},
|
||||
"tourism/hotel": {
|
||||
"name": "Hotel",
|
||||
"terms": "hotel,hostal,pensión"
|
||||
"terms": "hotel, hostal, pensión, alojamiento"
|
||||
},
|
||||
"tourism/information": {
|
||||
"name": "Información",
|
||||
|
@ -2226,7 +2458,7 @@
|
|||
},
|
||||
"tourism/motel": {
|
||||
"name": "Motel",
|
||||
"terms": "hostal,hotel.motel,pensión"
|
||||
"terms": "hostal, hotel, motel, pensión, alojamiento"
|
||||
},
|
||||
"tourism/museum": {
|
||||
"name": "Museo",
|
||||
|
@ -2237,10 +2469,12 @@
|
|||
"terms": "picnic,barbacoa,espercimiento"
|
||||
},
|
||||
"tourism/theme_park": {
|
||||
"name": "Parque temático"
|
||||
"name": "Parque temático",
|
||||
"terms": "parque temático, parque de atracciones, atracciones"
|
||||
},
|
||||
"tourism/viewpoint": {
|
||||
"name": "Vista panorámica"
|
||||
"name": "Vista panorámica",
|
||||
"terms": "oteadero, punto de vista, mirador, vistas"
|
||||
},
|
||||
"tourism/zoo": {
|
||||
"name": "Zoo",
|
||||
|
@ -2270,22 +2504,27 @@
|
|||
"name": "Ruta en bicicleta"
|
||||
},
|
||||
"type/route/bus": {
|
||||
"name": "Ruta del colectivo"
|
||||
"name": "Ruta del colectivo",
|
||||
"terms": "ruta de autobús, ruta de bus, línea de autobús, recorrido, trayecto, itinerario, bus, autobús"
|
||||
},
|
||||
"type/route/detour": {
|
||||
"name": "Ruta de desvío"
|
||||
"name": "Ruta de desvío",
|
||||
"terms": "ruta de desvío, dirección alternativa, alternativa, ruta, itinerario alternativo,"
|
||||
},
|
||||
"type/route/ferry": {
|
||||
"name": "Ruta de Ferry"
|
||||
"name": "Ruta de Ferry",
|
||||
"terms": "ruta, itinerario, rumbo, dirección, trayecto, ferry, transbordador"
|
||||
},
|
||||
"type/route/foot": {
|
||||
"name": "Ruta a pie"
|
||||
"name": "Ruta a pie",
|
||||
"terms": "ruta, itinerario, rumbo, dirección, trayecto, peatonal, pie, senderismo , camino, derrotero, vía"
|
||||
},
|
||||
"type/route/hiking": {
|
||||
"name": "Ruta de senderismo"
|
||||
},
|
||||
"type/route/pipeline": {
|
||||
"name": "Ruta de tubería"
|
||||
"name": "Ruta de tubería",
|
||||
"terms": "ruta, itinerario, rumbo, dirección, trayecto, ferry, trasbordador, tubería, gasoducto, oleoducto, conducto, cañería"
|
||||
},
|
||||
"type/route/power": {
|
||||
"name": "Ruta de red elécrica"
|
||||
|
@ -2303,7 +2542,8 @@
|
|||
"name": "Ruta maestra"
|
||||
},
|
||||
"vertex": {
|
||||
"name": "Otro"
|
||||
"name": "Otro",
|
||||
"terms": "diferente, distinto, ajeno, otro"
|
||||
},
|
||||
"waterway": {
|
||||
"name": "Vía fluvial",
|
||||
|
|
30
vendor/assets/iD/iD/locales/fi.json
vendored
30
vendor/assets/iD/iD/locales/fi.json
vendored
|
@ -488,6 +488,9 @@
|
|||
"label": "Vaunun matkustajamäärä",
|
||||
"placeholder": "2, 4, 8..."
|
||||
},
|
||||
"aerialway/summer/access": {
|
||||
"label": "Käyttöoikeus kesällä"
|
||||
},
|
||||
"aeroway": {
|
||||
"label": "Tyyppi"
|
||||
},
|
||||
|
@ -521,6 +524,9 @@
|
|||
"building_area": {
|
||||
"label": "Rakennus"
|
||||
},
|
||||
"cans": {
|
||||
"label": "Tölkinkeräys"
|
||||
},
|
||||
"capacity": {
|
||||
"label": "Paikkamäärä",
|
||||
"placeholder": "50, 100, 200..."
|
||||
|
@ -535,6 +541,9 @@
|
|||
"anticlockwise": "Vastapäivään"
|
||||
}
|
||||
},
|
||||
"clothes": {
|
||||
"label": "Vaatekeräys"
|
||||
},
|
||||
"collection_times": {
|
||||
"label": "Tyhjennysaika"
|
||||
},
|
||||
|
@ -544,6 +553,9 @@
|
|||
"country": {
|
||||
"label": "Maa"
|
||||
},
|
||||
"covered": {
|
||||
"label": "Katos"
|
||||
},
|
||||
"crossing": {
|
||||
"label": "Tyyppi"
|
||||
},
|
||||
|
@ -593,6 +605,9 @@
|
|||
"generator/type": {
|
||||
"label": "Tyyppi"
|
||||
},
|
||||
"glass": {
|
||||
"label": "Lasinkeräys"
|
||||
},
|
||||
"highway": {
|
||||
"label": "Tyyppi"
|
||||
},
|
||||
|
@ -606,7 +621,7 @@
|
|||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Kallista"
|
||||
"label": "Kaltevuus"
|
||||
},
|
||||
"internet_access": {
|
||||
"label": "Internet-yhteys",
|
||||
|
@ -674,6 +689,9 @@
|
|||
"operator": {
|
||||
"label": "Toimija"
|
||||
},
|
||||
"paper": {
|
||||
"label": "Paperinkeräys"
|
||||
},
|
||||
"park_ride": {
|
||||
"label": "Autoparkki"
|
||||
},
|
||||
|
@ -730,7 +748,7 @@
|
|||
"label": "Tyyppi"
|
||||
},
|
||||
"sac_scale": {
|
||||
"label": "Polun haastavuus"
|
||||
"label": "Haastavuus"
|
||||
},
|
||||
"service": {
|
||||
"label": "Tyyppi"
|
||||
|
@ -776,7 +794,7 @@
|
|||
"label": "Tyyppi"
|
||||
},
|
||||
"trail_visibility": {
|
||||
"label": "Polun näkyvyys"
|
||||
"label": "Näkyvyys"
|
||||
},
|
||||
"tunnel": {
|
||||
"label": "Tunneli"
|
||||
|
@ -1028,6 +1046,10 @@
|
|||
"amenity/pub": {
|
||||
"name": "Pubi"
|
||||
},
|
||||
"amenity/recycling": {
|
||||
"name": "Kierrätyspiste",
|
||||
"terms": "kierrättäminen, kierrätys, lajittelu, uudelleenkäyttö, uudelleenkäyttäminen, ympäristö, lajittelupiste, lajitteluasema, jäte, jätteet, roskat, roska, roskikset, roskis, säiliö, roskasäiliö"
|
||||
},
|
||||
"amenity/restaurant": {
|
||||
"name": "Ravintola"
|
||||
},
|
||||
|
@ -1895,7 +1917,7 @@
|
|||
},
|
||||
"shop/hairdresser": {
|
||||
"name": "Parturi-kampaamo",
|
||||
"terms": "parturi, kampaaja, parturi-kampaamo, hiustenleikkuu, hiukset, hiusliike, hiusmyymälä, hiustenvärjäys, parranajo, parta"
|
||||
"terms": "parturi, kampaaja, kampaamo, parturi-kampaamo, hiustenleikkuu, hiukset, hiusliike, hiusmyymälä, hiustenvärjäys, parranajo, parta"
|
||||
},
|
||||
"shop/hardware": {
|
||||
"name": "Rautakauppa"
|
||||
|
|
82
vendor/assets/iD/iD/locales/fr.json
vendored
82
vendor/assets/iD/iD/locales/fr.json
vendored
|
@ -332,6 +332,7 @@
|
|||
},
|
||||
"help": {
|
||||
"title": "Aide",
|
||||
"help": "#Aide\n\n Ceci est un éditeur pour [OpenStreetMap](http://www.openstreetmap.org/), la carte du\n monde gratuite et éditable. Vous pouvez l'utiliser pour ajouter ou corriger les données\n dans votre zone, et participer ainsi à la réalisation d'une carte du monde libre de droits.\n\n Les modifications que vous réaliserez seront visibles de tout le monde. Pour commencer\n à éditer, vous devez créer un [compte gratuit sur OpenStreetMap](https://www.openstreetmap.org/user/new).\n\n [iD editor](http://ideditor.com/) est un projet collaboratif dont le [code source est\n disponible sur GitHub](https://github.com/openstreetmap/iD).\n",
|
||||
"editing_saving": "# Éditer et sauvegarder⏎\n⏎\nCet éditeur est conçu principalement pour travailler en mode connecté, et vous l'accéder depuis un site Web en ce moment.⏎\n⏎\n### Sélectionner un élément de la carte⏎\n⏎\nPour sélection un élément de la carte, tel qu'une rue ou un point d'intérêt, cliquez sur ce dernier⏎\nsur la carte. Cette action mettra l'élément en surbrillance, et ouvrira le panneau latéral⏎\nqui affiche les propriétés de l'élément. Un menu apparaîtra également sur la carte,⏎\npermettant de poser des actions sur l'élément (telles que le déplacer, repositionner⏎\nses points constituants, etc).\n⏎\nPour sélectionner plusieurs éléments, appuyez sur la touche 'Majuscule'. Puis, cliquez⏎\nun à un sur les éléments à sélectionner. Alternativement, il est possible de dessinez un rectangle⏎\nsur la carte (toujours en appuyant sur 'Majuscule) pour effectuer la sélection multiple.⏎\nles points à sélectionner.⏎\n⏎\n### Enregistrer les modifications⏎\n⏎\nL'éditeur enregistre localement (sur votre ordinateur) toutes les modifications⏎\nque vous effectuez sur les éléments de la carte (les rues, les bâtiments, etc.).⏎\nCes modifications seront envoyées au serveur OpenStreetMap uniquement⏎\nlorsque vous appuierez sur \"Sauvegarder\".⏎\n⏎\nNe vous faites donc pas de souci si vous faites une erreur. Vous pouvez annuler⏎\ntout changement effectué en appuyant sur le bouton d'annulation (la flèche de demi-tour⏎\npointant vers la gauche).⏎\n⏎\nLorsque vous avez terminé un groupe de modifications - par exemple, vous avez⏎\ncomplété une partie de la ville et vous voulez en débuter une nouvelle,⏎\nil suffit d'appuyer sur le bouton \"Sauvegarder\". Vos changements ne seront pas⏎\nenvoyés immédiatement - vous avez l'occasion de réviser le travail effectué⏎\navant de confirmer les changements. ⏎\n⏎\nSi tout semble bon, entrez un commentaire décrivant vos changements⏎\n(par exemple: \"Ajout d'une boulangerie\" ou \"Ajout de commerces du quartier\"),⏎\npuis appuyez à nouveau sur le bouton 'Sauvegarder' (qui, cette fois-ci, apparaîtra\nen bleu dans le panneau latéral). Vos changements seront alors envoyés à⏎\n[OpenStreetMap.org](http://www.openstreetmap.org/), où il seront partagés et rendus⏎\nvisibles à tous les autres utilisateurs.\n⏎\nSi vous ne pouvez pas terminer vos changements en une seule séance, vous pouvez⏎\nfermer la fenêtre de l'éditeur. Vos changements seront enregistrés localement.⏎\nLorsque vous ouvrirez à nouveau l'éditeur, sur le même ordinateur et avec le même⏎\nnavigateur Web, l'éditeur vous proposera de récupérer le travail de la séance précédente.⏎\n",
|
||||
"roads": "# Routes\n\nVous pouvez créer, mettre à jour et supprimer des routes à l'aide de l'éditeur. Il peut s'agir de tous types de routes : chemins, autoroutes, pistes cyclables, et plus encore : toute voie régulièrement fréquentée peut être cartographiée.\n\n### Sélection\n\nCliquez sur une route pour la sélectionner. Elle sera alors surlignée et un menu 'outils' apparaîtra sur la carte, ainsi qu'une barre d'état affichant des informations supplémentaires.\n\n### Modification\n\nIl est fréquent que les routes ne soient pas bien alignées avec l'imagerie satellite ou avec les traces GPS. Vous pouvez ajuster et corriger la position des routes.\n\nCliquez d'abord sur la route à modifier. Elle est alors surlignée et des points de contrôle apparaissent qui permettent de corriger sa position. Pour ajouter des points de contrôle, double-cliquez sur un segment de la route sans nœuds.\n\nSi la route est connectée à une autre, mais que la connexion est incorrecte, vous pouvez déplacer un de ses points de contrôle sur la seconde route pour corriger la connexion. Des routes bien connectées sont essentielles pour la carte et pour fournir de bonnes informations d'itinéraire.\n\nVous pouvez également cliquer sur l'outil 'Déplacer' ou appuyer sur le raccourci `M` pour déplacer l'ensemble de la route en une fois, puis cliquer de nouveau une fois pour sauvegarder le déplacement.\n\n### Suppression\n\nSi une route est complètement fausse - c'est-à-dire qu'elle n'apparaît pas sur l'image satellite, et que dans l'idéal, vous avez confirmé qu'elle n'existe pas sur le terrain - vous pouvez la supprimer, ce qui l'enlèvera de la carte. Faites attention lorsque vous supprimez des éléments : comme n'importe quelle autre modification, le résultat sera visible par tout le monde sur la carte. Les photos aériennes sont souvent dépassées et la route est peut-être tout simplement récente.\n\nPour supprimer une route, sélectionnez-la en cliquant dessus, puis cliquez sur l'icône 'Poubelle' ou appuyez sur la touche 'Suppr'.\n\n### Création\n\nVous avez constaté qu'une route de votre connaissance manque à la carte ? Cliquez sur l'icône 'Ligne' en haut à gauche de l'éditeur ou appuyez sur le raccourci `2` pour dessiner une route. \n\nPour commencer le dessin, cliquez sur l'endroit où commence la route. Si elle commence à l'embranchement d'une autre route, commencez le dessin en cliquant à l'endroit de la connexion.\n\nCliquez ensuite régulièrement le long de la route pour ajouter des points, en utilisant l'imagerie satellite comme référence. Si la route que vous dessinez croise une autre route, connectez les deux en cliquant à l'endroit de l'intersection. Lorsque vous avez terminé le dessin, double-cliquez ou appuyez sur 'Entrée'.\n",
|
||||
"gps": "# GPS⏎\n⏎\nLes traces GPS sont les données les plus fiables pour OpenStreetMap. ⏎\nCet éditeur connaît les traces au format -`.gpx`. Vous pouvez enregistrer ce\ntype de traces avec un grand nombre d'applications pour smartphones\nainsi qu'avec certains GPS de randonnées.⏎\n⏎\nPour plus d'informations sur la manière de relever des traces GPS, vous\npouvez consulter le guide [Surveying with a GPS](http://learnosm.org/en/beginner/using-gps/).⏎\n⏎\nPour utiliser un relevé GPX, il vous suffit de glisser-déposer le fichier GPX\ndirectement sur la carte. S'il est reconnu, il sera ajouté sur la carte sous\nla forme d'une ligne vert clair. Cliquez sur le menu \"Configuration du fond\nde carte\" à gauche pour activer et désactiver l'affichage de la trace, ou\nencore pour centrer le zoom sur la trace.⏎\n⏎\nLes traces GPX ne sont pas directement enregistrée dans OpenStreetMap.⏎\nLe meilleur moyen de les utiliser est de les prendre comme guide pour ajouter⏎\nvous même des informations sur la carte ou bien en les [upload it to OpenStreetMap](http://www.openstreetmap.org/trace/create)⏎\npour les fournir aux autres contributeurs⏎\n",
|
||||
|
@ -481,7 +482,8 @@
|
|||
"label": "Accès"
|
||||
},
|
||||
"aerialway/capacity": {
|
||||
"label": "Capacité (par heure)"
|
||||
"label": "Capacité (par heure)",
|
||||
"placeholder": "500, 2500, 5000..."
|
||||
},
|
||||
"aerialway/duration": {
|
||||
"label": "Durée (minutes)",
|
||||
|
@ -490,6 +492,10 @@
|
|||
"aerialway/heating": {
|
||||
"label": "Chauffé"
|
||||
},
|
||||
"aerialway/occupancy": {
|
||||
"label": "Nombre de places",
|
||||
"placeholder": "2, 4, 8..."
|
||||
},
|
||||
"aerialway/summer/access": {
|
||||
"label": "Accès (été)"
|
||||
},
|
||||
|
@ -716,6 +722,9 @@
|
|||
"piste/difficulty": {
|
||||
"label": "Difficulté"
|
||||
},
|
||||
"piste/grooming": {
|
||||
"label": "Damage"
|
||||
},
|
||||
"piste/type": {
|
||||
"label": "Type"
|
||||
},
|
||||
|
@ -786,6 +795,9 @@
|
|||
"cutting": "Tranchée"
|
||||
}
|
||||
},
|
||||
"studio_type": {
|
||||
"label": "Type"
|
||||
},
|
||||
"supervised": {
|
||||
"label": "Supervisé"
|
||||
},
|
||||
|
@ -844,12 +856,37 @@
|
|||
"name": "Adresse",
|
||||
"terms": "Adresse"
|
||||
},
|
||||
"aerialway": {
|
||||
"name": "Remontée mécanique"
|
||||
},
|
||||
"aerialway/cable_car": {
|
||||
"name": "Téléphérique"
|
||||
},
|
||||
"aerialway/chair_lift": {
|
||||
"name": "Télésiège"
|
||||
},
|
||||
"aerialway/gondola": {
|
||||
"name": "Gondole"
|
||||
},
|
||||
"aerialway/magic_carpet": {
|
||||
"name": "Bande transporteuse de personnes"
|
||||
},
|
||||
"aerialway/platter": {
|
||||
"name": "Téléski",
|
||||
"terms": "Remonte-pente, tire-fesses, téléski à enrouleurs, téléski à perches débrayables"
|
||||
},
|
||||
"aerialway/pylon": {
|
||||
"name": "Pylône de remontée mécanique"
|
||||
},
|
||||
"aerialway/rope_tow": {
|
||||
"name": "Télécorde"
|
||||
},
|
||||
"aerialway/station": {
|
||||
"name": "Gare de remontée mécanique"
|
||||
},
|
||||
"aerialway/t-bar": {
|
||||
"name": "Téléski bi-place"
|
||||
},
|
||||
"aeroway": {
|
||||
"name": "Aviation",
|
||||
"terms": "Piste de décollage, Piste d'atterissage, Piste"
|
||||
|
@ -1078,6 +1115,9 @@
|
|||
"name": "Abri",
|
||||
"terms": "Abri"
|
||||
},
|
||||
"amenity/studio": {
|
||||
"name": "Studio"
|
||||
},
|
||||
"amenity/swimming_pool": {
|
||||
"name": "Piscine",
|
||||
"terms": "Piscine"
|
||||
|
@ -1111,6 +1151,7 @@
|
|||
"terms": "Machine distributrice"
|
||||
},
|
||||
"amenity/veterinary": {
|
||||
"name": "Vétérinaire",
|
||||
"terms": "Vétérinaire"
|
||||
},
|
||||
"amenity/waste_basket": {
|
||||
|
@ -1201,6 +1242,15 @@
|
|||
"name": "Résidence",
|
||||
"terms": "Appartements"
|
||||
},
|
||||
"building/cathedral": {
|
||||
"name": "Cathédrale"
|
||||
},
|
||||
"building/chapel": {
|
||||
"name": "Chapelle"
|
||||
},
|
||||
"building/church": {
|
||||
"name": "Église"
|
||||
},
|
||||
"building/commercial": {
|
||||
"name": "Bâtiment commercial",
|
||||
"terms": "Bâtiment commercial"
|
||||
|
@ -1213,6 +1263,12 @@
|
|||
"name": "Garage",
|
||||
"terms": "Garage"
|
||||
},
|
||||
"building/greenhouse": {
|
||||
"name": "Serre"
|
||||
},
|
||||
"building/hotel": {
|
||||
"name": "Hôtel"
|
||||
},
|
||||
"building/house": {
|
||||
"name": "Maison",
|
||||
"terms": "Maison"
|
||||
|
@ -1225,10 +1281,25 @@
|
|||
"name": "Bâtiment industriel",
|
||||
"terms": "Bâtiment industriel"
|
||||
},
|
||||
"building/public": {
|
||||
"name": "Établissement public"
|
||||
},
|
||||
"building/residential": {
|
||||
"name": "Bâtiment résidentiel",
|
||||
"terms": "Bâtiment résidentiel"
|
||||
},
|
||||
"building/school": {
|
||||
"name": "Bâtiment d'enseignement"
|
||||
},
|
||||
"building/stable": {
|
||||
"name": "Étable"
|
||||
},
|
||||
"building/train_station": {
|
||||
"name": "Gare ferroviaire"
|
||||
},
|
||||
"building/university": {
|
||||
"name": "Université"
|
||||
},
|
||||
"craft/blacksmith": {
|
||||
"name": "Forgeron"
|
||||
},
|
||||
|
@ -1449,6 +1520,9 @@
|
|||
"name": "Route résidentielle",
|
||||
"terms": "Route résidentielle"
|
||||
},
|
||||
"highway/rest_area": {
|
||||
"name": "Aire de repos"
|
||||
},
|
||||
"highway/road": {
|
||||
"name": "Voie de type inconnu",
|
||||
"terms": "Route inconnue"
|
||||
|
@ -1962,6 +2036,9 @@
|
|||
"name": "Agence de voyage",
|
||||
"terms": "Agence de voyage"
|
||||
},
|
||||
"piste": {
|
||||
"name": "Piste de ski"
|
||||
},
|
||||
"place": {
|
||||
"name": "Toponymie",
|
||||
"terms": "Lieu"
|
||||
|
@ -2048,6 +2125,9 @@
|
|||
"name": "Voie ferrée désaffectée",
|
||||
"terms": "Voie ferrée non utilisée"
|
||||
},
|
||||
"railway/funicular": {
|
||||
"name": "Funiculaire"
|
||||
},
|
||||
"railway/halt": {
|
||||
"name": "Hall de gare",
|
||||
"terms": "Halte ferroviaire"
|
||||
|
|
3
vendor/assets/iD/iD/locales/hr.json
vendored
3
vendor/assets/iD/iD/locales/hr.json
vendored
|
@ -134,7 +134,8 @@
|
|||
"annotation": "Spojeno {n} linija.",
|
||||
"not_eligible": "Ova svojstva se ne mogu spojiti.",
|
||||
"not_adjacent": "Ove se linije ne mogu stopiti u jednu jer nisu spojene.",
|
||||
"restriction": "Ove se linije ne mogu spojiti jer je barem jedna član \"{relation}\" relacije."
|
||||
"restriction": "Ove se linije ne mogu spojiti jer je barem jedna član \"{relation}\" relacije.",
|
||||
"incomplete_relation": "Ove se značajke ne mogu spojiti jer bar jedna od njih nije potpuno preuzeta s Interneta."
|
||||
},
|
||||
"move": {
|
||||
"title": "Premjesti",
|
||||
|
|
79
vendor/assets/iD/iD/locales/it.json
vendored
79
vendor/assets/iD/iD/locales/it.json
vendored
|
@ -134,7 +134,8 @@
|
|||
"annotation": "Unite {n} linee.",
|
||||
"not_eligible": "Questi elementi non possono essere uniti.",
|
||||
"not_adjacent": "Queste linee non possono essere unite perché non sono connesse.",
|
||||
"restriction": "Queste linee non possono essere unite perché almeno una è membro di una relazione \"{relation}\"."
|
||||
"restriction": "Queste linee non possono essere unite perché almeno una è membro di una relazione \"{relation}\".",
|
||||
"incomplete_relation": "Questi elementi non posso essere uniti perché almeno uno di loro non è stato completamente scaricato."
|
||||
},
|
||||
"move": {
|
||||
"title": "Muovi",
|
||||
|
@ -1284,10 +1285,30 @@
|
|||
"name": "Appartamenti",
|
||||
"terms": "appartamenti,condominio,palazzo,palazzone,casermone,case popolari,abitazioni,case,edilizia popolare,peep,iacp"
|
||||
},
|
||||
"building/bunker": {
|
||||
"name": "Bunker",
|
||||
"terms": "bunker,casamatta"
|
||||
},
|
||||
"building/cathedral": {
|
||||
"name": "Cattedrale",
|
||||
"terms": "cattedrale,chiesa,monumento,religioso"
|
||||
},
|
||||
"building/church": {
|
||||
"name": "Chiesa",
|
||||
"terms": "cristiano,abbazia,basilica,cattedrale,presbiterio,cappella,chiesa,casa di Dio,luogo di preghiera,luogo di culto,missione,oratorio,parrocchia,sacello,edicola votiva,tabernacolo,tempio"
|
||||
},
|
||||
"building/commercial": {
|
||||
"name": "Edificio commerciale",
|
||||
"terms": "Edificio commerciale"
|
||||
},
|
||||
"building/construction": {
|
||||
"name": "Edificio in costruzione",
|
||||
"terms": "cantiere,struttura,in costruzione"
|
||||
},
|
||||
"building/dormitory": {
|
||||
"name": "Dormitorio",
|
||||
"terms": "dormitorio,struttura sociale"
|
||||
},
|
||||
"building/entrance": {
|
||||
"name": "Entrata",
|
||||
"terms": "Entrata"
|
||||
|
@ -1296,6 +1317,22 @@
|
|||
"name": "Garage",
|
||||
"terms": "Garage"
|
||||
},
|
||||
"building/garages": {
|
||||
"name": "Garage",
|
||||
"terms": "Garage,rimesse"
|
||||
},
|
||||
"building/greenhouse": {
|
||||
"name": "Serra",
|
||||
"terms": "serra,coltivazione,piante,orto,coltivazione,vegetali"
|
||||
},
|
||||
"building/hospital": {
|
||||
"name": "Edificio ospedaliero",
|
||||
"terms": "clinica,pronto soccorso,servizio sanitario,salute,hospice,ospizio,infermeria,istituzione,casa di cura,casa di riposo,sanatorio,ambulatorio,chirurgia,reparto"
|
||||
},
|
||||
"building/hotel": {
|
||||
"name": "Edificio alberghiero",
|
||||
"terms": "albergo,hotel"
|
||||
},
|
||||
"building/house": {
|
||||
"name": "Casa",
|
||||
"terms": "Casa"
|
||||
|
@ -1308,10 +1345,38 @@
|
|||
"name": "Edificio industriale",
|
||||
"terms": "Edifico industriale"
|
||||
},
|
||||
"building/public": {
|
||||
"name": "Edificio pubblico",
|
||||
"terms": "comunita,edificio comunitario,comunità"
|
||||
},
|
||||
"building/residential": {
|
||||
"name": "Edificio residenziale",
|
||||
"terms": "Edificio residenziale"
|
||||
},
|
||||
"building/roof": {
|
||||
"name": "Tettoia",
|
||||
"terms": "tetto,pensilina"
|
||||
},
|
||||
"building/school": {
|
||||
"name": "Edificio scolastico",
|
||||
"terms": "accademia,alma mater,lavagna,collegio,dipartimento,disciplina,classe,facoltà,aula,istituto,istituzione,riformatorio,scuola,edificio scolastico,seminario,università"
|
||||
},
|
||||
"building/stable": {
|
||||
"name": "Stalla",
|
||||
"terms": "stalla,ricovero,scuderia"
|
||||
},
|
||||
"building/train_station": {
|
||||
"name": "Stazione ferroviaria",
|
||||
"terms": "treno,stazione,centrale"
|
||||
},
|
||||
"building/university": {
|
||||
"name": "Edificio universitario",
|
||||
"terms": "college,alma"
|
||||
},
|
||||
"building/warehouse": {
|
||||
"name": "Magazzino",
|
||||
"terms": "magazzino,ripostiglio,rimessa"
|
||||
},
|
||||
"craft/blacksmith": {
|
||||
"name": "Maniscalco",
|
||||
"terms": "ferri di cavallo"
|
||||
|
@ -2124,6 +2189,10 @@
|
|||
"name": "Negozio di liquori",
|
||||
"terms": "alcool,liquori,grappa,rum,vodka"
|
||||
},
|
||||
"shop/art": {
|
||||
"name": "Negozio di opere d'arte",
|
||||
"terms": "opere d'arte,quadri,sculture,galleria"
|
||||
},
|
||||
"shop/bakery": {
|
||||
"name": "Panificio",
|
||||
"terms": "Panificio"
|
||||
|
@ -2140,6 +2209,10 @@
|
|||
"name": "Negozio di biciclette",
|
||||
"terms": "Negozio biciclette"
|
||||
},
|
||||
"shop/bookmaker": {
|
||||
"name": "Negozio di scommesse",
|
||||
"terms": "scommesse,puntate,allibratore"
|
||||
},
|
||||
"shop/books": {
|
||||
"name": "Libreria",
|
||||
"terms": "Negozio di libri"
|
||||
|
@ -2260,6 +2333,10 @@
|
|||
"name": "Fabbro",
|
||||
"terms": "<tradurre con sinonimi o termini collegati alla parola 'fabbro, separati da virgole'>"
|
||||
},
|
||||
"shop/lottery": {
|
||||
"name": "Ricevitoria",
|
||||
"terms": "lotto,lotteria"
|
||||
},
|
||||
"shop/mall": {
|
||||
"name": "Centro commerciale",
|
||||
"terms": " Centro commerciale "
|
||||
|
|
117
vendor/assets/iD/iD/locales/ja.json
vendored
117
vendor/assets/iD/iD/locales/ja.json
vendored
|
@ -134,7 +134,8 @@
|
|||
"annotation": "{n} 本のラインを結合",
|
||||
"not_eligible": "地物情報がマージできません",
|
||||
"not_adjacent": "ラインをマージするには、ラインが結合している必要があります。",
|
||||
"restriction": "\"{relation}\" リレーションに所属しているラインが含まれているため、マージすることができません。"
|
||||
"restriction": "\"{relation}\" リレーションに所属しているラインが含まれているため、マージすることができません。",
|
||||
"incomplete_relation": "地物全体がダウンロードされていないため、マージさせることができません。"
|
||||
},
|
||||
"move": {
|
||||
"title": "移動",
|
||||
|
@ -1284,21 +1285,73 @@
|
|||
"name": "アパート",
|
||||
"terms": "アパート"
|
||||
},
|
||||
"building/barn": {
|
||||
"name": "納屋",
|
||||
"terms": "納屋"
|
||||
},
|
||||
"building/bunker": {
|
||||
"name": "掩体壕",
|
||||
"terms": "掩体壕, 掩蔽壕"
|
||||
},
|
||||
"building/cabin": {
|
||||
"name": "ログハウス",
|
||||
"terms": "ログハウス"
|
||||
},
|
||||
"building/cathedral": {
|
||||
"name": "大聖堂",
|
||||
"terms": "大聖堂"
|
||||
},
|
||||
"building/chapel": {
|
||||
"name": "礼拝堂",
|
||||
"terms": "礼拝堂"
|
||||
},
|
||||
"building/church": {
|
||||
"name": "教会",
|
||||
"terms": "教会"
|
||||
},
|
||||
"building/commercial": {
|
||||
"name": "オフィスビル",
|
||||
"terms": "オフィスビル"
|
||||
},
|
||||
"building/construction": {
|
||||
"name": "建設中の建物",
|
||||
"terms": "建設中の建物"
|
||||
},
|
||||
"building/detached": {
|
||||
"name": "一戸建て住宅",
|
||||
"terms": "一戸建て住宅"
|
||||
},
|
||||
"building/dormitory": {
|
||||
"name": "寮",
|
||||
"terms": "寮"
|
||||
},
|
||||
"building/entrance": {
|
||||
"name": "出入口",
|
||||
"terms": "出入口, エントランス"
|
||||
},
|
||||
"building/garage": {
|
||||
"name": "車庫",
|
||||
"terms": "車庫,ガレージ"
|
||||
"terms": "車庫, ガレージ"
|
||||
},
|
||||
"building/garages": {
|
||||
"name": "集合車庫",
|
||||
"terms": "集合車庫"
|
||||
},
|
||||
"building/greenhouse": {
|
||||
"name": "温室",
|
||||
"terms": "温室"
|
||||
},
|
||||
"building/hospital": {
|
||||
"name": "病院の建物",
|
||||
"terms": "病院の建物, 病棟"
|
||||
},
|
||||
"building/hotel": {
|
||||
"name": "ホテルの建物",
|
||||
"terms": "ホテルの建物, 宿泊棟"
|
||||
},
|
||||
"building/house": {
|
||||
"name": "住宅",
|
||||
"terms": "住宅"
|
||||
"name": "連結住宅",
|
||||
"terms": "連結住宅"
|
||||
},
|
||||
"building/hut": {
|
||||
"name": "小屋",
|
||||
|
@ -1308,10 +1361,54 @@
|
|||
"name": "工場",
|
||||
"terms": "工場"
|
||||
},
|
||||
"building/public": {
|
||||
"name": "公共施設",
|
||||
"terms": "公共施設"
|
||||
},
|
||||
"building/residential": {
|
||||
"name": "住宅",
|
||||
"terms": "住宅, アパート, マンション"
|
||||
},
|
||||
"building/retail": {
|
||||
"name": "商業施設",
|
||||
"terms": "商業施設, 店舗"
|
||||
},
|
||||
"building/roof": {
|
||||
"name": "屋根",
|
||||
"terms": "屋根, 屋根付きテラス"
|
||||
},
|
||||
"building/school": {
|
||||
"name": "校舎",
|
||||
"terms": "校舎, 学校の建物"
|
||||
},
|
||||
"building/shed": {
|
||||
"name": "格納庫",
|
||||
"terms": "格納庫, 離れ"
|
||||
},
|
||||
"building/stable": {
|
||||
"name": "厩",
|
||||
"terms": "厩, 馬小屋"
|
||||
},
|
||||
"building/static_caravan": {
|
||||
"name": "トレーラーハウス",
|
||||
"terms": "トレーラーハウス"
|
||||
},
|
||||
"building/terrace": {
|
||||
"name": "テラスハウス",
|
||||
"terms": "テラスハウス, 長屋"
|
||||
},
|
||||
"building/train_station": {
|
||||
"name": "駅舎",
|
||||
"terms": "駅舎"
|
||||
},
|
||||
"building/university": {
|
||||
"name": "大学",
|
||||
"terms": "大学, 大学の建物"
|
||||
},
|
||||
"building/warehouse": {
|
||||
"name": "倉庫",
|
||||
"terms": "倉庫, 蔵"
|
||||
},
|
||||
"craft/basket_maker": {
|
||||
"name": "かご製造所",
|
||||
"terms": "かご,籠"
|
||||
|
@ -2288,6 +2385,10 @@
|
|||
"name": "酒店",
|
||||
"terms": "酒店, 酒屋"
|
||||
},
|
||||
"shop/art": {
|
||||
"name": "美術工芸品店",
|
||||
"terms": "美術工芸品店, 美術品店, アートショップ,工芸品店"
|
||||
},
|
||||
"shop/bakery": {
|
||||
"name": "パン屋",
|
||||
"terms": "パン屋, ベーカリー"
|
||||
|
@ -2304,6 +2405,10 @@
|
|||
"name": "自転車店",
|
||||
"terms": "自転車店"
|
||||
},
|
||||
"shop/bookmaker": {
|
||||
"name": "公営競技投票券売り場",
|
||||
"terms": "公営競技投票券売り場, 馬券売り場, 車券売り場, 舟券売り場"
|
||||
},
|
||||
"shop/books": {
|
||||
"name": "書店",
|
||||
"terms": "書店, 本屋"
|
||||
|
@ -2424,6 +2529,10 @@
|
|||
"name": "錠前屋",
|
||||
"terms": "錠前屋"
|
||||
},
|
||||
"shop/lottery": {
|
||||
"name": "宝くじ売り場",
|
||||
"terms": "宝くじ売り場"
|
||||
},
|
||||
"shop/mall": {
|
||||
"name": "ショッピングセンター",
|
||||
"terms": "ショッピングセンター, ショッピングモール, 複合商業施設"
|
||||
|
|
115
vendor/assets/iD/iD/locales/pl.json
vendored
115
vendor/assets/iD/iD/locales/pl.json
vendored
|
@ -395,6 +395,9 @@
|
|||
"category-building": {
|
||||
"name": "Budynek"
|
||||
},
|
||||
"category-golf": {
|
||||
"name": "Golf"
|
||||
},
|
||||
"category-landuse": {
|
||||
"name": "Zagospodarowanie terenu"
|
||||
},
|
||||
|
@ -504,6 +507,9 @@
|
|||
"building_area": {
|
||||
"label": "Budynek"
|
||||
},
|
||||
"cans": {
|
||||
"label": "Przyjmowanie puszek"
|
||||
},
|
||||
"capacity": {
|
||||
"label": "Pojemność",
|
||||
"placeholder": "50, 100, 200..."
|
||||
|
@ -518,6 +524,9 @@
|
|||
"anticlockwise": "Przeciwnie do wskazówek zegara"
|
||||
}
|
||||
},
|
||||
"clothes": {
|
||||
"label": "Przyjmowanie ciuchów"
|
||||
},
|
||||
"collection_times": {
|
||||
"label": "Czas zbierania"
|
||||
},
|
||||
|
@ -573,6 +582,9 @@
|
|||
"generator/type": {
|
||||
"label": "Typ"
|
||||
},
|
||||
"glass": {
|
||||
"label": "Przyjmowanie szkła"
|
||||
},
|
||||
"highway": {
|
||||
"label": "Typ"
|
||||
},
|
||||
|
@ -709,6 +721,9 @@
|
|||
"shelter": {
|
||||
"label": "Schronienie"
|
||||
},
|
||||
"shelter_type": {
|
||||
"label": "Typ"
|
||||
},
|
||||
"shop": {
|
||||
"label": "Typ"
|
||||
},
|
||||
|
@ -752,6 +767,9 @@
|
|||
"tree_type": {
|
||||
"label": "Typ"
|
||||
},
|
||||
"tunnel": {
|
||||
"label": "Tunel"
|
||||
},
|
||||
"vending": {
|
||||
"label": "Rodzaje towarów"
|
||||
},
|
||||
|
@ -876,6 +894,9 @@
|
|||
"name": "Kino",
|
||||
"terms": "duży ekran,drive-in,film,ruchomy obraz,pokaz zdjęć,zdjęcia,pokaz,silver screen"
|
||||
},
|
||||
"amenity/clock": {
|
||||
"name": "Zegar"
|
||||
},
|
||||
"amenity/college": {
|
||||
"name": "Uczelnia",
|
||||
"terms": "uczelnia"
|
||||
|
@ -971,6 +992,9 @@
|
|||
"name": "Pub",
|
||||
"terms": "pub,piwo,wino"
|
||||
},
|
||||
"amenity/recycling": {
|
||||
"name": "Recykling"
|
||||
},
|
||||
"amenity/restaurant": {
|
||||
"name": "Restauracja",
|
||||
"terms": "bar,kawiarnia,stołówka,jadalnia,drive-in,knajpa,jadłodajnia,fast food,grill,gospoda,klub nocny,pizzeria"
|
||||
|
@ -982,6 +1006,15 @@
|
|||
"amenity/shelter": {
|
||||
"name": "Schronienie"
|
||||
},
|
||||
"amenity/social_facility": {
|
||||
"name": "Placówka pomocy społecznej"
|
||||
},
|
||||
"amenity/social_facility/food_bank": {
|
||||
"name": "Bank żywności"
|
||||
},
|
||||
"amenity/social_facility/homeless_shelter": {
|
||||
"name": "Schronisko dla bezdomnych"
|
||||
},
|
||||
"amenity/swimming_pool": {
|
||||
"name": "Basen",
|
||||
"terms": "basen,pływalnia"
|
||||
|
@ -1014,6 +1047,9 @@
|
|||
"name": "Automat sprzedający",
|
||||
"terms": "automat do sprzedaży"
|
||||
},
|
||||
"amenity/veterinary": {
|
||||
"name": "Weterynarz"
|
||||
},
|
||||
"amenity/waste_basket": {
|
||||
"name": "Kosz na śmieci",
|
||||
"terms": "kosz,kubeł,śmietnik"
|
||||
|
@ -1100,6 +1136,9 @@
|
|||
"name": "Apartamenty",
|
||||
"terms": "blok,kamienica"
|
||||
},
|
||||
"building/church": {
|
||||
"name": "Kościół"
|
||||
},
|
||||
"building/commercial": {
|
||||
"name": "Nieruchomość komercyjna",
|
||||
"terms": "sklep,komercyjny,sprzedaż,handlowy"
|
||||
|
@ -1128,6 +1167,51 @@
|
|||
"name": "Budynek mieszkalny",
|
||||
"terms": "blok, kamienica, dom, czynszówka"
|
||||
},
|
||||
"building/warehouse": {
|
||||
"name": "Magazyn"
|
||||
},
|
||||
"craft/clockmaker": {
|
||||
"name": "Zegarmistrz"
|
||||
},
|
||||
"craft/confectionary": {
|
||||
"name": "Cukiernik"
|
||||
},
|
||||
"craft/dressmaker": {
|
||||
"name": "Krawiec"
|
||||
},
|
||||
"craft/electrician": {
|
||||
"name": "Elektryk"
|
||||
},
|
||||
"craft/gardener": {
|
||||
"name": "Ogrodnik"
|
||||
},
|
||||
"craft/glaziery": {
|
||||
"name": "Szklarz"
|
||||
},
|
||||
"craft/jeweler": {
|
||||
"name": "Jubiler"
|
||||
},
|
||||
"craft/locksmith": {
|
||||
"name": "Ślusarz"
|
||||
},
|
||||
"craft/optician": {
|
||||
"name": "Optyk"
|
||||
},
|
||||
"craft/painter": {
|
||||
"name": "Malarz"
|
||||
},
|
||||
"craft/photographer": {
|
||||
"name": "Fotograf"
|
||||
},
|
||||
"craft/photographic_labratory": {
|
||||
"name": "Laboratorium fotograficzne"
|
||||
},
|
||||
"craft/plumber": {
|
||||
"name": "Hydraulik"
|
||||
},
|
||||
"craft/roofer": {
|
||||
"name": "Dekarz"
|
||||
},
|
||||
"emergency/ambulance_station": {
|
||||
"name": "Stacja pogotowia ratunkowego",
|
||||
"terms": "pogotowie ratunkowe"
|
||||
|
@ -1215,6 +1299,9 @@
|
|||
"name": "Droga lokalna",
|
||||
"terms": "lokalna, osiedlowa, zamieszkała"
|
||||
},
|
||||
"highway/rest_area": {
|
||||
"name": "Obszar wypoczynkowy"
|
||||
},
|
||||
"highway/road": {
|
||||
"name": "Nieokreślona droga",
|
||||
"terms": "droga,nieznana,niewiadoma"
|
||||
|
@ -1247,6 +1334,9 @@
|
|||
"highway/service/parking_aisle": {
|
||||
"name": "Uliczka parkingowa"
|
||||
},
|
||||
"highway/services": {
|
||||
"name": "Obszar usługowy"
|
||||
},
|
||||
"highway/steps": {
|
||||
"name": "Schody",
|
||||
"terms": "schody"
|
||||
|
@ -1592,9 +1682,25 @@
|
|||
"office/architect": {
|
||||
"terms": "architekt"
|
||||
},
|
||||
"office/educational_institution": {
|
||||
"name": "Instytucja edukacyjna"
|
||||
},
|
||||
"office/employment_agency": {
|
||||
"name": "Agencja zatrudnienia"
|
||||
},
|
||||
"office/estate_agent": {
|
||||
"name": "Biuro nieruchomości"
|
||||
},
|
||||
"office/insurance": {
|
||||
"name": "Biuro ubezpieczeń"
|
||||
},
|
||||
"office/political_party": {
|
||||
"name": "Partia polityczna",
|
||||
"terms": "partia polityczna"
|
||||
},
|
||||
"office/therapist": {
|
||||
"name": "Terapeuta"
|
||||
},
|
||||
"office/travel_agent": {
|
||||
"name": "Biuro podróży"
|
||||
},
|
||||
|
@ -1652,6 +1758,9 @@
|
|||
"power/transformer": {
|
||||
"name": "Transformator"
|
||||
},
|
||||
"public_transport/stop_position": {
|
||||
"name": "Miejsce zatrzymania"
|
||||
},
|
||||
"railway": {
|
||||
"name": "Kolej",
|
||||
"terms": "torowisko, kolej"
|
||||
|
@ -1724,6 +1833,9 @@
|
|||
"name": "Sklep rowerowy",
|
||||
"terms": "sklep rowerowy"
|
||||
},
|
||||
"shop/bookmaker": {
|
||||
"name": "Bukmacher"
|
||||
},
|
||||
"shop/books": {
|
||||
"name": "Księgarnia",
|
||||
"terms": "księgarnia"
|
||||
|
@ -1827,6 +1939,9 @@
|
|||
"shop/locksmith": {
|
||||
"name": "Ślusarz"
|
||||
},
|
||||
"shop/lottery": {
|
||||
"name": "Kolektura"
|
||||
},
|
||||
"shop/mall": {
|
||||
"name": "Centrum handlowe"
|
||||
},
|
||||
|
|
375
vendor/assets/iD/iD/locales/pt-BR.json
vendored
375
vendor/assets/iD/iD/locales/pt-BR.json
vendored
|
@ -134,7 +134,8 @@
|
|||
"annotation": "Mesclou {n} linhas.",
|
||||
"not_eligible": "Esses elementos não podem ser mesclados.",
|
||||
"not_adjacent": "Essas linhas não podem ser mescladas porque não estão conectadas.",
|
||||
"restriction": "Estas linhas não podem ser mescladas porque pelo menos uma delas é membro da relação \"{relation}\"."
|
||||
"restriction": "Estas linhas não podem ser mescladas porque pelo menos uma delas é membro da relação \"{relation}\".",
|
||||
"incomplete_relation": "Estas funcionalidades não podem ser mescladas porque pelo menos uma delas não foi transferida completamente."
|
||||
},
|
||||
"move": {
|
||||
"title": "Mover",
|
||||
|
@ -332,6 +333,7 @@
|
|||
},
|
||||
"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",
|
||||
"editing_saving": "# Editando e Salvando\n\nEsse editor é feito para trabalhar primariamente online e você está\nneste momento acessando-o através de um sítio eletrônico.\n\n### Selecionando Elementos\n\nPara selecionar um elemento do mapa, como uma estrada ou \num ponto de interesse, clique sobre ele. Isso vai pôr o elemento\nselecionado em destaque, abrir um painel com detalhes sobre\nele e mostrar um menu de coisas que podem ser feitas com ele.\n\nMúltiplos elementos podem ser selecionados segurando a tecla\n\"Shift\", clicando e arrastando no mapa. Isso vai selecionar todos\nos elementos que estiverem dentro da caixa que foi desenhada,\npermitindo você fazer coisas com vários elementos de uma vez\nsó.\n\n### Salvando as Alterações\n\nQuando você faz alterações como editar ruas, prédios e lugares, elas\nsão guardadas localmente até que você as envie para o servidor. Não\nse preocupe se você cometer algum deslize: você pode desfazer\nalterações clicando no botão de desfazer e também refazer as\nalterações clicando no botão de refazer.\n\nClique em \"Salvar\" para salvar um conjunto de alterações. Por exemplo,\nvocê completou uma área de uma cidade e gostaria de começar a\neditar uma outra área. Você terá a chance de revisar o que foi feito\naté o momento e o editor mostrará sugestões e dicas se alguma coisa\nparecer estar errada com as suas alterações.\n\nSe tudo parecer estar OK, você pode inserir um breve comentário\nexplicando as mudanças que você fez e clicar em \"Salvar\" de novo\npara lançar as mudanças para o [OpenStreetMap](http://www.openstreetmap.org/),\nonde elas estarão visíveis para todos os outros usuários.\n\nSe você não conseguir concluir uma sessão de edição, você pode\ndeixar a janela do seu editor aberta e voltar mais tarde (no mesmo\nnavegador e computador) que o editor irá oferecer a possibilidade\nde restaurar o seu trabalho.\n",
|
||||
"roads": "# Estradas \n\nVocê pode criar, corrigir e excluir estradas com este editor. Estradas podem ser de vários \ntipos: caminhos, estradas, trilhas, ciclovias e muito mais - qualquer segmento\nonde se passa, mesmo que às vezes, pode ser mapeado. \n\n### Selecionando \n\nClique em uma estrada para selecioná-la. Um esboço deve tornar-se visível, junto \ncom um pequeno menu de ferramentas no mapa e uma barra lateral mostrando mais informações \nsobre a estrada. \n\n### Modificando \n\nMuitas vezes você vai encontrar estradas que não estão alinhadas com as imagens por trás delas \nou com uma faixa de GPS. Você pode ajustar estas estradas para que elas fiquem no \nlugar certo. \n\nPrimeiro clique no caminho que você deseja alterar. Isso irá destacá-lo e mostrar \npontos de controle ao longo dela que você pode arrastar para locais melhores. Se \no que você deseja é adicionar novos pontos de controle para obter mais detalhes, clique duas vezes em uma parte \nda estrada sem um nó, e um ponto será adicionado.\n\nSe a estrada se conecta a uma outra estrada, mas não está corretamente conectada no \nmapa, você pode arrastar um de seus pontos de controle para a outra estrada \na fim de juntá-las. Ter estradas que se conectam é importante para o mapa \ne essencial para fornecer instruções de direção. \n\nVocê também pode clicar na ferramenta 'Mover' ou pressione a tecla 'M' para mover o caminho inteiro de \numa vez, e em seguida, clique novamente para salvar esse movimento. \n\n### Apagando \n\nSe uma estrada está completamente errada - você pode ver que ela não existe nas imagens \nde satélite e, junto a isso, ter confirmado localmente que ela não existe - você pode apagá-la do mapa.\nSeja cauteloso ao excluir recursos - \ncomo qualquer outra edição, os resultados são vistos por todos, e como as imagens de satélite \npodem estar desatualizadas, a estrada pode simplesmente ser recém-construída. \n\nVocê pode excluir um caminho, clicando sobre ele para selecioná-lo, em seguida, clicar no \nícone de lixeira ou pressionando a tecla 'Delete'.\n\n### Criando \n\nEncontrou um lugar onde deveria ter uma estrada, mas não tem? Clique no botão 'Linha' \nno canto superior esquerdo do editor ou pressione a tecla de atalho '2' para começar a desenhar \numa linha. \n\nClique no início da estrada no mapa para começar a desenhar. Se a estrada \nse ramifica de uma estrada existente, comece clicando sobre o lugar onde eles se conectam. \n\nEm seguida, clique em pontos ao longo da estrada para que ela siga o caminho certo, de acordo \ncom imagens de satélite ou GPS. Se a estrada que você está desenhando atravessa outra estrada, ligue-as \nclicando sobre o ponto de intersecção. Quando você terminar de desenhar, clique duas vezes \nou pressione 'Voltar' ou 'Enter' no seu teclado.\n",
|
||||
"gps": "# GPS\n\nO GPS é a fonte de dados mais confiável do OpenStreetMap. Esse editor\nsuporta trilhas locais, isto é, arquivos \".gpx\" guardados no seu computador.\nVocê pode coletar esse tipo de trilha usando um smartphone ou um\num aparelho de GPS dedicado.\n\nPara mais informações sobre como fazer mapeamento por GPS, leia\n[Utilizando o GPS](http://learnosm.org/pt/beginner/using-gps/).\n\nPara utilizar uma trilha GPS no iD, arraste o arquivo GPX para o mapa. Se\na trilha for reconhecida, ela será adicionada ao mapa como uma linha\nem verde brilhante. Clique no menu \"Configurações da imagem de fundo\",\nno lado esquerdo, para habilitar, desabilitar ou focar o zoom na camada\nreferente a essa trilha.\n\nNote que a trilha GPX não é enviada diretamente ao OpenStreetMap. A\nmelhor maneira de utilizá-la é usando-a como uma linha guia, isto é, desenhando\npor cima dela os novos elementos que estão sendo adicionados no mapa.\nAlém disso, [envie a trilha para o OpenStreetMap](http://www.openstreetmap.org/trace/create)\npara que outras pessoas possam usá-la.\n",
|
||||
|
@ -395,6 +397,9 @@
|
|||
"category-building": {
|
||||
"name": "Prédio"
|
||||
},
|
||||
"category-golf": {
|
||||
"name": "Golfe"
|
||||
},
|
||||
"category-landuse": {
|
||||
"name": "Uso da Terra"
|
||||
},
|
||||
|
@ -438,7 +443,7 @@
|
|||
"description": "Acesso não permitido ao público em geral"
|
||||
},
|
||||
"permissive": {
|
||||
"title": "Permissivo",
|
||||
"title": "Concedido",
|
||||
"description": "Acesso permitido até que o dono cancele a permissão"
|
||||
},
|
||||
"private": {
|
||||
|
@ -461,16 +466,43 @@
|
|||
"address": {
|
||||
"label": "Endereço",
|
||||
"placeholders": {
|
||||
"housename": "Nome da Casa",
|
||||
"housename": "Complemento",
|
||||
"number": "123",
|
||||
"street": "Rua",
|
||||
"city": "Cidade",
|
||||
"city": "Município",
|
||||
"postcode": "CEP"
|
||||
}
|
||||
},
|
||||
"admin_level": {
|
||||
"label": "Nível Administrativo"
|
||||
},
|
||||
"aerialway": {
|
||||
"label": "Tipo"
|
||||
},
|
||||
"aerialway/access": {
|
||||
"label": "Acesso"
|
||||
},
|
||||
"aerialway/bubble": {
|
||||
"label": "Bolha"
|
||||
},
|
||||
"aerialway/capacity": {
|
||||
"label": "Capacidade (por hora)",
|
||||
"placeholder": "500, 2500, 5000..."
|
||||
},
|
||||
"aerialway/duration": {
|
||||
"label": "Duração (minutos)",
|
||||
"placeholder": "1, 2, 3..."
|
||||
},
|
||||
"aerialway/heating": {
|
||||
"label": "Aquecido"
|
||||
},
|
||||
"aerialway/occupancy": {
|
||||
"label": "Ocupação",
|
||||
"placeholder": "2, 4, 8..."
|
||||
},
|
||||
"aerialway/summer/access": {
|
||||
"label": "Acesso (verão)"
|
||||
},
|
||||
"aeroway": {
|
||||
"label": "Tipo"
|
||||
},
|
||||
|
@ -504,6 +536,9 @@
|
|||
"building_area": {
|
||||
"label": "Edifício"
|
||||
},
|
||||
"cans": {
|
||||
"label": "Aceita Cans"
|
||||
},
|
||||
"capacity": {
|
||||
"label": "Capacidade",
|
||||
"placeholder": "50, 100, 200..."
|
||||
|
@ -518,6 +553,9 @@
|
|||
"anticlockwise": "Sentido Anti-horário"
|
||||
}
|
||||
},
|
||||
"clothes": {
|
||||
"label": "Aceita Clothes"
|
||||
},
|
||||
"collection_times": {
|
||||
"label": "Horários de Coleta"
|
||||
},
|
||||
|
@ -527,6 +565,9 @@
|
|||
"country": {
|
||||
"label": "País"
|
||||
},
|
||||
"covered": {
|
||||
"label": "Coberto"
|
||||
},
|
||||
"crossing": {
|
||||
"label": "Tipo"
|
||||
},
|
||||
|
@ -543,7 +584,7 @@
|
|||
"label": "Descrição"
|
||||
},
|
||||
"elevation": {
|
||||
"label": "Elevação"
|
||||
"label": "Altitude"
|
||||
},
|
||||
"emergency": {
|
||||
"label": "Emergência"
|
||||
|
@ -573,6 +614,17 @@
|
|||
"generator/type": {
|
||||
"label": "Tipo"
|
||||
},
|
||||
"glass": {
|
||||
"label": "Aceita Vidro"
|
||||
},
|
||||
"golf_hole": {
|
||||
"label": "Referência",
|
||||
"placeholder": "Buraco numero (1-18)"
|
||||
},
|
||||
"handicap": {
|
||||
"label": "Desvantagem",
|
||||
"placeholder": "1-18"
|
||||
},
|
||||
"highway": {
|
||||
"label": "Tipo"
|
||||
},
|
||||
|
@ -586,7 +638,10 @@
|
|||
"label": "Código ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Aclive"
|
||||
"label": "Declividade"
|
||||
},
|
||||
"information": {
|
||||
"label": "Tipo"
|
||||
},
|
||||
"internet_access": {
|
||||
"label": "Acesso a Internet",
|
||||
|
@ -610,7 +665,7 @@
|
|||
"label": "Tipo"
|
||||
},
|
||||
"levels": {
|
||||
"label": "Níveis",
|
||||
"label": "Número de andares",
|
||||
"placeholder": "2, 4, 6..."
|
||||
},
|
||||
"lit": {
|
||||
|
@ -654,6 +709,13 @@
|
|||
"operator": {
|
||||
"label": "Operador"
|
||||
},
|
||||
"paper": {
|
||||
"label": "Aceita Papel"
|
||||
},
|
||||
"par": {
|
||||
"label": "par",
|
||||
"placeholder": "3, 4, 5..."
|
||||
},
|
||||
"park_ride": {
|
||||
"label": "Estacionamento de Intercâmbio"
|
||||
},
|
||||
|
@ -664,6 +726,12 @@
|
|||
"label": "Telefone",
|
||||
"placeholder": "+55 11 0982 1098"
|
||||
},
|
||||
"piste/difficulty": {
|
||||
"label": "Dificuldade"
|
||||
},
|
||||
"piste/type": {
|
||||
"label": "Modelo"
|
||||
},
|
||||
"place": {
|
||||
"label": "Tipo"
|
||||
},
|
||||
|
@ -707,7 +775,7 @@
|
|||
"label": "Tipo"
|
||||
},
|
||||
"shelter": {
|
||||
"label": "Abrigo"
|
||||
"label": "Abrigo contra Intempéries"
|
||||
},
|
||||
"shelter_type": {
|
||||
"label": "Tipo"
|
||||
|
@ -727,7 +795,7 @@
|
|||
"options": {
|
||||
"bridge": "Ponte",
|
||||
"tunnel": "Túnel",
|
||||
"embankment": "Aterro",
|
||||
"embankment": "Aterro Elevado",
|
||||
"cutting": "Escavação"
|
||||
}
|
||||
},
|
||||
|
@ -807,7 +875,7 @@
|
|||
"terms": "Hangar"
|
||||
},
|
||||
"aeroway/helipad": {
|
||||
"name": "Heliporto",
|
||||
"name": "Heliponto",
|
||||
"terms": "Heliporto, Heliponto, ponto de pouso de helicópteros"
|
||||
},
|
||||
"aeroway/runway": {
|
||||
|
@ -815,8 +883,8 @@
|
|||
"terms": "Pista de pouso e decolagem"
|
||||
},
|
||||
"aeroway/taxiway": {
|
||||
"name": "Taxiway",
|
||||
"terms": "Pista de taxiamento"
|
||||
"name": "Pista de taxiamento",
|
||||
"terms": "Taxiway"
|
||||
},
|
||||
"aeroway/terminal": {
|
||||
"name": "Terminal de Aeroporto",
|
||||
|
@ -827,15 +895,15 @@
|
|||
"terms": "Serviço"
|
||||
},
|
||||
"amenity/arts_centre": {
|
||||
"name": "Centro de Artes",
|
||||
"terms": "Artes, Teatro, Cinema, Espetáculo, Exposições"
|
||||
"name": "Centro/Escola de Artes",
|
||||
"terms": "Centro de Artes, Escola de Artes, Artes, Centro Artístico, Escola Artística, Teatro, Cinema, Espetáculo, Exposições"
|
||||
},
|
||||
"amenity/atm": {
|
||||
"name": "Caixa Eletrônico",
|
||||
"terms": "Caixa eletrônico"
|
||||
},
|
||||
"amenity/bank": {
|
||||
"name": "Banco",
|
||||
"name": "Agência bancária",
|
||||
"terms": "Banco"
|
||||
},
|
||||
"amenity/bar": {
|
||||
|
@ -890,6 +958,9 @@
|
|||
"name": "Tribunal",
|
||||
"terms": "Tribunal, Fórum"
|
||||
},
|
||||
"amenity/dentist": {
|
||||
"name": "Dentista"
|
||||
},
|
||||
"amenity/drinking_water": {
|
||||
"name": "Água Potável",
|
||||
"terms": "Água Potável, Bebedouro"
|
||||
|
@ -903,7 +974,7 @@
|
|||
"terms": "fast food, lanchonete, lanches, Lancheria"
|
||||
},
|
||||
"amenity/fire_station": {
|
||||
"name": "Bombeiros",
|
||||
"name": "Posto de Bombeiros",
|
||||
"terms": "Posto de Bombeiros, Bombeiros, Central de Bombeiros"
|
||||
},
|
||||
"amenity/fountain": {
|
||||
|
@ -911,7 +982,7 @@
|
|||
"terms": "Chafariz, Fonte Aquática"
|
||||
},
|
||||
"amenity/fuel": {
|
||||
"name": "Posto de Gasolina",
|
||||
"name": "Posto de Combustível",
|
||||
"terms": "Posto de Gasolina"
|
||||
},
|
||||
"amenity/grave_yard": {
|
||||
|
@ -943,7 +1014,7 @@
|
|||
"terms": "Farmácia, Drogaria, Farmácia de Manipulação"
|
||||
},
|
||||
"amenity/place_of_worship": {
|
||||
"name": "Templo",
|
||||
"name": "Local de Prática Religiosa",
|
||||
"terms": "Local de Culto, Lugar de Adoração, Abadia, Basílica, Betel, Catedral, Mor, Capela, Igreja, Aprisco, Casa de Deus, Casa de oração, Casa de adoração, Mesquita, Oratório, Paróquia, Santuário, Sinagoga, Tabernáculo, Templo"
|
||||
},
|
||||
"amenity/place_of_worship/buddhist": {
|
||||
|
@ -982,6 +1053,9 @@
|
|||
"name": "Estação de Patrulha",
|
||||
"terms": "Patrulha, Ranger"
|
||||
},
|
||||
"amenity/recycling": {
|
||||
"name": "Reciclagem"
|
||||
},
|
||||
"amenity/restaurant": {
|
||||
"name": "Restaurante",
|
||||
"terms": "Restaurante"
|
||||
|
@ -1003,7 +1077,7 @@
|
|||
"terms": "Ponto de Táxi"
|
||||
},
|
||||
"amenity/telephone": {
|
||||
"name": "Telefone",
|
||||
"name": "Telefone Público",
|
||||
"terms": "Telefone"
|
||||
},
|
||||
"amenity/theatre": {
|
||||
|
@ -1011,11 +1085,11 @@
|
|||
"terms": "Teatro"
|
||||
},
|
||||
"amenity/toilets": {
|
||||
"name": "Banheiros",
|
||||
"name": "Banheiros Públicos",
|
||||
"terms": "Banheiros, Sanitário, WC, Toiletes, Toilettes, Lavabo, Toalete"
|
||||
},
|
||||
"amenity/townhall": {
|
||||
"name": "Prefeitura",
|
||||
"name": "Paço Municipal",
|
||||
"terms": "Prefeitura"
|
||||
},
|
||||
"amenity/university": {
|
||||
|
@ -1027,7 +1101,7 @@
|
|||
"terms": "Totem de vendas, Máquina de Venda Automática"
|
||||
},
|
||||
"amenity/waste_basket": {
|
||||
"name": "Cesto de Lixo",
|
||||
"name": "Lixeira",
|
||||
"terms": "Cesto de Lixo, Lixeira, Balde de Lixo"
|
||||
},
|
||||
"area": {
|
||||
|
@ -1043,8 +1117,8 @@
|
|||
"terms": "Bloco"
|
||||
},
|
||||
"barrier/bollard": {
|
||||
"name": "Poste",
|
||||
"terms": "Pilar, Poste, Cabeço"
|
||||
"name": "Pilarete",
|
||||
"terms": "Pilar, Poste, Cabeço, Pedestal, Estaca"
|
||||
},
|
||||
"barrier/cattle_grid": {
|
||||
"name": "Mata-burro",
|
||||
|
@ -1079,23 +1153,23 @@
|
|||
"terms": "Cerca viva"
|
||||
},
|
||||
"barrier/kissing_gate": {
|
||||
"name": "Porteira Giratória",
|
||||
"name": "Kissing Gate",
|
||||
"terms": "Porteira Giratória"
|
||||
},
|
||||
"barrier/lift_gate": {
|
||||
"name": "Cancela",
|
||||
"name": "Cancela Elevatória",
|
||||
"terms": "Cancela"
|
||||
},
|
||||
"barrier/retaining_wall": {
|
||||
"name": "Barreira de Retenção",
|
||||
"terms": "Muro de Contenção"
|
||||
"name": "Muro de Contenção",
|
||||
"terms": "Barreira de Retenção"
|
||||
},
|
||||
"barrier/stile": {
|
||||
"name": "Passagem Fixa por Barreira",
|
||||
"name": "Travessia em Cerca/Muro",
|
||||
"terms": "Passagem Fixa por Barreira"
|
||||
},
|
||||
"barrier/toll_booth": {
|
||||
"name": "Pedágio",
|
||||
"name": "Cabine de Pedágio",
|
||||
"terms": "Pedágio"
|
||||
},
|
||||
"barrier/wall": {
|
||||
|
@ -1114,6 +1188,12 @@
|
|||
"name": "Apartamentos",
|
||||
"terms": "Apartamentos, Kit net"
|
||||
},
|
||||
"building/chapel": {
|
||||
"name": "Capela"
|
||||
},
|
||||
"building/church": {
|
||||
"name": "Igreja"
|
||||
},
|
||||
"building/commercial": {
|
||||
"name": "Edifício Comercial",
|
||||
"terms": "Edifício Comercial, Prédio Comercial"
|
||||
|
@ -1123,9 +1203,13 @@
|
|||
"terms": "Entrada"
|
||||
},
|
||||
"building/garage": {
|
||||
"name": "Garagem",
|
||||
"name": "Garagem Individual",
|
||||
"terms": "Garagem"
|
||||
},
|
||||
"building/garages": {
|
||||
"name": "Garagens",
|
||||
"terms": "Garagens"
|
||||
},
|
||||
"building/house": {
|
||||
"name": "Casa",
|
||||
"terms": "Casa"
|
||||
|
@ -1142,8 +1226,29 @@
|
|||
"name": "Edifício Residencial",
|
||||
"terms": "Edifício Residencial"
|
||||
},
|
||||
"building/roof": {
|
||||
"name": "Teto"
|
||||
},
|
||||
"craft/beekeeper": {
|
||||
"name": "Apicultor"
|
||||
},
|
||||
"craft/blacksmith": {
|
||||
"name": "Ferreiro"
|
||||
},
|
||||
"craft/brewery": {
|
||||
"name": "Cervejaria"
|
||||
},
|
||||
"craft/carpenter": {
|
||||
"name": "Carpinteiro"
|
||||
},
|
||||
"craft/locksmith": {
|
||||
"name": "Chaveiro"
|
||||
},
|
||||
"craft/photographer": {
|
||||
"name": "Fotógrafo"
|
||||
},
|
||||
"embankment": {
|
||||
"name": "Aterro",
|
||||
"name": "Aterro Elevado",
|
||||
"terms": "aterro,terrapleno"
|
||||
},
|
||||
"emergency/ambulance_station": {
|
||||
|
@ -1163,8 +1268,8 @@
|
|||
"terms": "Entrada"
|
||||
},
|
||||
"footway/crossing": {
|
||||
"name": "Cruzamento",
|
||||
"terms": "cruzamento,passagem"
|
||||
"name": "Travessia",
|
||||
"terms": "faixa de segurança,cruzamento,passagem"
|
||||
},
|
||||
"footway/sidewalk": {
|
||||
"name": "Calçada",
|
||||
|
@ -1175,27 +1280,27 @@
|
|||
"terms": "Rodovia"
|
||||
},
|
||||
"highway/bridleway": {
|
||||
"name": "Trilha de Equitação",
|
||||
"terms": "Hipovia, Picadeiro, Caminho para Calvagada"
|
||||
"name": "Hipovia",
|
||||
"terms": "Hipovia, Picadeiro, Caminho para Calvagada, Trilha de Equitação"
|
||||
},
|
||||
"highway/bus_stop": {
|
||||
"name": "Ponto de Ônibus",
|
||||
"terms": "Ponto de Ônibus, Parada de Ônibus"
|
||||
},
|
||||
"highway/crossing": {
|
||||
"name": "Cruzamento",
|
||||
"terms": "Travessia, Faixa de Segurança"
|
||||
"name": "Faixa de Pedestre",
|
||||
"terms": "Interseção"
|
||||
},
|
||||
"highway/cycleway": {
|
||||
"name": "Ciclovia",
|
||||
"terms": "Ciclovia"
|
||||
},
|
||||
"highway/footway": {
|
||||
"name": "Via de Pedestre",
|
||||
"terms": "Caminho de Pedestre, Passeio, Calçada"
|
||||
"name": "Pista de Caminhada",
|
||||
"terms": "Via de Pedestre, Caminho de Pedestre, Passeio, Calçada"
|
||||
},
|
||||
"highway/living_street": {
|
||||
"name": "Rua Viva",
|
||||
"name": "Via de Espaço Compartilhado",
|
||||
"terms": "Rua Viva, Rua Preferencial a Pedestres"
|
||||
},
|
||||
"highway/mini_roundabout": {
|
||||
|
@ -1203,19 +1308,19 @@
|
|||
"terms": "Mini-Rotatória"
|
||||
},
|
||||
"highway/motorway": {
|
||||
"name": "Auto-Estrada",
|
||||
"terms": "Autoestrada"
|
||||
"name": "Autoestrada",
|
||||
"terms": "Auto-estrada, auto estrada"
|
||||
},
|
||||
"highway/motorway_junction": {
|
||||
"name": "Saída de Autoestrada",
|
||||
"terms": "Saída de Autoestrada"
|
||||
},
|
||||
"highway/motorway_link": {
|
||||
"name": "Acesso a Autoestrada",
|
||||
"name": "Ligação de Autoestrada",
|
||||
"terms": "Acesso a Autoestrada"
|
||||
},
|
||||
"highway/path": {
|
||||
"name": "Caminho",
|
||||
"name": "Trilha Não-Automotiva",
|
||||
"terms": "Trilha"
|
||||
},
|
||||
"highway/pedestrian": {
|
||||
|
@ -1227,8 +1332,8 @@
|
|||
"terms": "Via Primária"
|
||||
},
|
||||
"highway/primary_link": {
|
||||
"name": "Acesso a Via Primária",
|
||||
"terms": "Acesso Primário"
|
||||
"name": "Ligação Primária",
|
||||
"terms": "Acesso Primário, Acesso a Via Primária"
|
||||
},
|
||||
"highway/residential": {
|
||||
"name": "Via Residencial",
|
||||
|
@ -1243,8 +1348,8 @@
|
|||
"terms": "Via Secundária"
|
||||
},
|
||||
"highway/secondary_link": {
|
||||
"name": "Acesso a Via Secundária",
|
||||
"terms": "Acesso a Via Secundária"
|
||||
"name": "Ligação Secundária",
|
||||
"terms": "Acesso Secundário, Acesso a Via Secundária"
|
||||
},
|
||||
"highway/service": {
|
||||
"name": "Via de Serviço",
|
||||
|
@ -1271,8 +1376,8 @@
|
|||
"terms": "Corredor de Estacionamento"
|
||||
},
|
||||
"highway/steps": {
|
||||
"name": "Escadaria",
|
||||
"terms": "Degraus, Escada"
|
||||
"name": "Via com Degraus",
|
||||
"terms": "Degraus, Escada, Escadaria"
|
||||
},
|
||||
"highway/stop": {
|
||||
"name": "Placa de Pare",
|
||||
|
@ -1283,12 +1388,12 @@
|
|||
"terms": "Via Terciária"
|
||||
},
|
||||
"highway/tertiary_link": {
|
||||
"name": "Acesso a Via Terciária",
|
||||
"terms": "Acesso a Via Terciária"
|
||||
"name": "Ligação Terciária",
|
||||
"terms": "Acesso Terciário, Acesso a Via Terciária"
|
||||
},
|
||||
"highway/track": {
|
||||
"name": "Trilha",
|
||||
"terms": "Caminho"
|
||||
"name": "Estrada Rústica",
|
||||
"terms": "Trilha Automotiva, Estrada de Fazenda, Estrada Agrícola, Estrada Bucólica, Caminho"
|
||||
},
|
||||
"highway/traffic_signals": {
|
||||
"name": "Semáforo",
|
||||
|
@ -1299,11 +1404,11 @@
|
|||
"terms": "Via Expressa"
|
||||
},
|
||||
"highway/trunk_link": {
|
||||
"name": "Acesso a Via Expressa",
|
||||
"name": "Ligação de Via Expressa",
|
||||
"terms": "Acesso a Via Expressa"
|
||||
},
|
||||
"highway/turning_circle": {
|
||||
"name": "Rotatória",
|
||||
"name": "Balão de Retorno",
|
||||
"terms": "Balão de Retorno"
|
||||
},
|
||||
"highway/unclassified": {
|
||||
|
@ -1340,11 +1445,11 @@
|
|||
},
|
||||
"historic/wayside_cross": {
|
||||
"name": "Cruz de Beira de Estrada",
|
||||
"terms": "Cruz de Beira de Estrada"
|
||||
"terms": "Cruz de Beira de Estrada, Cruzeiro"
|
||||
},
|
||||
"historic/wayside_shrine": {
|
||||
"name": "Ermida",
|
||||
"terms": "Ermida"
|
||||
"name": "Capelinha de Beira de Estrada",
|
||||
"terms": "Ermida, Alminhas"
|
||||
},
|
||||
"landuse": {
|
||||
"name": "Uso da Terra",
|
||||
|
@ -1359,7 +1464,7 @@
|
|||
"terms": "Bacia"
|
||||
},
|
||||
"landuse/cemetery": {
|
||||
"name": "Cemitério",
|
||||
"name": "Cemitério Secular",
|
||||
"terms": "Sepulcrário, Cemitério"
|
||||
},
|
||||
"landuse/commercial": {
|
||||
|
@ -1371,7 +1476,7 @@
|
|||
"terms": "Construção"
|
||||
},
|
||||
"landuse/farm": {
|
||||
"name": "Fazenda",
|
||||
"name": "Lavoura",
|
||||
"terms": "Fazenda"
|
||||
},
|
||||
"landuse/farmland": {
|
||||
|
@ -1379,7 +1484,7 @@
|
|||
"terms": "agricultura,terra,campo,roça"
|
||||
},
|
||||
"landuse/farmyard": {
|
||||
"name": "Granja",
|
||||
"name": "Pátio de Fazenda",
|
||||
"terms": "Pátio de Fazenda"
|
||||
},
|
||||
"landuse/forest": {
|
||||
|
@ -1396,7 +1501,7 @@
|
|||
},
|
||||
"landuse/meadow": {
|
||||
"name": "Prado",
|
||||
"terms": "Prado, Pasto"
|
||||
"terms": "Prado, Pasto, Pradaria"
|
||||
},
|
||||
"landuse/orchard": {
|
||||
"name": "Pomar",
|
||||
|
@ -1411,11 +1516,11 @@
|
|||
"terms": "Residencial"
|
||||
},
|
||||
"landuse/retail": {
|
||||
"name": "Comércio",
|
||||
"terms": "Varejo"
|
||||
"name": "Varejo",
|
||||
"terms": "Varejo, comércio"
|
||||
},
|
||||
"landuse/vineyard": {
|
||||
"name": "Vinhedo",
|
||||
"name": "Vinha",
|
||||
"terms": "Vinha, Vinhedo"
|
||||
},
|
||||
"leisure": {
|
||||
|
@ -1427,8 +1532,8 @@
|
|||
"terms": "Comum, Habitual, Frequente"
|
||||
},
|
||||
"leisure/dog_park": {
|
||||
"name": "Parque de Cães",
|
||||
"terms": "Parque de Cães"
|
||||
"name": "Cachorródromo",
|
||||
"terms": "Canódromo, Parque de Cães, Parque Canino"
|
||||
},
|
||||
"leisure/garden": {
|
||||
"name": "Jardim",
|
||||
|
@ -1443,12 +1548,12 @@
|
|||
"terms": "Marina"
|
||||
},
|
||||
"leisure/park": {
|
||||
"name": "Parque",
|
||||
"terms": "Parque"
|
||||
"name": "Parque/Praça",
|
||||
"terms": "Parque, praça"
|
||||
},
|
||||
"leisure/pitch": {
|
||||
"name": "Campo de Esportes",
|
||||
"terms": "Campo Esportivo, Quadra Esportiva"
|
||||
"name": "Quadra Esportiva",
|
||||
"terms": "Campo de Esportes, Campo Esportivo, Quadra Esportiva"
|
||||
},
|
||||
"leisure/pitch/american_football": {
|
||||
"name": "Campo de Futebol Americano",
|
||||
|
@ -1487,8 +1592,8 @@
|
|||
"terms": "Rampa Náutica"
|
||||
},
|
||||
"leisure/sports_center": {
|
||||
"name": "Centro Esportivo",
|
||||
"terms": "Ginásio de Esportes, Ginásio Poliesportivo, Academia de Esportes,"
|
||||
"name": "Centro/Clube Esportivo",
|
||||
"terms": "Centro Esportivo, Clube Esportivo, Ginásio de Esportes, Ginásio Poliesportivo, Academia de Esportes, Academia de Ginástica"
|
||||
},
|
||||
"leisure/stadium": {
|
||||
"name": "Estádio",
|
||||
|
@ -1511,8 +1616,8 @@
|
|||
"terms": "Construção Humana"
|
||||
},
|
||||
"man_made/breakwater": {
|
||||
"name": "Quebra-mar",
|
||||
"terms": "Quebra-mar"
|
||||
"name": "Molhe/Quebra-Mar",
|
||||
"terms": "Molhe, Quebra-Mar"
|
||||
},
|
||||
"man_made/cutline": {
|
||||
"name": "Linha de Corte em Floresta",
|
||||
|
@ -1523,7 +1628,7 @@
|
|||
"terms": "aterro,terrapleno"
|
||||
},
|
||||
"man_made/flagpole": {
|
||||
"name": "Mastro",
|
||||
"name": "Mastro de Bandeira",
|
||||
"terms": "matro,bandeira,pau de bandeira"
|
||||
},
|
||||
"man_made/lighthouse": {
|
||||
|
@ -1539,12 +1644,12 @@
|
|||
"terms": "Píer"
|
||||
},
|
||||
"man_made/pipeline": {
|
||||
"name": "Encanamento",
|
||||
"terms": "Tubulação"
|
||||
"name": "Tubulação",
|
||||
"terms": "Encanamento"
|
||||
},
|
||||
"man_made/survey_point": {
|
||||
"name": "Marco Geodésico",
|
||||
"terms": "Marco Geodésico"
|
||||
"name": "Ponto de Exame Geográfico",
|
||||
"terms": "Marco Geodésico, Equipamento de GPS Diferencial"
|
||||
},
|
||||
"man_made/tower": {
|
||||
"name": "Torre",
|
||||
|
@ -1555,7 +1660,7 @@
|
|||
"terms": "Estação de Tratamento de Esgoto"
|
||||
},
|
||||
"man_made/water_tower": {
|
||||
"name": "Caixa d'água",
|
||||
"name": "Caixa d'Água",
|
||||
"terms": "Caixa d'Água"
|
||||
},
|
||||
"man_made/water_well": {
|
||||
|
@ -1603,8 +1708,7 @@
|
|||
"terms": "Orla Marítima, Linha Costeira"
|
||||
},
|
||||
"natural/fell": {
|
||||
"name": "Colina",
|
||||
"terms": "Caiu"
|
||||
"name": "Fell"
|
||||
},
|
||||
"natural/glacier": {
|
||||
"name": "Geleira",
|
||||
|
@ -1615,20 +1719,20 @@
|
|||
"terms": "Pradaria"
|
||||
},
|
||||
"natural/heath": {
|
||||
"name": "Matagal",
|
||||
"terms": "Matagal"
|
||||
"name": "Urzal",
|
||||
"terms": "Urzal"
|
||||
},
|
||||
"natural/peak": {
|
||||
"name": "Pico",
|
||||
"name": "Cume",
|
||||
"terms": "Pico, Topo de Montanha, Serra, Montanha, Monte"
|
||||
},
|
||||
"natural/scree": {
|
||||
"name": "Cascalho",
|
||||
"terms": "Seixos, Pedras"
|
||||
"name": "Pedregulhos",
|
||||
"terms": "Seixos, Pedras, Cascalho"
|
||||
},
|
||||
"natural/scrub": {
|
||||
"name": "Arbustos",
|
||||
"terms": "Moita, Arbusto"
|
||||
"terms": "Moita, Arbusto, Matagal"
|
||||
},
|
||||
"natural/spring": {
|
||||
"name": "Nascente",
|
||||
|
@ -1715,7 +1819,7 @@
|
|||
"terms": "advogado,advocacia,escritório"
|
||||
},
|
||||
"office/newspaper": {
|
||||
"name": "Jornal",
|
||||
"name": "Escritório de Jornal",
|
||||
"terms": "jornal,notícia"
|
||||
},
|
||||
"office/ngo": {
|
||||
|
@ -1751,8 +1855,8 @@
|
|||
"terms": "Local"
|
||||
},
|
||||
"place/city": {
|
||||
"name": "Cidade",
|
||||
"terms": "Cidade"
|
||||
"name": "Cidade Maior",
|
||||
"terms": "Cidade, Município"
|
||||
},
|
||||
"place/hamlet": {
|
||||
"name": "Lugarejo",
|
||||
|
@ -1771,8 +1875,8 @@
|
|||
"terms": "Localidade"
|
||||
},
|
||||
"place/town": {
|
||||
"name": "Vila",
|
||||
"terms": "Vila, Cidade"
|
||||
"name": "Cidade Menor",
|
||||
"terms": "Vila, Cidade, Município"
|
||||
},
|
||||
"place/village": {
|
||||
"name": "Povoado",
|
||||
|
@ -1791,7 +1895,7 @@
|
|||
"terms": "Gerador, Energia"
|
||||
},
|
||||
"power/line": {
|
||||
"name": "Linha de Transmissão de Energia Elétrica",
|
||||
"name": "Linha de Transmissão",
|
||||
"terms": "Fio Elétrico"
|
||||
},
|
||||
"power/minor_line": {
|
||||
|
@ -1799,7 +1903,7 @@
|
|||
"terms": "Menor Linha de Energia"
|
||||
},
|
||||
"power/pole": {
|
||||
"name": "Poste Elétrico",
|
||||
"name": "Poste de Transmissão",
|
||||
"terms": "Poste Elétrico"
|
||||
},
|
||||
"power/sub_station": {
|
||||
|
@ -1831,12 +1935,11 @@
|
|||
"terms": "Ferrovia Abandonada"
|
||||
},
|
||||
"railway/disused": {
|
||||
"name": "Ferrovia em Desuso",
|
||||
"name": "Ferrovia Inativa",
|
||||
"terms": "Ferrovia em Desuso"
|
||||
},
|
||||
"railway/halt": {
|
||||
"name": "Interrupção de Ferrovia",
|
||||
"terms": "Final de Ferrovia, Interrupção de Estrada de Ferro"
|
||||
"name": "Parada de Ferrovia"
|
||||
},
|
||||
"railway/level_crossing": {
|
||||
"name": "Passagem de Nível",
|
||||
|
@ -1851,7 +1954,7 @@
|
|||
"terms": "Plataforma de Trem"
|
||||
},
|
||||
"railway/rail": {
|
||||
"name": "Trilho",
|
||||
"name": "Trilho de trem",
|
||||
"terms": "Trilho"
|
||||
},
|
||||
"railway/station": {
|
||||
|
@ -1859,7 +1962,7 @@
|
|||
"terms": "Estação Ferroviária"
|
||||
},
|
||||
"railway/subway": {
|
||||
"name": "Metrô",
|
||||
"name": "Trilho de metrô",
|
||||
"terms": "Metrô"
|
||||
},
|
||||
"railway/subway_entrance": {
|
||||
|
@ -1867,7 +1970,7 @@
|
|||
"terms": "Entrada de Metrô"
|
||||
},
|
||||
"railway/tram": {
|
||||
"name": "Bonde",
|
||||
"name": "Trilho de bonde",
|
||||
"terms": "Bonde"
|
||||
},
|
||||
"relation": {
|
||||
|
@ -1875,7 +1978,7 @@
|
|||
"terms": "Relação"
|
||||
},
|
||||
"route/ferry": {
|
||||
"name": "Rota de Barco",
|
||||
"name": "Rota de Balsa",
|
||||
"terms": "Rota de Barco, Rota de Balsa"
|
||||
},
|
||||
"shop": {
|
||||
|
@ -1915,7 +2018,7 @@
|
|||
"terms": "Açougue"
|
||||
},
|
||||
"shop/car": {
|
||||
"name": "Concessionária de Automóveis",
|
||||
"name": "Revenda de Automóveis",
|
||||
"terms": "Concessionária de Automóveis"
|
||||
},
|
||||
"shop/car_parts": {
|
||||
|
@ -1923,7 +2026,7 @@
|
|||
"terms": "Loja de Peças Automotivas"
|
||||
},
|
||||
"shop/car_repair": {
|
||||
"name": "Oficina Automotiva",
|
||||
"name": "Oficina Mecânica",
|
||||
"terms": "Oficina Automotiva"
|
||||
},
|
||||
"shop/chemist": {
|
||||
|
@ -1951,15 +2054,15 @@
|
|||
"terms": "Delicatessen"
|
||||
},
|
||||
"shop/department_store": {
|
||||
"name": "Loja de Departamentos",
|
||||
"name": "Loja de Departamento",
|
||||
"terms": "Loja de Departamento"
|
||||
},
|
||||
"shop/doityourself": {
|
||||
"name": "Loja de Bricolagem",
|
||||
"name": "Loja de Ferragens/Bricolagem",
|
||||
"terms": "Loja de Bricolagem, Faça você mesmo"
|
||||
},
|
||||
"shop/dry_cleaning": {
|
||||
"name": "Limpeza a Seco",
|
||||
"name": "Lavagem de Roupas a Seco",
|
||||
"terms": "Limpeza a Seco, Lavagem a Seco"
|
||||
},
|
||||
"shop/electronics": {
|
||||
|
@ -1983,7 +2086,7 @@
|
|||
"terms": "Loja de Móveis, Decoração"
|
||||
},
|
||||
"shop/garden_centre": {
|
||||
"name": "Loja de Jardinagem",
|
||||
"name": "Centro de Jardinagem",
|
||||
"terms": "Loja de Jardinagem"
|
||||
},
|
||||
"shop/gift": {
|
||||
|
@ -1991,8 +2094,8 @@
|
|||
"terms": "Loja de Presentes"
|
||||
},
|
||||
"shop/greengrocer": {
|
||||
"name": "Quitanda",
|
||||
"terms": "Quitanda"
|
||||
"name": "Verdureiro",
|
||||
"terms": "Quitanda, Quitandeiro"
|
||||
},
|
||||
"shop/hairdresser": {
|
||||
"name": "Cabeleireiro",
|
||||
|
@ -2003,15 +2106,15 @@
|
|||
"terms": "Loja de Ferragens, Material de Construção, Loja de Tintas, Loja de Parafusos"
|
||||
},
|
||||
"shop/hifi": {
|
||||
"name": "Loja de Equipamentos de Áudio",
|
||||
"terms": "Loja de Equipamentos de Áudio"
|
||||
"name": "Loja de Aparelhos Hi-Fi",
|
||||
"terms": "Loja de Equipamentos de Áudio, Loja de Aparelhos de Alta Fidelidade"
|
||||
},
|
||||
"shop/jewelry": {
|
||||
"name": "Joalheria",
|
||||
"terms": "Joalheria"
|
||||
},
|
||||
"shop/kiosk": {
|
||||
"name": "Quiosque",
|
||||
"name": "Quiosque Comercial",
|
||||
"terms": "Quiosque"
|
||||
},
|
||||
"shop/laundry": {
|
||||
|
@ -2023,20 +2126,20 @@
|
|||
"terms": "Técnico de Chaves e Cadeados, Cópia de Chaves, Conserto de Cadeados"
|
||||
},
|
||||
"shop/mall": {
|
||||
"name": "Shopping Center",
|
||||
"terms": "Centro Comercial, Galeria"
|
||||
"name": "Centro Comercial",
|
||||
"terms": "Shopping Center, Galeria"
|
||||
},
|
||||
"shop/mobile_phone": {
|
||||
"name": "Loja de Celulares",
|
||||
"terms": "Loja de Celulares, Loja de Telefones Celulares"
|
||||
},
|
||||
"shop/motorcycle": {
|
||||
"name": "Concessionária de Motos",
|
||||
"name": "Revenda de Motos",
|
||||
"terms": "Concessionária de Motos"
|
||||
},
|
||||
"shop/music": {
|
||||
"name": "Loja Musical",
|
||||
"terms": "Loja de Discos Musicais, Loja de CD's, Loja de Vinil"
|
||||
"name": "Loja de Instrumentos Musicais",
|
||||
"terms": "Loja de Discos Musicais, Loja de CD's, Loja de Vinil, Loja Musical"
|
||||
},
|
||||
"shop/newsagent": {
|
||||
"name": "Banca de Jornal",
|
||||
|
@ -2047,7 +2150,7 @@
|
|||
"terms": "Ótica"
|
||||
},
|
||||
"shop/outdoor": {
|
||||
"name": "Loja de Esportes de Aventura",
|
||||
"name": "Loja de Esporte/Aventura",
|
||||
"terms": "Loja de Esportes de Aventura"
|
||||
},
|
||||
"shop/pet": {
|
||||
|
@ -2091,12 +2194,12 @@
|
|||
"terms": "Loja Desocupada"
|
||||
},
|
||||
"shop/variety_store": {
|
||||
"name": "Loja de Variedades",
|
||||
"terms": "Loja de Variedades"
|
||||
"name": "Loja de Variedades a 1,99",
|
||||
"terms": "Loja de Variedades, Um e Noventa e Nove, 1.99, 199"
|
||||
},
|
||||
"shop/video": {
|
||||
"name": "Loja ou Locadora de Vídeos",
|
||||
"terms": "Loja de Vídeos"
|
||||
"name": "Loja/Locadora de Vídeos",
|
||||
"terms": "Loja de Vídeos, Locadora de Vídeos, Videolocadora"
|
||||
},
|
||||
"tourism": {
|
||||
"name": "Turismo",
|
||||
|
@ -2115,8 +2218,8 @@
|
|||
"terms": "Atração Turística"
|
||||
},
|
||||
"tourism/camp_site": {
|
||||
"name": "Camping",
|
||||
"terms": "Parque de Campismo, Acampamento"
|
||||
"name": "Local de Acampamento",
|
||||
"terms": "Parque de Campismo, Acampamento, Camping"
|
||||
},
|
||||
"tourism/caravan_site": {
|
||||
"name": "Estacionamento de Trailers",
|
||||
|
@ -2131,12 +2234,12 @@
|
|||
"terms": "Guesthouse"
|
||||
},
|
||||
"tourism/hostel": {
|
||||
"name": "Albergue",
|
||||
"terms": "Albergue, Hostel"
|
||||
"name": "Hostel",
|
||||
"terms": "Albergue"
|
||||
},
|
||||
"tourism/hotel": {
|
||||
"name": "Hotel",
|
||||
"terms": "Hotel, Pousada"
|
||||
"terms": "Hotel, Pousada, Motel"
|
||||
},
|
||||
"tourism/information": {
|
||||
"name": "Informações Turísticas",
|
||||
|
@ -2151,7 +2254,7 @@
|
|||
"terms": "Museu"
|
||||
},
|
||||
"tourism/picnic_site": {
|
||||
"name": "Lugar de Piquenique",
|
||||
"name": "Local de Piquenique",
|
||||
"terms": "Lugar de Piquenique"
|
||||
},
|
||||
"tourism/theme_park": {
|
||||
|
@ -2239,7 +2342,7 @@
|
|||
"terms": "Outro"
|
||||
},
|
||||
"waterway": {
|
||||
"name": "Hidrovia",
|
||||
"name": "Via Aquática",
|
||||
"terms": "Canal, Hidrovia, Curso d'Água"
|
||||
},
|
||||
"waterway/canal": {
|
||||
|
@ -2247,15 +2350,15 @@
|
|||
"terms": "Canal"
|
||||
},
|
||||
"waterway/dam": {
|
||||
"name": "Represa",
|
||||
"terms": "Represa, Barragem"
|
||||
"name": "Barragem",
|
||||
"terms": "Represa"
|
||||
},
|
||||
"waterway/ditch": {
|
||||
"name": "Vala",
|
||||
"terms": "Vala"
|
||||
},
|
||||
"waterway/drain": {
|
||||
"name": "Dreno",
|
||||
"name": "Valeta de drenagem",
|
||||
"terms": "Dreno"
|
||||
},
|
||||
"waterway/river": {
|
||||
|
|
507
vendor/assets/iD/iD/locales/ru.json
vendored
507
vendor/assets/iD/iD/locales/ru.json
vendored
File diff suppressed because it is too large
Load diff
3
vendor/assets/iD/iD/locales/sk.json
vendored
3
vendor/assets/iD/iD/locales/sk.json
vendored
|
@ -1284,6 +1284,9 @@
|
|||
"name": "Bytovka",
|
||||
"terms": "Bytovka,obytna budova,panelak,panelák,vežiak,veziak,barak,barák,činžiak,cinziak,apartmany,apartmány"
|
||||
},
|
||||
"building/barn": {
|
||||
"name": "Stodola"
|
||||
},
|
||||
"building/commercial": {
|
||||
"name": "Komerčná budova",
|
||||
"terms": "Obchody,firmy,firma,predaj,podnik,podniky,kancelarie,kancelárie"
|
||||
|
|
160
vendor/assets/iD/iD/locales/sv.json
vendored
160
vendor/assets/iD/iD/locales/sv.json
vendored
|
@ -41,9 +41,11 @@
|
|||
}
|
||||
},
|
||||
"continue": {
|
||||
"key": "A",
|
||||
"title": "Fortsätt",
|
||||
"description": "Fortsätt denna linje.",
|
||||
"not_eligible": "Ingen linje kan fortsätta här.",
|
||||
"multiple": "Flera linjer kan fortsätta härifrån. För att välja en linje, tryck på tangenten Skift och klicka på den för att välja.",
|
||||
"annotation": {
|
||||
"line": "Fortsatte en linje.",
|
||||
"area": "Fortsatt ett område."
|
||||
|
@ -72,15 +74,24 @@
|
|||
"not_closed": "Denna kan inte göras rund då den inte är en loop."
|
||||
},
|
||||
"orthogonalize": {
|
||||
"title": "Räta upp",
|
||||
"description": {
|
||||
"line": "Räta upp hörnen på denna linje.",
|
||||
"area": "Räta upp hörnen på denna ytan."
|
||||
},
|
||||
"key": "S",
|
||||
"annotation": {
|
||||
"line": "Gjort hörnen på en linje fyrkantiga.",
|
||||
"area": "Gjort hörnen på ett område fyrkantiga."
|
||||
}
|
||||
},
|
||||
"not_squarish": "Denna kan inte rätas upp då den inte är fyrkantig."
|
||||
},
|
||||
"straighten": {
|
||||
"title": "Räta ut",
|
||||
"description": "Räta ut denna linje.",
|
||||
"annotation": "Rätade ut en linje."
|
||||
"key": "S",
|
||||
"annotation": "Rätade ut en linje.",
|
||||
"too_bendy": "Den kan inte rätas upp då den är för böjd."
|
||||
},
|
||||
"delete": {
|
||||
"title": "Ta bort",
|
||||
|
@ -123,7 +134,8 @@
|
|||
"annotation": "Sammanfogade {n} linjer.",
|
||||
"not_eligible": "Dessa objekt kan inte slås samman.",
|
||||
"not_adjacent": "Dessa linjer kan inte slås ihop då dem inte är ihopsatta.",
|
||||
"restriction": "Dessa linjer kan inte slås samman då minst en av dem tillhör relationen \"{relation}\"."
|
||||
"restriction": "Dessa linjer kan inte slås samman då minst en av dem tillhör relationen \"{relation}\".",
|
||||
"incomplete_relation": "Dessa objekt kan inte sammanfogas då åtminstone ett inte hämtats fullständigt."
|
||||
},
|
||||
"move": {
|
||||
"title": "Flytta",
|
||||
|
@ -236,18 +248,24 @@
|
|||
"back_tooltip": "Ändra objekt",
|
||||
"remove": "Ta bort",
|
||||
"search": "Sök",
|
||||
"multiselect": "Välj objekt",
|
||||
"unknown": "Okänd",
|
||||
"incomplete": "<inte hämtad>",
|
||||
"feature_list": "Sök efter egenskaper",
|
||||
"edit": "Ändra objekt",
|
||||
"none": "Ingen",
|
||||
"node": "Nod",
|
||||
"way": "Väg",
|
||||
"relation": "Relation"
|
||||
"relation": "Relation",
|
||||
"location": "Plats"
|
||||
},
|
||||
"background": {
|
||||
"title": "Bakgrund",
|
||||
"description": "Bakgrundsinställningar",
|
||||
"percent_brightness": "{opacity}% ljusstyrka",
|
||||
"none": "Ingen",
|
||||
"custom": "Anpassa",
|
||||
"fix_misalignment": "Justera bildplacering",
|
||||
"reset": "ta bort"
|
||||
},
|
||||
"restore": {
|
||||
|
@ -297,6 +315,7 @@
|
|||
"untagged_area": "Otaggat område",
|
||||
"many_deletions": "Du håller på att ta bort {n} objekt. Är du helt säker? Detta tar bort dem för alla som använder openstreetmap.org.",
|
||||
"tag_suggests_area": "Taggen {tag} indikerar att detta borde vara ett område istället för en linje",
|
||||
"untagged_tooltip": "Välj en typ som beskriver vad denna {geometry} är.",
|
||||
"deprecated_tags": "Borttagna taggar: {tags}"
|
||||
},
|
||||
"zoom": {
|
||||
|
@ -306,11 +325,15 @@
|
|||
"cannot_zoom": "Går ej att zooma ut ytterligare med nuvarande sätt.",
|
||||
"gpx": {
|
||||
"local_layer": "Lokal gpx-fil",
|
||||
"drag_drop": "Dra och släpp en .gpx-fil på sidan, eller klicka på knappen till höger för att bläddra",
|
||||
"zoom": "Zooma till GPX-spår",
|
||||
"browse": "Bläddra efter en .gpx-fil"
|
||||
},
|
||||
"help": {
|
||||
"title": "Hjälp"
|
||||
"title": "Hjälp",
|
||||
"help": "# Hjälp\n\nDetta är en redigerare för [OpenStreetMap](http://www.openstreetmap.org/), den\nfri och redigerbara världskartan. Du kan använda den för att lägga till och uppdatera\ndata i ditt närområde, allt för att ytterligare förbättra en världskarta för alla baserad på öppen källkod och data.\n\nÄndringar du gör i den här kartan kommer att visas för alla som använder\nOpenStreetMap. För att göra en ändring behöver du ett\n[gratis OpenStreetMap-konto](https://www.openstreetmap.org/user/new).\n\n[iD editor](http://ideditor.com/) är ett samarbetsprojekt med [källkodkod \ntillgänglig på GitHub](https://github.com/openstreetmap/iD).\n",
|
||||
"gps": "# GPS \n\nGPS-data är den mest pålitliga källan för uppgifter till OpenStreetMap. Denna redigerare \nstödjer lokala spår – ”.GPX”-filer på din lokala dator. Du kan skapa \ndenna typ av GPS-spår med ett flertal smartphone-appar samt med\npersonlig GPS-hårdvara. \n\nFör information om hur man skapar en GPS-spårning, läs \n[Kartläggning med en GPS](http://learnosm.org/en/beginner/using-gps/). \n\nFör att använda ett GPX-spår för kartläggning, dra och släpp GPX-filen på \nkartredigeraren. Om den känns igen kommer den att läggas till på kartan som en klargrön \nlinje. Klicka på menyn \"Bakgrundsinställningar\" på höger sida för att aktivera, \navaktivera eller zooma till detta nya GPX-drivna lager. \n\nGPX spår överförs inte direkt till OpenStreetMap - det bästa sättet att \nanvända dem är att rita på kartan, använda den som en guide för de nya objekt som \ndu lägger till, och också [ladda upp dem till OpenStreetMap](http://www.openstreetmap.org/trace/create) \nför att användas av andra.\n",
|
||||
"buildings": "# Byggnader\n\nOpenStreetMap är världens största databas över byggnader. Du kan skapa\noch förbättra denna databas.\n\n### Markering\n\nDu kan markera en byggnad genom att klicka på dess kant. Detta kommer att markera \nbyggnaden och öppna en litet verktygsmeny och ett sidofält som visar mer information\nom byggnaden.\n\n### Modifiering\n\nIbland är byggnader felaktigt placerade eller har felaktiga taggar.\n\nFör att flytta en hel byggnad, markera den och klicka sedan på \"Flytta\"-verktyget. flytta\nmus för att flytta byggnaden, och klicka när den är korrekt placerad.\n\nFör att fixa den specifika formen av en byggnad, klicka och dra noderna som bildar\nramen till bättre platser.\n\n### Skapa\n\nEn av de viktigaste frågorna att tänka på vid tilläggning av byggnader till kartan är att\nOpenStreetMap registrerar byggnader både som form och punkt. Tumregeln\när att _kartlägga en byggnad som en form när möjligt_ och kartlägg företag, bostäder,\nfacilitet, och andra saker finns i byggandena som punkter placerade\ninuti byggnadernas ram.\n\nBörja rita en byggnad som en ram genom att klicka på knappen \"område\" högst upp till vänster\ngränssnittet, och avsluta det antingen genom att trycka på \"Retur\" på tangentbordet\neller genom att klicka på den första ritade noden för att stänga formen.\n\n### Radering\n\nOm en byggnad är helt fel – du kan se att den inte finns med i någon satellitbild\noch helst har bekräftat lokalt att det inte finns – kan du ta bort\nden, vilket tar bort det från kartan. Var försiktig när du tar bort objekt –\nlikt alla ändringar kommer resultatet ses av alla och satellitbilder\när ofta föråldrad, så byggnaden kan helt enkelt vara nybyggd.\n\nDu kan ta bort en byggnad genom att klicka på den för att markera den och sedan klicka på\nikonen papperskorg eller trycka på \"Delete\"-tangenten.\n"
|
||||
},
|
||||
"intro": {
|
||||
"navigation": {
|
||||
|
@ -344,6 +367,7 @@
|
|||
},
|
||||
"lines": {
|
||||
"title": "Linjer",
|
||||
"add": "Linjer används för att representera objekt så som vägar, järnvägar och floder. **Klicka på knappen Linje för att lägga till en ny linje.***",
|
||||
"start": "**Påbörja linjen genom att klicka på slutet av vägen.**",
|
||||
"intersect": "Klicka för att lägga till fler punkter på linjen (vägen). Du kan flytta kartan under tiden du ritar. Vägar och många andra typer av linjer är en del av ett större nät med linjer. Det är därför viktigt att linjer blir korrekt anslutna till varandra för att exempelvis körinstruktioner ska fungera.**Klicka på Flower Street för att skapa en anslutning mellan de två linjerna (vägarna).**",
|
||||
"finish": "Linjer avslutas genom att klicka på slutpunkten en gång till.**Avsluta linjen.**",
|
||||
|
@ -372,11 +396,15 @@
|
|||
},
|
||||
"category-road": {
|
||||
"name": "Väg"
|
||||
},
|
||||
"category-route": {
|
||||
"name": "Rutt"
|
||||
}
|
||||
},
|
||||
"fields": {
|
||||
"access": {
|
||||
"label": "Tillgång",
|
||||
"placeholder": "Okänt",
|
||||
"types": {
|
||||
"access": "Generell",
|
||||
"foot": "Fotgängare",
|
||||
|
@ -439,6 +467,9 @@
|
|||
"bicycle_parking": {
|
||||
"label": "Typ"
|
||||
},
|
||||
"boundary": {
|
||||
"label": "Typ"
|
||||
},
|
||||
"building": {
|
||||
"label": "Byggnad"
|
||||
},
|
||||
|
@ -552,7 +583,8 @@
|
|||
"placeholder": "50, 70, 90..."
|
||||
},
|
||||
"name": {
|
||||
"label": "Namn"
|
||||
"label": "Namn",
|
||||
"placeholder": "Vanligt namn (om något)"
|
||||
},
|
||||
"natural": {
|
||||
"label": "Natur"
|
||||
|
@ -600,6 +632,9 @@
|
|||
"ref": {
|
||||
"label": "Referens"
|
||||
},
|
||||
"relation": {
|
||||
"label": "Typ"
|
||||
},
|
||||
"religion": {
|
||||
"label": "Religion",
|
||||
"options": {
|
||||
|
@ -612,6 +647,15 @@
|
|||
"taoist": "Taoism"
|
||||
}
|
||||
},
|
||||
"restriction": {
|
||||
"label": "Typ"
|
||||
},
|
||||
"route": {
|
||||
"label": "Typ"
|
||||
},
|
||||
"route_master": {
|
||||
"label": "Typ"
|
||||
},
|
||||
"sac_scale": {
|
||||
"label": "Svårighetsgrad"
|
||||
},
|
||||
|
@ -632,6 +676,7 @@
|
|||
},
|
||||
"structure": {
|
||||
"label": "Struktur",
|
||||
"placeholder": "Okänt",
|
||||
"options": {
|
||||
"bridge": "Bro",
|
||||
"tunnel": "Tunnel",
|
||||
|
@ -681,11 +726,16 @@
|
|||
}
|
||||
},
|
||||
"presets": {
|
||||
"address": {
|
||||
"name": "Adress",
|
||||
"terms": "Adress, husnummer, destination, gatuadress, postnummer, postort"
|
||||
},
|
||||
"aeroway": {
|
||||
"name": "Flygbana"
|
||||
},
|
||||
"aeroway/aerodrome": {
|
||||
"name": "Flygplats"
|
||||
"name": "Flygplats",
|
||||
"terms": "flygplats, flygfält, flyghamn, aerodrom, landningsplats, lufthamn"
|
||||
},
|
||||
"aeroway/apron": {
|
||||
"name": "Parkering av flygplan (Apron)"
|
||||
|
@ -719,7 +769,8 @@
|
|||
"name": "Bank"
|
||||
},
|
||||
"amenity/bar": {
|
||||
"name": "Bar"
|
||||
"name": "Bar",
|
||||
"terms": "Bar, krog, servering, matställe, pub, cocktailsalong, saloon"
|
||||
},
|
||||
"amenity/bench": {
|
||||
"name": "Bänk"
|
||||
|
@ -736,6 +787,9 @@
|
|||
"amenity/car_rental": {
|
||||
"name": "Biluthyrning"
|
||||
},
|
||||
"amenity/car_sharing": {
|
||||
"name": "Bilpool"
|
||||
},
|
||||
"amenity/car_wash": {
|
||||
"name": "Biltvätt"
|
||||
},
|
||||
|
@ -774,6 +828,9 @@
|
|||
"amenity/hospital": {
|
||||
"name": "Sjukhus"
|
||||
},
|
||||
"amenity/kindergarten": {
|
||||
"name": "Förskola"
|
||||
},
|
||||
"amenity/library": {
|
||||
"name": "Bibliotek"
|
||||
},
|
||||
|
@ -786,6 +843,9 @@
|
|||
"amenity/place_of_worship": {
|
||||
"name": "Plats för tillbedjan"
|
||||
},
|
||||
"amenity/place_of_worship/buddhist": {
|
||||
"name": "Buddhisttempel"
|
||||
},
|
||||
"amenity/place_of_worship/christian": {
|
||||
"name": "Kyrka"
|
||||
},
|
||||
|
@ -816,6 +876,9 @@
|
|||
"amenity/swimming_pool": {
|
||||
"name": "Simbassäng"
|
||||
},
|
||||
"amenity/taxi": {
|
||||
"name": "Taxihållplats"
|
||||
},
|
||||
"amenity/telephone": {
|
||||
"name": "Telefon"
|
||||
},
|
||||
|
@ -900,9 +963,15 @@
|
|||
"building/entrance": {
|
||||
"name": "Entré"
|
||||
},
|
||||
"building/garage": {
|
||||
"name": "Garage"
|
||||
},
|
||||
"building/house": {
|
||||
"name": "Hus"
|
||||
},
|
||||
"building/industrial": {
|
||||
"name": "Industribyggnad"
|
||||
},
|
||||
"building/residential": {
|
||||
"name": "Bostadshus",
|
||||
"terms": "Bostadshus, Boningshus, Flerfamiljshus, Hyreshus"
|
||||
|
@ -1112,6 +1181,9 @@
|
|||
"leisure": {
|
||||
"name": "Nöje"
|
||||
},
|
||||
"leisure/dog_park": {
|
||||
"name": "Hundpark"
|
||||
},
|
||||
"leisure/garden": {
|
||||
"name": "Trädgård"
|
||||
},
|
||||
|
@ -1163,21 +1235,36 @@
|
|||
"man_made": {
|
||||
"name": "Människoskapad"
|
||||
},
|
||||
"man_made/breakwater": {
|
||||
"name": "Vågbrytare"
|
||||
},
|
||||
"man_made/cutline": {
|
||||
"name": "Snittlinje"
|
||||
},
|
||||
"man_made/lighthouse": {
|
||||
"name": "Fyr"
|
||||
},
|
||||
"man_made/pier": {
|
||||
"name": "Pir"
|
||||
},
|
||||
"man_made/pipeline": {
|
||||
"name": "Pipeline"
|
||||
},
|
||||
"man_made/survey_point": {
|
||||
"name": "Trianguleringspunkt"
|
||||
},
|
||||
"man_made/tower": {
|
||||
"name": "Torn"
|
||||
},
|
||||
"man_made/wastewater_plant": {
|
||||
"name": "Avloppsreningsverk"
|
||||
},
|
||||
"man_made/water_tower": {
|
||||
"name": "Vattentorn"
|
||||
},
|
||||
"man_made/water_well": {
|
||||
"name": "Brunn"
|
||||
},
|
||||
"man_made/water_works": {
|
||||
"name": "Vattenverk"
|
||||
},
|
||||
|
@ -1322,6 +1409,9 @@
|
|||
"relation": {
|
||||
"name": "Relation"
|
||||
},
|
||||
"route/ferry": {
|
||||
"name": "Färjerutt"
|
||||
},
|
||||
"shop": {
|
||||
"name": "Affär"
|
||||
},
|
||||
|
@ -1388,6 +1478,9 @@
|
|||
"shop/electronics": {
|
||||
"name": "Elektronikbutik"
|
||||
},
|
||||
"shop/farm": {
|
||||
"name": "Gårdsbutik"
|
||||
},
|
||||
"shop/fishmonger": {
|
||||
"name": "Fiskhandlare"
|
||||
},
|
||||
|
@ -1529,6 +1622,57 @@
|
|||
"tourism/zoo": {
|
||||
"name": "Zoo"
|
||||
},
|
||||
"type/boundary": {
|
||||
"name": "Gräns"
|
||||
},
|
||||
"type/boundary/administrative": {
|
||||
"name": "Administrativ gräns"
|
||||
},
|
||||
"type/multipolygon": {
|
||||
"name": "Multipolygon"
|
||||
},
|
||||
"type/restriction": {
|
||||
"name": "Restriktion"
|
||||
},
|
||||
"type/route": {
|
||||
"name": "Rutt"
|
||||
},
|
||||
"type/route/bicycle": {
|
||||
"name": "cykelrutt"
|
||||
},
|
||||
"type/route/bus": {
|
||||
"name": "Bussrutt"
|
||||
},
|
||||
"type/route/detour": {
|
||||
"name": "Alternativ rutt"
|
||||
},
|
||||
"type/route/ferry": {
|
||||
"name": "Färjerutt"
|
||||
},
|
||||
"type/route/foot": {
|
||||
"name": "Vandringsrutt"
|
||||
},
|
||||
"type/route/pipeline": {
|
||||
"name": "Rörledningsrutt"
|
||||
},
|
||||
"type/route/power": {
|
||||
"name": "Kraftledningsrutt"
|
||||
},
|
||||
"type/route/road": {
|
||||
"name": "Vägrutt"
|
||||
},
|
||||
"type/route/train": {
|
||||
"name": "Tågrutt"
|
||||
},
|
||||
"type/route/tram": {
|
||||
"name": "Spårvagnsrutt"
|
||||
},
|
||||
"type/route_master": {
|
||||
"name": "Huvudrutt"
|
||||
},
|
||||
"vertex": {
|
||||
"name": "Annat"
|
||||
},
|
||||
"waterway": {
|
||||
"name": "Vattenväg"
|
||||
},
|
||||
|
|
48
vendor/assets/iD/iD/locales/ta.json
vendored
48
vendor/assets/iD/iD/locales/ta.json
vendored
|
@ -112,6 +112,7 @@
|
|||
"address": {
|
||||
"label": "முகவரி",
|
||||
"placeholders": {
|
||||
"housename": "வீட்டின் பெயர்",
|
||||
"number": "123",
|
||||
"street": "தெரு",
|
||||
"city": "மாநகரம்"
|
||||
|
@ -138,6 +139,9 @@
|
|||
"artwork_type": {
|
||||
"label": "வகை"
|
||||
},
|
||||
"atm": {
|
||||
"label": "ஏ.டி.எம்"
|
||||
},
|
||||
"barrier": {
|
||||
"label": "வகை"
|
||||
},
|
||||
|
@ -206,6 +210,7 @@
|
|||
"label": "வகை"
|
||||
},
|
||||
"lanes": {
|
||||
"label": "சந்துகள்",
|
||||
"placeholder": "1, 2, 3..."
|
||||
},
|
||||
"leisure": {
|
||||
|
@ -221,11 +226,15 @@
|
|||
"label": "வகை"
|
||||
},
|
||||
"maxspeed": {
|
||||
"label": "வேக எல்லை",
|
||||
"placeholder": "40, 50, 60..."
|
||||
},
|
||||
"name": {
|
||||
"label": "பெயர்"
|
||||
},
|
||||
"natural": {
|
||||
"label": "இயற்கையான"
|
||||
},
|
||||
"note": {
|
||||
"label": "குறிப்பு"
|
||||
},
|
||||
|
@ -346,6 +355,9 @@
|
|||
"amenity/bank": {
|
||||
"name": "வங்கி"
|
||||
},
|
||||
"amenity/bicycle_parking": {
|
||||
"name": "ஈருருளை நிறுத்தகம்"
|
||||
},
|
||||
"amenity/cafe": {
|
||||
"name": "டீக்கடை"
|
||||
},
|
||||
|
@ -358,6 +370,12 @@
|
|||
"amenity/college": {
|
||||
"name": "கல்லூரி"
|
||||
},
|
||||
"amenity/fire_station": {
|
||||
"name": "தீயணைப்பு நிலையம்"
|
||||
},
|
||||
"amenity/grave_yard": {
|
||||
"name": "இடுகாடு"
|
||||
},
|
||||
"amenity/hospital": {
|
||||
"name": "மருத்துவமனை"
|
||||
},
|
||||
|
@ -379,6 +397,9 @@
|
|||
"amenity/police": {
|
||||
"name": "காவல்"
|
||||
},
|
||||
"amenity/post_box": {
|
||||
"name": "அஞ்சல்பெட்டி"
|
||||
},
|
||||
"amenity/post_office": {
|
||||
"name": "அஞ்சலகம்"
|
||||
},
|
||||
|
@ -439,6 +460,9 @@
|
|||
"highway/bus_stop": {
|
||||
"name": "பேருந்து நிலையம்"
|
||||
},
|
||||
"highway/footway": {
|
||||
"name": "நடைபாதை"
|
||||
},
|
||||
"highway/path": {
|
||||
"name": "வழி"
|
||||
},
|
||||
|
@ -451,9 +475,15 @@
|
|||
"historic/castle": {
|
||||
"name": "கோட்டை"
|
||||
},
|
||||
"landuse/construction": {
|
||||
"name": "கட்டுமானம்"
|
||||
},
|
||||
"landuse/farm": {
|
||||
"name": "பண்ணை"
|
||||
},
|
||||
"landuse/farmyard": {
|
||||
"name": "பண்ணை"
|
||||
},
|
||||
"landuse/forest": {
|
||||
"name": "காடு"
|
||||
},
|
||||
|
@ -496,9 +526,15 @@
|
|||
"man_made/water_tower": {
|
||||
"name": "தண்ணீர்த் தொட்டி"
|
||||
},
|
||||
"natural": {
|
||||
"name": "இயற்கையான"
|
||||
},
|
||||
"natural/beach": {
|
||||
"name": "கடற்கரை"
|
||||
},
|
||||
"natural/coastline": {
|
||||
"name": "கடற்கரை"
|
||||
},
|
||||
"natural/glacier": {
|
||||
"name": "பனிப் பாறை"
|
||||
},
|
||||
|
@ -535,6 +571,9 @@
|
|||
"place/city": {
|
||||
"name": "மாநகரம்"
|
||||
},
|
||||
"place/island": {
|
||||
"name": "தீவு"
|
||||
},
|
||||
"place/town": {
|
||||
"name": "நகரம்"
|
||||
},
|
||||
|
@ -565,6 +604,12 @@
|
|||
"railway/station": {
|
||||
"name": "இரயில் நிலையம்"
|
||||
},
|
||||
"railway/subway": {
|
||||
"name": "சுரங்கப்பாதை"
|
||||
},
|
||||
"railway/subway_entrance": {
|
||||
"name": "சுரங்கப்பாதை நுழைவுவாயில்"
|
||||
},
|
||||
"relation": {
|
||||
"name": "தொடர்பு"
|
||||
},
|
||||
|
@ -598,6 +643,9 @@
|
|||
"shop/shoes": {
|
||||
"name": "காலணியகம்"
|
||||
},
|
||||
"tourism": {
|
||||
"name": "சுற்றுலா"
|
||||
},
|
||||
"tourism/artwork": {
|
||||
"name": "ஓவியம்"
|
||||
},
|
||||
|
|
9
vendor/assets/iD/iD/locales/te.json
vendored
9
vendor/assets/iD/iD/locales/te.json
vendored
|
@ -153,6 +153,7 @@
|
|||
"truncated_list": "మార్పులు చేసినవారు {users} మరియు {count} మంది"
|
||||
},
|
||||
"geocoder": {
|
||||
"search": "విశ్వవ్యాప్తంగా వెతుకు",
|
||||
"no_results_visible": "కనిపిస్తూన్న పటంలో ఫలితాలు ఏమీ లేవు",
|
||||
"no_results_worldwide": "ఫలితాలు ఏమీ లేవు"
|
||||
},
|
||||
|
@ -177,6 +178,8 @@
|
|||
"search": "వెతుకు",
|
||||
"multiselect": "ఎన్నుకున్న అంశాలు",
|
||||
"unknown": "గుర్తు తెలియని",
|
||||
"feature_list": "విశేషాలు వెతుకు",
|
||||
"edit": "విశేషం మార్చు",
|
||||
"none": "ఏవీ కాదు",
|
||||
"way": "దారి",
|
||||
"relation": "సంబంధం",
|
||||
|
@ -198,6 +201,8 @@
|
|||
"unsaved_changes": "భద్రపరచని మార్పులు ఉన్నాయి"
|
||||
},
|
||||
"success": {
|
||||
"just_edited": "మీరు ఇప్పుడే OpenStreetMapను మార్చారు",
|
||||
"view_on_osm": "OSM/ఓఎస్ఎం లో వీక్షించు",
|
||||
"facebook": "ఫేస్బుక్లో పంచుకోండి",
|
||||
"twitter": "ట్విట్టర్లో పంచుకోండి",
|
||||
"google": "గూగుల్+లో పంచుకోండి"
|
||||
|
@ -227,6 +232,7 @@
|
|||
},
|
||||
"areas": {
|
||||
"title": "ప్రదేశాలు",
|
||||
"search": "**'{name}' కొరకు వెతుకు**",
|
||||
"choose": "జాబితా నుండి మైదానం ఎంచుకోండి"
|
||||
},
|
||||
"lines": {
|
||||
|
@ -236,7 +242,8 @@
|
|||
"startediting": {
|
||||
"title": "కూర్పు మొదలుపెట్టు",
|
||||
"help": "మరిన్ని వివరాలు ఇక్కడ లబించును",
|
||||
"save": "మీరు మార్చిన విశేషాలను భద్రపరచడం మరచిపోకండి!"
|
||||
"save": "మీరు మార్చిన విశేషాలను భద్రపరచడం మరచిపోకండి!",
|
||||
"start": "మ్యాప్ చేయడం మొదలుపెట్టు"
|
||||
}
|
||||
},
|
||||
"presets": {
|
||||
|
|
111
vendor/assets/iD/iD/locales/vi.json
vendored
111
vendor/assets/iD/iD/locales/vi.json
vendored
|
@ -134,7 +134,8 @@
|
|||
"annotation": "gộp {n} đường kẻ",
|
||||
"not_eligible": "Không thể gộp các đối tượng này.",
|
||||
"not_adjacent": "Không thể gộp các đường kẻ không nối liền với nhau.",
|
||||
"restriction": "Không thể gộp các đường kẻ này vì ít nhất một trong những đường kẻ trực thuộc quan hệ “{relation}”."
|
||||
"restriction": "Không thể gộp các đường kẻ này vì ít nhất một trong những đường kẻ trực thuộc quan hệ “{relation}”.",
|
||||
"incomplete_relation": "Không thể gộp vì một trong số đối tượng này chưa được tải về hoàn toàn."
|
||||
},
|
||||
"move": {
|
||||
"title": "Di chuyển",
|
||||
|
@ -1284,10 +1285,46 @@
|
|||
"name": "Khu chung cư",
|
||||
"terms": "khu chung cư, khu chung cu"
|
||||
},
|
||||
"building/barn": {
|
||||
"name": "Chuồng",
|
||||
"terms": "chuồng, chuồng trâu bò, chuồng ngựa, kho thóc, chuong, chuong trau bo, chuong ngua, kho thoc"
|
||||
},
|
||||
"building/bunker": {
|
||||
"name": "Boong ke",
|
||||
"terms": "boong ke, boong-ke, boongke"
|
||||
},
|
||||
"building/cabin": {
|
||||
"name": "Nhà tranh",
|
||||
"terms": "nhà tranh, túp lều, nhà gỗ, nha tranh, tup leu, nha go"
|
||||
},
|
||||
"building/cathedral": {
|
||||
"name": "Nhà thờ Chánh tòa",
|
||||
"terms": "nhà thờ chánh tòa, nhà thờ chánh toà, nhà thờ chính tòa, nhà thờ chính toà, vương cung thánh đường, đại vương cung thánh đường, tiểu vương cung thánh đường, nha tho chanh toa, nha tho chinh toa, vuong cung thanh duong, dai vuong cung thanh duong, tieu vuong cung thanh duong"
|
||||
},
|
||||
"building/chapel": {
|
||||
"name": "Nhà nguyện",
|
||||
"terms": "nhà nguyện, nhà thờ nhỏ, nha nguyen, nha tho nho"
|
||||
},
|
||||
"building/church": {
|
||||
"name": "Nhà thờ",
|
||||
"terms": "nhà thờ, Ki-tô giáo, Kitô giáo, Thiên Chúa giáo, đạo Thiên Chúa, Công giáo, Tin Lành, giáo xứ, thánh đường, nha tho, Ki-to giao, Kito giao, Thien Chua giao, dao Thien Chua, Cong giao, Tin Lanh, giao xu, thanh duong"
|
||||
},
|
||||
"building/commercial": {
|
||||
"name": "Tòa nhà Thương mại",
|
||||
"terms": "tòa nhà thương mại, toà nhà thương mại, toa nha thuong mai"
|
||||
},
|
||||
"building/construction": {
|
||||
"name": "Tòa nhà đang Xây dựng",
|
||||
"terms": "tòa nhà đang xây dựng, toà nhà đang xây dựng, nhà đang xây, toa nha dang xay dung, nha dang xay"
|
||||
},
|
||||
"building/detached": {
|
||||
"name": "Nhà Tách biệt",
|
||||
"terms": "nhà tách biệt, nhà biệt lập, nha tach biet, nha biet lap"
|
||||
},
|
||||
"building/dormitory": {
|
||||
"name": "Ký túc xá",
|
||||
"terms": "ký túc xá, kí túc xá, ký túc sá, kí túc sá, cư xá, ky tuc xa, ki tuc xa, ky tuc sa, ki tuc sa, cu xa"
|
||||
},
|
||||
"building/entrance": {
|
||||
"name": "Cửa vào",
|
||||
"terms": "cửa vào, lối vào, cua vao, loi vao"
|
||||
|
@ -1296,6 +1333,22 @@
|
|||
"name": "Ga ra",
|
||||
"terms": "ga ra, ga-ra"
|
||||
},
|
||||
"building/garages": {
|
||||
"name": "Dãy Ga ra",
|
||||
"terms": "dãy ga ra, dãy ga-ra, dãy nhà để xe, day ga ra, day ga-ra, day nha de xe"
|
||||
},
|
||||
"building/greenhouse": {
|
||||
"name": "Nhà kính",
|
||||
"terms": "nhà kính, nhà kiếng, nhà trồng rau, nhà trồng hoa, nha kinh, nha kieng, nha trong rau, nha trong hoa"
|
||||
},
|
||||
"building/hospital": {
|
||||
"name": "Tòa nhà Bệnh viện",
|
||||
"terms": "tòa nhà bệnh viện, toà nhà bệnh viện, tòa nhà nhà thường, toà nhà nhà thường"
|
||||
},
|
||||
"building/hotel": {
|
||||
"name": "Tòa nhà Khách sạn",
|
||||
"terms": "tòa nhà khách sạn, toà nhà khách sạn"
|
||||
},
|
||||
"building/house": {
|
||||
"name": "Nhà ở",
|
||||
"terms": "nhà ở, căn nhà, tòa nhà, toà nhà, nha o, can nha, toa nha"
|
||||
|
@ -1308,10 +1361,54 @@
|
|||
"name": "Tòa nhà Công nghiệp",
|
||||
"terms": "tòa nhà công nghiệp, toà nhà công nghiệp, toa nha cong nghiep"
|
||||
},
|
||||
"building/public": {
|
||||
"name": "Tòa nhà Công cộng",
|
||||
"terms": "tòa nhà công cộng, toà nhà công cộng"
|
||||
},
|
||||
"building/residential": {
|
||||
"name": "Tòa nhà Dân cư",
|
||||
"terms": "tòa nhà dân cư, toà nhà dân cư, nhà ở, căn nhà, toa nha dan cu, nha o, can nha"
|
||||
},
|
||||
"building/retail": {
|
||||
"name": "Tòa nhà Bán lẻ",
|
||||
"terms": "tòa nhà bán lẻ, toà nhà bán lẻ, toa nha ban le"
|
||||
},
|
||||
"building/roof": {
|
||||
"name": "Mái Che",
|
||||
"terms": "mái che, mái, mái nhà, nóc, mai che, mai, mai nha, noc"
|
||||
},
|
||||
"building/school": {
|
||||
"name": "Nhà Trường",
|
||||
"terms": "nhà trường, trường học, học viện, nha truong, truong học, hoc vien"
|
||||
},
|
||||
"building/shed": {
|
||||
"name": "Lán",
|
||||
"terms": "lán, lán trại, lều lán, túp lều, chuồng, lan, lan trai, leu lan, tup leu, chuong"
|
||||
},
|
||||
"building/stable": {
|
||||
"name": "Chuồng Ngựa",
|
||||
"terms": "chuồng ngựa, chuong ngua"
|
||||
},
|
||||
"building/static_caravan": {
|
||||
"name": "Nhà Lưu động để Một Chỗ",
|
||||
"terms": "nhà lưu động để một chỗ, nhà di động để một chỗ, nha luu dong de mot cho, nha di dong de mot cho"
|
||||
},
|
||||
"building/terrace": {
|
||||
"name": "Dãy Nhà",
|
||||
"terms": "dãy nhà, day nha"
|
||||
},
|
||||
"building/train_station": {
|
||||
"name": "Nhà ga",
|
||||
"terms": "nhà ga,nha ga"
|
||||
},
|
||||
"building/university": {
|
||||
"name": "Tòa nhà Đại học",
|
||||
"terms": "tòa nhà đại học, toà nhà đại học, tòa nhà trường đại học, toà nhà trường đại học, toa nha dai hoc, toa nha truong dai hoc"
|
||||
},
|
||||
"building/warehouse": {
|
||||
"name": "Nhà kho",
|
||||
"terms": "nhà kho, kho, kho tàng, kho bãi, nha kho, kho tang, kho bai"
|
||||
},
|
||||
"craft/basket_maker": {
|
||||
"name": "Đan Rổ rá",
|
||||
"terms": "nghề đan rổ rá, người đan rổ rá, tiệm đan rổ rá, nghe dan ro ra, nguoi dan ro ra, tiem dan ro ra"
|
||||
|
@ -2288,6 +2385,10 @@
|
|||
"name": "Tiệm Rượu",
|
||||
"terms": "tiệm rượu, nơi bán rượu, chỗ bán rượu, quầy bán rượu, cửa hàng rượu, cửa hàng bán rượu, tiệm bán rượu, tiem ruou, noi ban ruou, cho ban ruou, quay ban ruou, cua hang ruou, cua hang ban ruou, tiem ban ruou"
|
||||
},
|
||||
"shop/art": {
|
||||
"name": "Tiệm Nghệ phẩm",
|
||||
"terms": "tiệm nghệ phẩm, tiệm bức tranh, tiệm bức vẽ, cửa hàng nghệ phẩm, cửa hàng bức tranh, cửa hàng bức vẽ, quán nghệ phẩm, quán bức tranh, quán bức vẽ, nơi bán nghệ phẩm, nơi bán bức tranh, nơi bán bức vẽ, tiem nghe pham, tiem buc tranh, tiem buc ve, cua hang nghe pham, cua hang buc tranh, cua hang buc ve, quan nghe pham, quan buc tranh, quan buc ve, noi ban nghe pham, noi ban buc tranh, noi ban buc ve"
|
||||
},
|
||||
"shop/bakery": {
|
||||
"name": "Tiệm Bánh",
|
||||
"terms": "tiệm bánh, tiệm bánh mì, tiệm bán bánh, nơi bán bánh, chỗ bán bánh, quầy bán bánh, nhà bán bánh, tiem banh, tiem banh mi, tiem ban banh, noi ban banh, cho ban banh, quay ban banh, nha ban banh"
|
||||
|
@ -2304,6 +2405,10 @@
|
|||
"name": "Tiệm Xe đạp",
|
||||
"terms": "tiệm xe đạp, cửa hàng xe đạp, chỗ bán xe đạp, tiem xe dap, cua hang xe dap, cho ban xe dap"
|
||||
},
|
||||
"shop/bookmaker": {
|
||||
"name": "Phòng Đánh cá Ngựa",
|
||||
"terms": "phòng đánh cá ngựa, văn phòng đánh cá ngựa, cửa sổ đánh cá ngựa, tiệm đánh cá ngựa, cửa hàng đánh cá ngựa, nơi đánh cá ngựa, phong danh ca ngua, van phong danh ca ngua, cua so danh ca ngua, tiem danh ca ngua, cua hang danh ca ngua, noi danh ca ngua"
|
||||
},
|
||||
"shop/books": {
|
||||
"name": "Hiệu Sách",
|
||||
"terms": "hiệu sách, tiệm sách, chỗ bán sách vở, hieu sach, tiem sach, cho ban sach vo"
|
||||
|
@ -2424,6 +2529,10 @@
|
|||
"name": "Thợ khóa",
|
||||
"terms": "thợ khóa, thợ sửa khóa, thợ khoá, trợ sửa khoá, thợ kim khí, tho khoa, tho sua khoa, tho kim khi"
|
||||
},
|
||||
"shop/lottery": {
|
||||
"name": "Tiệm Xổ số",
|
||||
"terms": "quầy xổ số, quầy vé xổ số, tiệm xổ số, tiệm vé xổ số, cửa hàng xổ số, cửa hàng vé xổ số, quán xổ số, quán vé xổ số, nơi bán vé xổ số, nơi mua vé xổ số, quay xo so, quay ve xo so, tiem xo so, tiem ve xo so, cua hang xo so, cua hang ve xo so, quan xo so, quan ve xo so, noi ban ve xo so, noi mua ve xo so"
|
||||
},
|
||||
"shop/mall": {
|
||||
"name": "Trung tâm Thương mại",
|
||||
"terms": "trung tâm thương mại, khu thương mại, trung tam thuong mai, khu thuong mai"
|
||||
|
|
5
vendor/assets/iD/iD/locales/zh-CN.json
vendored
5
vendor/assets/iD/iD/locales/zh-CN.json
vendored
|
@ -297,7 +297,7 @@
|
|||
"splash": {
|
||||
"welcome": "欢迎使用OpenStreetMap iD编辑器",
|
||||
"text": "ID编辑器是一个既易用而又功能强大的工具,以助您编辑世界上最好的自由世界地图。这是{version}版本。欲知详情,请浏览{website}及在{github}报告程序错误。“",
|
||||
"walkthrough": "开始导览",
|
||||
"walkthrough": "开始演练",
|
||||
"start": "现在编辑"
|
||||
},
|
||||
"source_switch": {
|
||||
|
@ -836,6 +836,9 @@
|
|||
"name": "缆车线路",
|
||||
"terms": "缆车线路"
|
||||
},
|
||||
"aerialway/cable_car": {
|
||||
"name": "缆车"
|
||||
},
|
||||
"aerialway/pylon": {
|
||||
"name": "缆车塔",
|
||||
"terms": "缆车塔"
|
||||
|
|
666
vendor/assets/iD/iD/locales/zh-TW.json
vendored
666
vendor/assets/iD/iD/locales/zh-TW.json
vendored
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue