rewording download option and reorder options
authorRigel Kent <sendmemail@rigelk.eu>
Wed, 11 Jul 2018 11:27:03 +0000 (13:27 +0200)
committerChocobozzz <me@florianbigard.com>
Wed, 11 Jul 2018 11:59:40 +0000 (13:59 +0200)
".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.

client/src/app/videos/+video-watch/modal/video-download.component.html

index 316bd635cb2055d8c179db6933265bd995b600ee..31b2f42289730257c6a46507633de5ead9429985 100644 (file)
         </div>
 
         <div class="download-type">
-          <div class="peertube-radio-container">
-            <input type="radio" name="download" id="download-torrent" [(ngModel)]="downloadType" value="torrent">
-            <label i18n for="download-torrent">Torrent</label>
-          </div>
-
           <div class="peertube-radio-container">
             <input type="radio" name="download" id="download-direct" [(ngModel)]="downloadType" value="direct">
             <label i18n for="download-direct">Direct download</label>
           </div>
+          
+          <div class="peertube-radio-container">
+            <input type="radio" name="download" id="download-torrent" [(ngModel)]="downloadType" value="torrent">
+            <label i18n for="download-torrent">Torrent (.torrent file)</label>
+          </div>
 
           <div class="peertube-radio-container">
             <input type="radio" name="download" id="download-magnet" [(ngModel)]="downloadType" value="magnet">
-            <label i18n for="download-magnet">Torrent (magnet)</label>
+            <label i18n for="download-magnet">Torrent (magnet link)</label>
           </div>
         </div>