Fix grammar in msg string in TrackBase.vue

This commit is contained in:
marzzzello 2020-04-14 17:21:39 +02:00
parent da2cc26a64
commit d24b64c793
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ export default {
prettyDate: escapeHtml(momentFormat(this.track.creation_date, 'LL')),
})
} else {
msg = this.$pgettext('Content/Track/Paragraph', 'Uploaded by on <time title="%{ date }" datetime="%{ date }">%{ prettyDate }</time>')
msg = this.$pgettext('Content/Track/Paragraph', 'Uploaded on <time title="%{ date }" datetime="%{ date }">%{ prettyDate }</time>')
return this.$gettextInterpolate(msg, {
date: escapeHtml(this.track.creation_date),
prettyDate: escapeHtml(momentFormat(this.track.creation_date, 'LL')),