diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2018-07-11 13:27:03 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-07-11 13:59:40 +0200 |
commit | 1062bc0bb009c2c4c1d3482d24586206dc9e8adb (patch) | |
tree | 958144826d915613de2094e6013247ac71b20768 /client | |
parent | bc9dfdc04a9d25157e17f3c1aff1e241ccd89f2b (diff) | |
download | PeerTube-1062bc0bb009c2c4c1d3482d24586206dc9e8adb.tar.gz PeerTube-1062bc0bb009c2c4c1d3482d24586206dc9e8adb.tar.zst PeerTube-1062bc0bb009c2c4c1d3482d24586206dc9e8adb.zip |
rewording download option and reorder options
".torrent" is a common name for users familiar with BitTorrent, and less impressive than "metainfo" or no information as opposed to the magnet option, less commonly known but rather just clicked on most sites.
Diffstat (limited to 'client')
-rw-r--r-- | client/src/app/videos/+video-watch/modal/video-download.component.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/client/src/app/videos/+video-watch/modal/video-download.component.html b/client/src/app/videos/+video-watch/modal/video-download.component.html index 316bd635c..31b2f4228 100644 --- a/client/src/app/videos/+video-watch/modal/video-download.component.html +++ b/client/src/app/videos/+video-watch/modal/video-download.component.html | |||
@@ -16,18 +16,18 @@ | |||
16 | 16 | ||
17 | <div class="download-type"> | 17 | <div class="download-type"> |
18 | <div class="peertube-radio-container"> | 18 | <div class="peertube-radio-container"> |
19 | <input type="radio" name="download" id="download-torrent" [(ngModel)]="downloadType" value="torrent"> | ||
20 | <label i18n for="download-torrent">Torrent</label> | ||
21 | </div> | ||
22 | |||
23 | <div class="peertube-radio-container"> | ||
24 | <input type="radio" name="download" id="download-direct" [(ngModel)]="downloadType" value="direct"> | 19 | <input type="radio" name="download" id="download-direct" [(ngModel)]="downloadType" value="direct"> |
25 | <label i18n for="download-direct">Direct download</label> | 20 | <label i18n for="download-direct">Direct download</label> |
26 | </div> | 21 | </div> |
22 | |||
23 | <div class="peertube-radio-container"> | ||
24 | <input type="radio" name="download" id="download-torrent" [(ngModel)]="downloadType" value="torrent"> | ||
25 | <label i18n for="download-torrent">Torrent (.torrent file)</label> | ||
26 | </div> | ||
27 | 27 | ||
28 | <div class="peertube-radio-container"> | 28 | <div class="peertube-radio-container"> |
29 | <input type="radio" name="download" id="download-magnet" [(ngModel)]="downloadType" value="magnet"> | 29 | <input type="radio" name="download" id="download-magnet" [(ngModel)]="downloadType" value="magnet"> |
30 | <label i18n for="download-magnet">Torrent (magnet)</label> | 30 | <label i18n for="download-magnet">Torrent (magnet link)</label> |
31 | </div> | 31 | </div> |
32 | </div> | 32 | </div> |
33 | 33 | ||