]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/videos/+video-edit/shared/video-edit.component.html
Translate tab heads
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / shared / video-edit.component.html
index 6d0a1600a6d98e2d03d905cbddd2d2a0b95202a9..c8cd0d679c05a1f70f671a2ae43a812779703510 100644 (file)
@@ -1,10 +1,10 @@
 <div class="video-edit row" [formGroup]="form">
   <tabset class="root-tabset bootstrap">
 
-    <tab heading="Basic info">
+    <tab i18n-heading heading="Basic info">
       <div class="col-md-8">
         <div class="form-group">
-          <label for="name">Title</label>
+          <label i18n for="name">Title</label>
           <input type="text" id="name" formControlName="name" />
           <div *ngIf="formErrors.name" class="form-error">
             {{ formErrors.name }}
         </div>
 
         <div class="form-group">
-          <label class="label-tags">Tags</label> <span>(press Enter to add)</span>
+          <label i18n class="label-tags">Tags</label> <span i18n>(press Enter to add)</span>
           <tag-input
-            [ngModel]="tags" [validators]="tagValidators" [errorMessages]="tagValidatorsMessages"
+            [validators]="tagValidators" [errorMessages]="tagValidatorsMessages"
             formControlName="tags" maxItems="5" modelAsStrings="true"
           ></tag-input>
         </div>
 
         <div class="form-group">
-          <label for="description">Description</label>
-          <my-help helpType="markdownText" preHtml="Video descriptions are truncated by default and require manual action to expand them."></my-help>
+          <label i18n for="description">Description</label>
+          <my-help helpType="markdownText" i18n-preHtml preHtml="Video descriptions are truncated by default and require manual action to expand them."></my-help>
           <my-markdown-textarea truncate="250" formControlName="description"></my-markdown-textarea>
 
           <div *ngIf="formErrors.description" class="form-error">
@@ -32,8 +32,8 @@
 
       <div class="col-md-4">
         <div class="form-group">
-          <label>Channel</label>
-          <div class="peertube-select-disabled-container">
+          <label i18n>Channel</label>
+          <div class="peertube-select-container">
             <select formControlName="channelId">
               <option *ngFor="let channel of userVideoChannels" [value]="channel.id">{{ channel.label }}</option>
             </select>
@@ -41,7 +41,7 @@
         </div>
 
         <div class="form-group">
-          <label for="category">Category</label>
+          <label i18n for="category">Category</label>
           <div class="peertube-select-container">
             <select id="category" formControlName="category">
               <option></option>
@@ -55,7 +55,7 @@
         </div>
 
         <div class="form-group">
-          <label for="licence">Licence</label>
+          <label i18n for="licence">Licence</label>
           <div class="peertube-select-container">
             <select id="licence" formControlName="licence">
               <option></option>
@@ -69,7 +69,7 @@
         </div>
 
         <div class="form-group">
-          <label for="language">Language</label>
+          <label i18n for="language">Language</label>
           <div class="peertube-select-container">
             <select id="language" formControlName="language">
               <option></option>
@@ -83,7 +83,7 @@
         </div>
 
         <div class="form-group">
-          <label for="privacy">Privacy</label>
+          <label i18n for="privacy">Privacy</label>
           <div class="peertube-select-container">
             <select id="privacy" formControlName="privacy">
               <option></option>
         <div class="form-group form-group-checkbox">
           <input type="checkbox" id="nsfw" formControlName="nsfw" />
           <label for="nsfw"></label>
-          <label for="nsfw">This video contains mature or explicit content</label>
+          <label i18n for="nsfw">This video contains mature or explicit content</label>
+          <my-help tooltipPlacement="top" helpType="custom" i18n-customHtml customHtml="Some instances do not list NSFW videos by default."></my-help>
         </div>
 
         <div class="form-group form-group-checkbox">
           <input type="checkbox" id="commentsEnabled" formControlName="commentsEnabled" />
           <label for="commentsEnabled"></label>
-          <label for="commentsEnabled">Enable video comments</label>
+          <label i18n for="commentsEnabled">Enable video comments</label>
         </div>
 
       </div>
     </tab>
 
-    <tab heading="Advanced settings">
+    <tab i18n-heading heading="Advanced settings">
       <div class="col-md-12 advanced-settings">
         <div class="form-group">
           <my-video-image
-            inputLabel="Upload thumbnail" inputName="thumbnailfile" formControlName="thumbnailfile"
+            i18n-inputLabel inputLabel="Upload thumbnail" inputName="thumbnailfile" formControlName="thumbnailfile"
             previewWidth="200px" previewHeight="110px"
           ></my-video-image>
         </div>
 
         <div class="form-group">
           <my-video-image
-            inputLabel="Upload preview" inputName="previewfile" formControlName="previewfile"
+            i18n-inputLabel inputLabel="Upload preview" inputName="previewfile" formControlName="previewfile"
             previewWidth="360px" previewHeight="200px"
           ></my-video-image>
         </div>
 
         <div class="form-group">
-          <label for="support">Support</label>
-          <my-help helpType="markdownEnhanced" preHtml="Short text to tell people how they can support you (membership platform...)."></my-help>
+          <label i18n for="support">Support</label>
+          <my-help helpType="markdownEnhanced" i18n-preHtml preHtml="Short text to tell people how they can support you (membership platform...)."></my-help>
           <my-markdown-textarea
-              id="support" formControlName="support" textareaWidth="500px" [previewColumn]="true" markdownType="enhanced"
-              [classes]="{ 'input-error': formErrors['support'] }"
+            id="support" formControlName="support" textareaWidth="500px" [previewColumn]="true" markdownType="enhanced"
+            [classes]="{ 'input-error': formErrors['support'] }"
           ></my-markdown-textarea>
           <div *ngIf="formErrors.support" class="form-error">
             {{ formErrors.support }}