mirror of https://github.com/vector-im/riot-web
ManageEventIndexDialog: Reword the status for the currently indexing rooms.
parent
191abb5b0d
commit
8fe54e5dca
|
@ -160,10 +160,12 @@ export default class ManageEventIndexDialog extends React.Component {
|
|||
<div className='mx_SettingsTab_subsectionText'>
|
||||
{_t("Space used:")} {formatBytes(this.state.eventIndexSize, 0)}<br />
|
||||
{_t("Indexed messages:")} {formatCountLong(this.state.eventCount)}<br />
|
||||
{_t("Indexed rooms:")} {_t("%(crawlingRooms)s out of %(totalRooms)s", {
|
||||
crawlingRooms: formatCountLong(this.state.crawlingRoomsCount),
|
||||
{_t("Monitoring %(totalRooms)s rooms in total.", {
|
||||
totalRooms: formatCountLong(this.state.roomCount),
|
||||
})} <br />
|
||||
{_t("Currently working in %(crawlingRooms)s rooms.", {
|
||||
crawlingRooms: formatCountLong(this.state.crawlingRoomsCount),
|
||||
})} <br />
|
||||
{crawlerState}<br />
|
||||
<Field
|
||||
id={"crawlerSleepTimeMs"}
|
||||
|
|
|
@ -2135,8 +2135,8 @@
|
|||
"Riot is securely caching encrypted messages locally for them to appear in search results:": "Riot is securely caching encrypted messages locally for them to appear in search results:",
|
||||
"Space used:": "Space used:",
|
||||
"Indexed messages:": "Indexed messages:",
|
||||
"Indexed rooms:": "Indexed rooms:",
|
||||
"%(crawlingRooms)s out of %(totalRooms)s": "%(crawlingRooms)s out of %(totalRooms)s",
|
||||
"Monitoring %(totalRooms)s rooms in total.": "Monitoring %(totalRooms)s rooms in total.",
|
||||
"Currently working in %(crawlingRooms)s rooms.": "Currently working in %(crawlingRooms)s rooms.",
|
||||
"Message downloading sleep time(ms)": "Message downloading sleep time(ms)",
|
||||
"Failed to set direct chat tag": "Failed to set direct chat tag",
|
||||
"Failed to remove tag %(tagName)s from room": "Failed to remove tag %(tagName)s from room",
|
||||
|
|
Loading…
Reference in New Issue