diff options
Diffstat (limited to 'client/src/app/videos/+video-edit/video-add.component.html')
-rw-r--r-- | client/src/app/videos/+video-edit/video-add.component.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/client/src/app/videos/+video-edit/video-add.component.html b/client/src/app/videos/+video-edit/video-add.component.html index 440556562..f00cfe016 100644 --- a/client/src/app/videos/+video-edit/video-add.component.html +++ b/client/src/app/videos/+video-edit/video-add.component.html | |||
@@ -1,7 +1,7 @@ | |||
1 | <div class="margin-content"> | 1 | <div class="margin-content"> |
2 | <div class="title-page title-page-single"> | 2 | <div class="title-page title-page-single"> |
3 | <ng-template [ngIf]="!videoFileName">Upload your video</ng-template> | 3 | <ng-container *ngIf="!videoFileName" i18n>Upload your video</ng-container> |
4 | <ng-template [ngIf]="videoFileName">Upload {{ videoFileName }}</ng-template> | 4 | <ng-container *ngIf="videoFileName" i18n>Upload {{ videoFileName }}</ng-container> |
5 | </div> | 5 | </div> |
6 | 6 | ||
7 | <div *ngIf="!isUploadingVideo" class="upload-video-container"> | 7 | <div *ngIf="!isUploadingVideo" class="upload-video-container"> |
@@ -9,12 +9,12 @@ | |||
9 | <div class="icon icon-upload"></div> | 9 | <div class="icon icon-upload"></div> |
10 | 10 | ||
11 | <div class="button-file"> | 11 | <div class="button-file"> |
12 | <span>Select the file to upload</span> | 12 | <span i18n>Select the file to upload</span> |
13 | <input #videofileInput type="file" name="videofile" id="videofile" [accept]="videoExtensions" (change)="fileChange()" /> | 13 | <input #videofileInput type="file" name="videofile" id="videofile" [accept]="videoExtensions" (change)="fileChange()" /> |
14 | </div> | 14 | </div> |
15 | 15 | ||
16 | <div class="form-group form-group-channel"> | 16 | <div class="form-group form-group-channel"> |
17 | <label for="first-step-channel">Channel</label> | 17 | <label i18n for="first-step-channel">Channel</label> |
18 | <div class="peertube-select-container"> | 18 | <div class="peertube-select-container"> |
19 | <select id="first-step-channel" [(ngModel)]="firstStepChannelId"> | 19 | <select id="first-step-channel" [(ngModel)]="firstStepChannelId"> |
20 | <option *ngFor="let channel of userVideoChannels" [value]="channel.id">{{ channel.label }}</option> | 20 | <option *ngFor="let channel of userVideoChannels" [value]="channel.id">{{ channel.label }}</option> |
@@ -23,7 +23,7 @@ | |||
23 | </div> | 23 | </div> |
24 | 24 | ||
25 | <div class="form-group"> | 25 | <div class="form-group"> |
26 | <label for="first-step-privacy">Privacy</label> | 26 | <label i18n for="first-step-privacy">Privacy</label> |
27 | <div class="peertube-select-container"> | 27 | <div class="peertube-select-container"> |
28 | <select id="first-step-privacy" [(ngModel)]="firstStepPrivacyId"> | 28 | <select id="first-step-privacy" [(ngModel)]="firstStepPrivacyId"> |
29 | <option *ngFor="let privacy of videoPrivacies" [value]="privacy.id">{{ privacy.label }}</option> | 29 | <option *ngFor="let privacy of videoPrivacies" [value]="privacy.id">{{ privacy.label }}</option> |
@@ -49,14 +49,14 @@ | |||
49 | ></my-video-edit> | 49 | ></my-video-edit> |
50 | 50 | ||
51 | <div class="submit-container"> | 51 | <div class="submit-container"> |
52 | <div *ngIf="videoUploaded === false" class="message-submit">Publish will be available when upload is finished</div> | 52 | <div i18n *ngIf="videoUploaded === false" class="message-submit">Publish will be available when upload is finished</div> |
53 | 53 | ||
54 | <div class="submit-button" | 54 | <div class="submit-button" |
55 | (click)="updateSecondStep()" | 55 | (click)="updateSecondStep()" |
56 | [ngClass]="{ disabled: !form.valid || isUpdatingVideo === true || videoUploaded !== true }" | 56 | [ngClass]="{ disabled: !form.valid || isUpdatingVideo === true || videoUploaded !== true }" |
57 | > | 57 | > |
58 | <span class="icon icon-validate"></span> | 58 | <span class="icon icon-validate"></span> |
59 | <input type="button" value="Publish" /> | 59 | <input type="button" i18n-value value="Publish" /> |
60 | </div> | 60 | </div> |
61 | </div> | 61 | </div> |
62 | </form> | 62 | </form> |