1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-17 17:42:41 +03:00

ManageEventIndex: Clarify that we're currently not downloading any messages.

This commit is contained in:
Damir Jelić
2020-01-27 15:50:14 +01:00
parent 7e0ab2f0a3
commit e38f1191a5
2 changed files with 2 additions and 2 deletions

View File

@@ -108,7 +108,7 @@ export default class ManageEventIndexDialog extends React.Component {
let crawlerState;
if (this.state.currentRoom === null) {
crawlerState = _t("Not downloading messages for any room.");
crawlerState = _t("Not currently downloading messages for any room.");
} else {
crawlerState = (
_t("Downloading mesages for %(currentRoom)s.", { currentRoom: this.state.currentRoom })