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'>
|
<div className='mx_SettingsTab_subsectionText'>
|
||||||
{_t("Space used:")} {formatBytes(this.state.eventIndexSize, 0)}<br />
|
{_t("Space used:")} {formatBytes(this.state.eventIndexSize, 0)}<br />
|
||||||
{_t("Indexed messages:")} {formatCountLong(this.state.eventCount)}<br />
|
{_t("Indexed messages:")} {formatCountLong(this.state.eventCount)}<br />
|
||||||
{_t("Indexed rooms:")} {_t("%(crawlingRooms)s out of %(totalRooms)s", {
|
{_t("Monitoring %(totalRooms)s rooms in total.", {
|
||||||
crawlingRooms: formatCountLong(this.state.crawlingRoomsCount),
|
|
||||||
totalRooms: formatCountLong(this.state.roomCount),
|
totalRooms: formatCountLong(this.state.roomCount),
|
||||||
})} <br />
|
})} <br />
|
||||||
|
{_t("Currently working in %(crawlingRooms)s rooms.", {
|
||||||
|
crawlingRooms: formatCountLong(this.state.crawlingRoomsCount),
|
||||||
|
})} <br />
|
||||||
{crawlerState}<br />
|
{crawlerState}<br />
|
||||||
<Field
|
<Field
|
||||||
id={"crawlerSleepTimeMs"}
|
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:",
|
"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:",
|
"Space used:": "Space used:",
|
||||||
"Indexed messages:": "Indexed messages:",
|
"Indexed messages:": "Indexed messages:",
|
||||||
"Indexed rooms:": "Indexed rooms:",
|
"Monitoring %(totalRooms)s rooms in total.": "Monitoring %(totalRooms)s rooms in total.",
|
||||||
"%(crawlingRooms)s out of %(totalRooms)s": "%(crawlingRooms)s out of %(totalRooms)s",
|
"Currently working in %(crawlingRooms)s rooms.": "Currently working in %(crawlingRooms)s rooms.",
|
||||||
"Message downloading sleep time(ms)": "Message downloading sleep time(ms)",
|
"Message downloading sleep time(ms)": "Message downloading sleep time(ms)",
|
||||||
"Failed to set direct chat tag": "Failed to set direct chat tag",
|
"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",
|
"Failed to remove tag %(tagName)s from room": "Failed to remove tag %(tagName)s from room",
|
||||||
|
|
Loading…
Reference in New Issue