i18n irc and fix lint from merge conflict
parent
d3934ff7da
commit
b94886a291
|
@ -407,10 +407,10 @@ export default class AppearanceUserSettingsTab extends React.Component<IProps, I
|
||||||
<StyledRadioButton
|
<StyledRadioButton
|
||||||
name="layout"
|
name="layout"
|
||||||
value="irc"
|
value="irc"
|
||||||
checked={this.state.layout == Layout.IRC}
|
checked={this.state.layout === Layout.IRC}
|
||||||
onChange={this.onLayoutChange}
|
onChange={this.onLayoutChange}
|
||||||
>
|
>
|
||||||
{ "IRC" }
|
{ _t("IRC") }
|
||||||
</StyledRadioButton>
|
</StyledRadioButton>
|
||||||
</div>
|
</div>
|
||||||
<div className="mx_AppearanceUserSettingsTab_spacer" />
|
<div className="mx_AppearanceUserSettingsTab_spacer" />
|
||||||
|
@ -431,12 +431,12 @@ export default class AppearanceUserSettingsTab extends React.Component<IProps, I
|
||||||
checked={this.state.layout == Layout.Group}
|
checked={this.state.layout == Layout.Group}
|
||||||
onChange={this.onLayoutChange}
|
onChange={this.onLayoutChange}
|
||||||
>
|
>
|
||||||
{_t("Modern")}
|
{ _t("Modern") }
|
||||||
</StyledRadioButton>
|
</StyledRadioButton>
|
||||||
</div>
|
</div>
|
||||||
<div className="mx_AppearanceUserSettingsTab_spacer" />
|
<div className="mx_AppearanceUserSettingsTab_spacer" />
|
||||||
<div className={classNames("mx_AppearanceUserSettingsTab_Layout_RadioButton", {
|
<div className={classNames("mx_AppearanceUserSettingsTab_Layout_RadioButton", {
|
||||||
mx_AppearanceUserSettingsTab_Layout_RadioButton_selected: this.state.layout == Layout.Bubble,
|
mx_AppearanceUserSettingsTab_Layout_RadioButton_selected: this.state.layout === Layout.Bubble,
|
||||||
})}>
|
})}>
|
||||||
<EventTilePreview
|
<EventTilePreview
|
||||||
className="mx_AppearanceUserSettingsTab_Layout_RadioButton_preview"
|
className="mx_AppearanceUserSettingsTab_Layout_RadioButton_preview"
|
||||||
|
@ -452,7 +452,7 @@ export default class AppearanceUserSettingsTab extends React.Component<IProps, I
|
||||||
checked={this.state.layout == Layout.Bubble}
|
checked={this.state.layout == Layout.Bubble}
|
||||||
onChange={this.onLayoutChange}
|
onChange={this.onLayoutChange}
|
||||||
>
|
>
|
||||||
{_t("Message bubbles")}
|
{ _t("Message bubbles") }
|
||||||
</StyledRadioButton>
|
</StyledRadioButton>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1247,6 +1247,7 @@
|
||||||
"Add theme": "Add theme",
|
"Add theme": "Add theme",
|
||||||
"Theme": "Theme",
|
"Theme": "Theme",
|
||||||
"Message layout": "Message layout",
|
"Message layout": "Message layout",
|
||||||
|
"IRC": "IRC",
|
||||||
"Modern": "Modern",
|
"Modern": "Modern",
|
||||||
"Message bubbles": "Message bubbles",
|
"Message bubbles": "Message bubbles",
|
||||||
"Set the name of a font installed on your system & %(brand)s will attempt to use it.": "Set the name of a font installed on your system & %(brand)s will attempt to use it.",
|
"Set the name of a font installed on your system & %(brand)s will attempt to use it.": "Set the name of a font installed on your system & %(brand)s will attempt to use it.",
|
||||||
|
|
Loading…
Reference in New Issue