mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-19 23:14:47 +02:00
Add stop type, direction forward/backward
This commit is contained in:
+22
-1
@@ -661,6 +661,14 @@ en:
|
||||
label: Par
|
||||
# par field placeholder
|
||||
placeholder: '3, 4, 5...'
|
||||
parallel_direction:
|
||||
# 'direction=*'
|
||||
label: Direction
|
||||
options:
|
||||
# direction=backward
|
||||
backward: Backward
|
||||
# direction=forward
|
||||
forward: Forward
|
||||
park_ride:
|
||||
# 'park_ride=*'
|
||||
label: Park and Ride
|
||||
@@ -923,6 +931,14 @@ en:
|
||||
stars:
|
||||
# 'stars=*'
|
||||
label: Stars
|
||||
stop:
|
||||
# 'stop=*'
|
||||
label: Stop Type
|
||||
options:
|
||||
# stop=all
|
||||
all: All Ways
|
||||
# stop=minor
|
||||
minor: Minor Road
|
||||
structure:
|
||||
# 'bridge=*, tunnel=*, embankment=*, cutting=*, ford=*'
|
||||
label: Structure
|
||||
@@ -2140,6 +2156,11 @@ en:
|
||||
name: Foot Path
|
||||
# 'terms: hike,hiking,trackway,trail,walk'
|
||||
terms: "<translate with synonyms or related terms for 'Foot Path', separated by commas>"
|
||||
highway/give_way:
|
||||
# highway=give_way
|
||||
name: Yield Sign
|
||||
# 'terms: give way,yield,sign'
|
||||
terms: "<translate with synonyms or related terms for 'Yield Sign', separated by commas>"
|
||||
highway/living_street:
|
||||
# highway=living_street
|
||||
name: Living Street
|
||||
@@ -2243,7 +2264,7 @@ en:
|
||||
highway/stop:
|
||||
# highway=stop
|
||||
name: Stop Sign
|
||||
# 'terms: stop sign'
|
||||
# 'terms: stop,halt,sign'
|
||||
terms: "<translate with synonyms or related terms for 'Stop Sign', separated by commas>"
|
||||
highway/street_lamp:
|
||||
# highway=street_lamp
|
||||
|
||||
@@ -891,6 +891,17 @@
|
||||
"label": "Par",
|
||||
"placeholder": "3, 4, 5..."
|
||||
},
|
||||
"parallel_direction": {
|
||||
"key": "direction",
|
||||
"type": "combo",
|
||||
"label": "Direction",
|
||||
"strings": {
|
||||
"options": {
|
||||
"forward": "Forward",
|
||||
"backward": "Backward"
|
||||
}
|
||||
}
|
||||
},
|
||||
"park_ride": {
|
||||
"key": "park_ride",
|
||||
"type": "check",
|
||||
@@ -1248,6 +1259,17 @@
|
||||
"type": "number",
|
||||
"label": "Stars"
|
||||
},
|
||||
"stop": {
|
||||
"key": "stop",
|
||||
"type": "combo",
|
||||
"label": "Stop Type",
|
||||
"strings": {
|
||||
"options": {
|
||||
"all": "All Ways",
|
||||
"minor": "Minor Road"
|
||||
}
|
||||
}
|
||||
},
|
||||
"structure": {
|
||||
"type": "radio",
|
||||
"keys": [
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"key": "stop",
|
||||
"type": "combo",
|
||||
"label": "Stop Type",
|
||||
"strings": {
|
||||
"options": {
|
||||
"all": "All Ways",
|
||||
"minor": "Minor Road"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -4364,6 +4364,23 @@
|
||||
},
|
||||
"name": "Foot Path"
|
||||
},
|
||||
"highway/give_way": {
|
||||
"fields": [
|
||||
"parallel_direction"
|
||||
],
|
||||
"geometry": [
|
||||
"vertex"
|
||||
],
|
||||
"tags": {
|
||||
"highway": "give_way"
|
||||
},
|
||||
"terms": [
|
||||
"give way",
|
||||
"yield",
|
||||
"sign"
|
||||
],
|
||||
"name": "Yield Sign"
|
||||
},
|
||||
"highway/living_street": {
|
||||
"icon": "highway-living-street",
|
||||
"fields": [
|
||||
@@ -4811,6 +4828,10 @@
|
||||
"name": "Steps"
|
||||
},
|
||||
"highway/stop": {
|
||||
"fields": [
|
||||
"stop",
|
||||
"parallel_direction"
|
||||
],
|
||||
"geometry": [
|
||||
"vertex"
|
||||
],
|
||||
@@ -4818,7 +4839,9 @@
|
||||
"highway": "stop"
|
||||
},
|
||||
"terms": [
|
||||
"stop sign"
|
||||
"stop",
|
||||
"halt",
|
||||
"sign"
|
||||
],
|
||||
"name": "Stop Sign"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"fields": [
|
||||
"stop",
|
||||
"parallel_direction"
|
||||
],
|
||||
"geometry": [
|
||||
|
||||
@@ -974,6 +974,10 @@
|
||||
"key": "highway",
|
||||
"value": "footway"
|
||||
},
|
||||
{
|
||||
"key": "highway",
|
||||
"value": "give_way"
|
||||
},
|
||||
{
|
||||
"key": "highway",
|
||||
"value": "living_street"
|
||||
|
||||
Vendored
+19
-1
@@ -1198,6 +1198,13 @@
|
||||
"label": "Par",
|
||||
"placeholder": "3, 4, 5..."
|
||||
},
|
||||
"parallel_direction": {
|
||||
"label": "Direction",
|
||||
"options": {
|
||||
"forward": "Forward",
|
||||
"backward": "Backward"
|
||||
}
|
||||
},
|
||||
"park_ride": {
|
||||
"label": "Park and Ride"
|
||||
},
|
||||
@@ -1406,6 +1413,13 @@
|
||||
"stars": {
|
||||
"label": "Stars"
|
||||
},
|
||||
"stop": {
|
||||
"label": "Stop Type",
|
||||
"options": {
|
||||
"all": "All Ways",
|
||||
"minor": "Minor Road"
|
||||
}
|
||||
},
|
||||
"structure": {
|
||||
"label": "Structure",
|
||||
"placeholder": "Unknown",
|
||||
@@ -2490,6 +2504,10 @@
|
||||
"name": "Foot Path",
|
||||
"terms": "hike,hiking,trackway,trail,walk"
|
||||
},
|
||||
"highway/give_way": {
|
||||
"name": "Yield Sign",
|
||||
"terms": "give way,yield,sign"
|
||||
},
|
||||
"highway/living_street": {
|
||||
"name": "Living Street",
|
||||
"terms": ""
|
||||
@@ -2584,7 +2602,7 @@
|
||||
},
|
||||
"highway/stop": {
|
||||
"name": "Stop Sign",
|
||||
"terms": "stop sign"
|
||||
"terms": "stop,halt,sign"
|
||||
},
|
||||
"highway/street_lamp": {
|
||||
"name": "Street Lamp",
|
||||
|
||||
Reference in New Issue
Block a user