diff options
Diffstat (limited to 'client/src/assets')
-rw-r--r-- | client/src/assets/player/videojs-components/p2p-info-button.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/assets/player/videojs-components/p2p-info-button.ts b/client/src/assets/player/videojs-components/p2p-info-button.ts index b1f7cd751..81f9544f4 100644 --- a/client/src/assets/player/videojs-components/p2p-info-button.ts +++ b/client/src/assets/player/videojs-components/p2p-info-button.ts | |||
@@ -91,8 +91,8 @@ class P2pInfoButton extends Button { | |||
91 | const downloadedFromPeers = bytes(p2pStats.downloaded).join(' ') | 91 | const downloadedFromPeers = bytes(p2pStats.downloaded).join(' ') |
92 | 92 | ||
93 | subDivWebtorrent.title += | 93 | subDivWebtorrent.title += |
94 | '* ' + this.player().localize('From the server: ') + downloadedFromServer + '\n' + | 94 | ' * ' + this.player().localize('From servers: ') + downloadedFromServer + '\n' + |
95 | '* ' + this.player().localize('From peers: ') + downloadedFromPeers + '\n' | 95 | ' * ' + this.player().localize('From peers: ') + downloadedFromPeers + '\n' |
96 | } | 96 | } |
97 | subDivWebtorrent.title += this.player().localize('Total uploaded: ') + totalUploaded.join(' ') | 97 | subDivWebtorrent.title += this.player().localize('Total uploaded: ') + totalUploaded.join(' ') |
98 | 98 | ||