Make the toggle button on the memberEventListSummary translatable

This commit is contained in:
Peter Vágner 2017-11-18 17:48:57 +01:00
parent 184b29daf8
commit 093f110199
2 changed files with 3 additions and 1 deletions

View file

@ -478,7 +478,7 @@ module.exports = React.createClass({
}
const toggleButton = (
<div className={"mx_MemberEventListSummary_toggle"} onClick={this._toggleSummary}>
{ expanded ? 'collapse' : 'expand' }
{ expanded ? _t('collapse') : _t('expand') }
</div>
);