Remove the link to the osm wiki changeset page

(doesn't really add anything and not written for newbies)
This commit is contained in:
Bryan Housel
2017-08-10 15:13:11 -04:00
parent e52fcdb562
commit 03c8e07cb1
3 changed files with 2 additions and 9 deletions
-1
View File
@@ -259,7 +259,6 @@ en:
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."
request_review_link: "http://wiki.openstreetmap.org/wiki/Changeset"
save: Upload
cancel: Cancel
changes: "{count} Changes"
-1
View File
@@ -333,7 +333,6 @@
"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.",
"request_review_link": "http://wiki.openstreetmap.org/wiki/Changeset",
"save": "Upload",
"cancel": "Cancel",
"changes": "{count} Changes",
+2 -7
View File
@@ -174,17 +174,12 @@ export function uiCommit(context) {
var prose = saveSection
.append('p')
.attr('class', 'commit-info')
.html(t('commit.upload_explanation'));
.text(t('commit.upload_explanation'));
var requestReview = saveSection
.append('p')
.attr('class', 'request-review')
.html( t('commit.request_review'))
.append('a')
.attr('target', '_blank')
.attr('tabindex', -1)
.call(svgIcon('#icon-out-link', 'inline'))
.attr('href', t('commit.request_review_link'));
.text(t('commit.request_review'));
requestReview
.append('input')