Merge remote-tracking branch 'origin/develop' into next
This commit is contained in:
commit
c8220be1b4
1 changed files with 2 additions and 2 deletions
|
@ -82,7 +82,7 @@ class BirthdayReminders extends ImmutablePureComponent {
|
|||
);
|
||||
|
||||
if (birthdays.size === 1) {
|
||||
return <FormattedMessage id='notification.birthday' defaultMessage='{name} has birthday today' values={{ name: link }} />;
|
||||
return <FormattedMessage id='notification.birthday' defaultMessage='{name} has a birthday today' values={{ name: link }} />;
|
||||
}
|
||||
|
||||
return (
|
||||
|
@ -109,7 +109,7 @@ class BirthdayReminders extends ImmutablePureComponent {
|
|||
const { intl, birthdays, account } = this.props;
|
||||
|
||||
if (birthdays.size === 1) {
|
||||
return intl.formatMessage({ id: 'notification.birthday', defaultMessage: '{name} has birthday today' }, { name: account.get('display_name') });
|
||||
return intl.formatMessage({ id: 'notification.birthday', defaultMessage: '{name} has a birthday today' }, { name: account.get('display_name') });
|
||||
}
|
||||
|
||||
return intl.formatMessage(
|
||||
|
|
Loading…
Reference in a new issue