mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-19 23:14:47 +02:00
Remove the link to the osm wiki changeset page
(doesn't really add anything and not written for newbies)
This commit is contained in:
@@ -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"
|
||||
|
||||
Vendored
-1
@@ -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",
|
||||
|
||||
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user