From bff3f3e6322aad77478bc7a7a0c27d03163a41e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Fri, 6 Mar 2020 15:34:19 +0100 Subject: [PATCH] Revert "ManageEventIndexDialog: Reword the status for the currently indexing rooms." This reverts commit 7d6569a0b87c48733dbddec3c2662325977d0234. --- .../views/dialogs/eventindex/ManageEventIndexDialog.js | 6 ++---- src/i18n/strings/en_EN.json | 4 ++-- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/async-components/views/dialogs/eventindex/ManageEventIndexDialog.js b/src/async-components/views/dialogs/eventindex/ManageEventIndexDialog.js index 9f00136b89..f3ea3beb1c 100644 --- a/src/async-components/views/dialogs/eventindex/ManageEventIndexDialog.js +++ b/src/async-components/views/dialogs/eventindex/ManageEventIndexDialog.js @@ -160,11 +160,9 @@ export default class ManageEventIndexDialog extends React.Component {
{_t("Space used:")} {formatBytes(this.state.eventIndexSize, 0)}
{_t("Indexed messages:")} {formatCountLong(this.state.eventCount)}
- {_t("Monitoring %(totalRooms)s rooms in total.", { - totalRooms: formatCountLong(this.state.roomCount), - })}
- {_t("Currently working in %(crawlingRooms)s rooms.", { + {_t("Indexed rooms:")} {_t("%(crawlingRooms)s out of %(totalRooms)s", { crawlingRooms: formatCountLong(this.state.crawlingRoomsCount), + totalRooms: formatCountLong(this.state.roomCount), })}
{crawlerState}