Merge pull request #1641 from silopolis/stringfix

strings(typo): fix a couple of issues
pull/1622/head
Louis 2023-03-14 12:14:52 +01:00 zatwierdzone przez GitHub
commit cff04e307d
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 5 dodań i 4 usunięć

1
.gitignore vendored
Wyświetl plik

@ -9,3 +9,4 @@ cypress/screenshots
cypress/snapshots
.php-cs-fixer.cache
.vscode/settings.json

Wyświetl plik

@ -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':