use "downloading" instead of "fetching"

https://t.me/plebchanreact/9445
This commit is contained in:
Tom (plebeius.eth)
2025-02-24 16:18:31 +01:00
parent 2df9a964e6
commit 2ebf3bd2c2
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ const useFeedStateString = (subplebbitAddresses?: string[]): string | undefined
states['fetching-ipfs']?.clientUrls.forEach((clientUrl) => clientHosts.add(getClientHost(clientUrl)));
if (clientHosts.size) {
stateString += 'loading ';
stateString += 'downloading ';
if (states['fetching-ipns']) {
stateString += `${states['fetching-ipns'].subplebbitAddresses.length} boards`;
}
+2 -2
View File
@@ -63,9 +63,9 @@ const useStateString = (commentOrSubplebbit: CommentOrSubplebbit): string | unde
.replaceAll('-', ' ')
.replace('ipfs', 'post')
.replace('ipns', 'subplebbit')
.replace('fetching', 'loading')
.replace('fetching', 'downloading')
.replace('subplebbit subplebbit', 'board')
.replace('loading subplebbit', 'loading board');
.replace('downloading subplebbit', 'downloading board');
}
}