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:
anonym 2020-11-30 21:33:52 +01:00 committed by GitHub
parent 9f42d3e549
commit b1b0e93d5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -394,7 +394,7 @@ export default class AppearanceUserSettingsTab extends React.Component<IProps, I
className="mx_AppearanceUserSettingsTab_AdvancedToggle"
onClick={() => this.setState({showAdvanced: !this.state.showAdvanced})}
>
{this.state.showAdvanced ? "Hide advanced" : "Show advanced"}
{this.state.showAdvanced ? _t("Hide advanced") : _t("Show advanced")}
</div>;
let advanced: React.ReactNode;