Merge pull request #1588 from pvagner/develop

Add some missing translatable strings
This commit is contained in:
Luke Barnard 2017-12-07 09:41:39 +00:00 committed by GitHub
commit 4603d593de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 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>
);