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 })