summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJérémie Tarot (@silopolis) <silopolis@gmail.com>2023-03-10 17:43:58 +0100
committerJérémie Tarot (@silopolis) <silopolis@gmail.com>2023-03-14 10:37:45 +0100
commit1a5352ea8c732b181924ae79e6040dc51c4c0d33 (patch)
tree809957f14ef28a75cabefb9563dae142342363c2 /src
parent24de2008cb998e14ba3857bd85eee42a1e9ddae0 (diff)
strings(typo,spell): fix a few issues
Fix a few typos and hopefully improve wording and consistency Signed-off-by: Jérémie Tarot (@silopolis) <silopolis@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/TimelineEntry.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/TimelineEntry.vue b/src/components/TimelineEntry.vue
index 12c213e3..9787c3c6 100644
--- a/src/components/TimelineEntry.vue
+++ b/src/components/TimelineEntry.vue
@@ -114,17 +114,17 @@ export default {
case 'mention':
return t('social', '{account} mentioned you', { account: this.notification.account.acct })
case 'status':
- return t('social', '{account} has posted a status', { account: this.notification.account.acct })
+ return t('social', '{account} posted a status', { account: this.notification.account.acct })
case 'reblog':
return t('social', '{account} boosted your post', { account: this.notification.account.acct })
case 'follow':
- return t('social', '{account} started following you', { account: this.notification.account.acct })
+ return t('social', '{account} started to follow you', { account: this.notification.account.acct })
case 'follow_request':
return t('social', '{account} requested to follow you', { account: this.notification.account.acct })
case 'favourite':
- return t('social', '{account} like you post', { account: this.notification.account.acct })
+ return t('social', '{account} liked your post', { account: this.notification.account.acct })
case 'poll':
- return t('social', '{account} has ended the poll', { account: this.notification.account.acct })
+ return t('social', '{account} ended the poll', { account: this.notification.account.acct })
case 'update':
return t('social', '{account} edited a status', { account: this.notification.account.acct })
case 'admin.sign_up':