diff options
-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 | ||