summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorrakekniven <2069590+rakekniven@users.noreply.github.com>2023-03-12 01:11:51 +0100
committerGitHub <noreply@github.com>2023-03-12 01:11:51 +0100
commit1394534e88092e536a2d45b305bd183c507296c2 (patch)
tree7cd6e31af38a89b9be7d42287dd2aa47467a31a2 /src
parent88027b8497d14528ce66bb2aff6e527459fe0111 (diff)
fix(l10n): Fixed grammar
Reported at Transifex. Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/TimelineEntry.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/TimelineEntry.vue b/src/components/TimelineEntry.vue
index 5e8782da..4d649770 100644
--- a/src/components/TimelineEntry.vue
+++ b/src/components/TimelineEntry.vue
@@ -126,13 +126,13 @@ export default {
case 'favourite':
return t('social', '{account} like you post', { account: this.notification.account.acct })
case 'poll':
- return t('social', '{account} as ended the poll', { account: this.notification.account.acct })
+ return t('social', '{account} has ended the poll', { account: this.notification.account.acct })
case 'update':
- return t('social', '{account} edit a status', { account: this.notification.account.acct })
+ return t('social', '{account} edited a status', { account: this.notification.account.acct })
case 'admin.sign_up':
return t('social', '{account} signed up', { account: this.notification.account.acct })
case 'admin.report':
- return t('social', '{account} filled a report', { account: this.notification.account.acct })
+ return t('social', '{account} filed a report', { account: this.notification.account.acct })
default:
return ''
}