mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-30 00:40:25 +02:00
@@ -634,6 +634,11 @@ en:
|
||||
anonymous: anonymous
|
||||
closed: "(Closed)"
|
||||
commentTitle: Comments
|
||||
status:
|
||||
opened: "opened {when}"
|
||||
reopened: "reopened {when}"
|
||||
commented: "commented {when}"
|
||||
closed: "closed {when}"
|
||||
newComment: New Comment
|
||||
inputPlaceholder: Enter a comment to share with other users.
|
||||
close: Close Note
|
||||
|
||||
6
dist/locales/en.json
vendored
6
dist/locales/en.json
vendored
@@ -770,6 +770,12 @@
|
||||
"anonymous": "anonymous",
|
||||
"closed": "(Closed)",
|
||||
"commentTitle": "Comments",
|
||||
"status": {
|
||||
"opened": "opened {when}",
|
||||
"reopened": "reopened {when}",
|
||||
"commented": "commented {when}",
|
||||
"closed": "closed {when}"
|
||||
},
|
||||
"newComment": "New Comment",
|
||||
"inputPlaceholder": "Enter a comment to share with other users.",
|
||||
"close": "Close Note",
|
||||
|
||||
@@ -61,7 +61,9 @@ export function uiNoteComments() {
|
||||
metadataEnter
|
||||
.append('div')
|
||||
.attr('class', 'comment-date')
|
||||
.text(function(d) { return d.action + ' ' + localeDateString(d.date); });
|
||||
.text(function(d) {
|
||||
return t('note.status.' + d.action, { when: localeDateString(d.date) });
|
||||
});
|
||||
|
||||
mainEnter
|
||||
.append('div')
|
||||
|
||||
Reference in New Issue
Block a user