Migrate more strings to translation keys (#11694)

This commit is contained in:
Michael Telatynski 2023-10-03 19:17:26 +01:00 committed by GitHub
parent 677854d318
commit e1cfde0c6e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
201 changed files with 21074 additions and 18552 deletions

View file

@ -30,19 +30,17 @@ export default class SeshatResetDialog extends React.PureComponent<Props> {
<BaseDialog
hasCancel={true}
onFinished={this.props.onFinished.bind(null, false)}
title={_t("Reset event store?")}
title={_t("seshat|reset_title")}
>
<div>
<p>
{_t("You most likely do not want to reset your event index store")}
{_t("seshat|reset_description")}
<br />
{_t(
"If you do, please note that none of your messages will be deleted, but the search experience might be degraded for a few moments whilst the index is recreated",
)}
{_t("seshat|reset_explainer")}
</p>
</div>
<DialogButtons
primaryButton={_t("Reset event store")}
primaryButton={_t("seshat|reset_button")}
onPrimaryButtonClick={this.props.onFinished.bind(null, true)}
primaryButtonClass="danger"
cancelButton={_t("action|cancel")}