Merge pull request #4223 from openstreetmap/request_review

Add requesting review
This commit is contained in:
Bryan Housel
2017-08-17 12:15:24 -04:00
committed by GitHub
23 changed files with 1193 additions and 734 deletions
+1 -2
View File
@@ -254,10 +254,9 @@ en:
rateLimit: The API is limiting anonymous connections. You can fix this by logging in.
commit:
title: Upload to OpenStreetMap
description_placeholder: Brief description of your contributions (required)
message_label: Changeset Comment
upload_explanation: "The changes you upload will be visible on all maps that use OpenStreetMap data."
upload_explanation_with_user: "The changes you upload as {user} will be visible on all maps that use OpenStreetMap data."
request_review: "I would like someone to review my edits."
save: Upload
cancel: Cancel
changes: "{count} Changes"
+11 -1
View File
@@ -339,6 +339,11 @@ en:
collection_times:
# collection_times=*
label: Collection Times
comment:
# comment=*
label: Changeset Comment
# comment field placeholder
placeholder: Brief description of your contributions (required)
communication_multi:
# 'communication:=*'
label: Communication Types
@@ -571,6 +576,11 @@ en:
handrail:
# handrail=*
label: Handrail
hashtags:
# hashtags=*
label: Hashtags
# hashtags field placeholder
placeholder: '#example'
height:
# height=*
label: Height (Meters)
@@ -1218,7 +1228,7 @@ en:
label: People Served
source:
# source=*
label: Source
label: Sources
sport:
# sport=*
label: Sports
+21 -2
View File
@@ -437,6 +437,12 @@
"type": "text",
"label": "Collection Times"
},
"comment": {
"key": "comment",
"type": "textarea",
"label": "Changeset Comment",
"placeholder": "Brief description of your contributions (required)"
},
"communication_multi": {
"key": "communication:",
"type": "multiCombo",
@@ -788,6 +794,12 @@
"type": "check",
"label": "Handrail"
},
"hashtags": {
"key": "hashtags",
"type": "semiCombo",
"label": "Hashtags",
"placeholder": "#example"
},
"height": {
"key": "height",
"type": "number",
@@ -1624,10 +1636,17 @@
},
"source": {
"key": "source",
"type": "text",
"type": "semiCombo",
"icon": "source",
"universal": true,
"label": "Source"
"label": "Sources",
"options": [
"survey",
"local knowledge",
"gps",
"aerial imagery",
"streetlevel imagery"
]
},
"sport_ice": {
"key": "sport",
+6
View File
@@ -0,0 +1,6 @@
{
"key": "comment",
"type": "textarea",
"label": "Changeset Comment",
"placeholder": "Brief description of your contributions (required)"
}
+6
View File
@@ -0,0 +1,6 @@
{
"key": "hashtags",
"type": "semiCombo",
"label": "Hashtags",
"placeholder": "#example"
}
+10 -3
View File
@@ -1,7 +1,14 @@
{
"key": "source",
"type": "text",
"type": "semiCombo",
"icon": "source",
"universal": true,
"label": "Source"
}
"label": "Sources",
"options": [
"survey",
"local knowledge",
"gps",
"aerial imagery",
"streetlevel imagery"
]
}