Update i18n for Appearance User Settings
The variable has to be added to the i18n files as well (I don't know how to do that)
This commit is contained in:
parent
9f42d3e549
commit
b1b0e93d5e
1 changed files with 1 additions and 1 deletions
|
@ -394,7 +394,7 @@ export default class AppearanceUserSettingsTab extends React.Component<IProps, I
|
||||||
className="mx_AppearanceUserSettingsTab_AdvancedToggle"
|
className="mx_AppearanceUserSettingsTab_AdvancedToggle"
|
||||||
onClick={() => this.setState({showAdvanced: !this.state.showAdvanced})}
|
onClick={() => this.setState({showAdvanced: !this.state.showAdvanced})}
|
||||||
>
|
>
|
||||||
{this.state.showAdvanced ? "Hide advanced" : "Show advanced"}
|
{this.state.showAdvanced ? _t("Hide advanced") : _t("Show advanced")}
|
||||||
</div>;
|
</div>;
|
||||||
|
|
||||||
let advanced: React.ReactNode;
|
let advanced: React.ReactNode;
|
||||||
|
|
Loading…
Reference in a new issue