Merge pull request #1646 from nextcloud/rakekniven-patch-1

fix(l10n): Fixed grammar
pull/1647/head
Louis 2023-03-13 09:34:13 +01:00 zatwierdzone przez GitHub
commit d79bf8c727
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

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