Clearer description of the options
authorFilip Bengtsson <me@autom.zone>
Sat, 1 Feb 2020 00:14:53 +0000 (01:14 +0100)
committerRigel Kent <par@rigelk.eu>
Sun, 2 Feb 2020 11:10:35 +0000 (12:10 +0100)
This is a more clear description of what the options will do.

client/src/app/search/search-filters.component.html

index 07fb2c04877b0359159b387b9a7b4d9f68d874a5..c275285d5494501bfe0ec1466cbb84377753a45d 100644 (file)
         </button>
         <div class="peertube-select-container">
           <select id="category" name="category" [(ngModel)]="advancedSearch.categoryOneOf">
-            <option [value]="undefined" i18n>Any or no category set</option>
+            <option [value]="undefined" i18n>Display all categories</option>
             <option *ngFor="let category of videoCategories" [value]="category.id">{{ category.label }}</option>
           </select>
         </div>
         </button>
         <div class="peertube-select-container">
           <select id="licence" name="licence" [(ngModel)]="advancedSearch.licenceOneOf">
-            <option [value]="undefined" i18n>Any or no license set</option>
+            <option [value]="undefined" i18n>Display all licenses</option>
             <option *ngFor="let licence of videoLicences" [value]="licence.id">{{ licence.label }}</option>
           </select>
         </div>
         </button>
         <div class="peertube-select-container">
           <select id="language" name="language" [(ngModel)]="advancedSearch.languageOneOf">
-            <option [value]="undefined" i18n>Any or no language set</option>
+            <option [value]="undefined" i18n>Display all languages</option>
             <option *ngFor="let language of videoLanguages" [value]="language.id">{{ language.label }}</option>
           </select>
         </div>