Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit f721038

Browse files
committed
Reword group setting delay
1 parent e616dba commit f721038

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

src/components/structures/GroupView.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -752,8 +752,14 @@ export default React.createClass({
752752
const header = this.state.editing ? <h2> { _t('Community Settings') } </h2> : <div />;
753753
const changeDelayWarning = this.state.editing && this.state.isUserPrivileged ?
754754
<div className="mx_GroupView_changeDelayWarning">
755-
{ _t( 'Changes made to your community might not be seen by other users ' +
756-
'for up to 30 minutes.',
755+
{ _t(
756+
'Changes made to your community <bold1>name</bold1> and <bold2>avatar</bold2> ' +
757+
'might not be seen by other users for up to 30 minutes.',
758+
{},
759+
{
760+
'bold1': (sub) => <b> { sub } </b>,
761+
'bold2': (sub) => <b> { sub } </b>,
762+
},
757763
) }
758764
</div> : <div />;
759765
return <div className={groupSettingsSectionClasses}>

src/i18n/strings/en_EN.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,7 @@
766766
"Leave": "Leave",
767767
"Unable to leave community": "Unable to leave community",
768768
"Community Settings": "Community Settings",
769-
"Changes made to your community might not be seen by other users for up to 30 minutes.": "Changes made to your community might not be seen by other users for up to 30 minutes.",
769+
"Changes made to your community <bold1>name</bold1> and <bold2>avatar</bold2> might not be seen by other users for up to 30 minutes.": "Changes made to your community <bold1>name</bold1> and <bold2>avatar</bold2> might not be seen by other users for up to 30 minutes.",
770770
"These rooms are displayed to community members on the community page. Community members can join the rooms by clicking on them.": "These rooms are displayed to community members on the community page. Community members can join the rooms by clicking on them.",
771771
"Add rooms to this community": "Add rooms to this community",
772772
"Featured Rooms:": "Featured Rooms:",

0 commit comments

Comments
 (0)