]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-settings/my-account-video-settings/my-account-video-settings.component.html
Add i18n attributes
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-settings / my-account-video-settings / my-account-video-settings.component.html
CommitLineData
c30745f3 1<form role="form" (ngSubmit)="updateDetails()" [formGroup]="form">
a0d69908 2 <div class="form-group">
b1d40cff
C
3 <label i18n for="nsfwPolicy">Default policy on videos containing sensitive content</label>
4 <my-help
5 helpType="custom" i18n-customHtml
6 customHtml="With <strong>Do not list</strong> or <strong>Blur thumbnails</strong>, a confirmation will be requested to watch the video."
7 ></my-help>
0883b324
C
8
9 <div class="peertube-select-container">
10 <select id="nsfwPolicy" formControlName="nsfwPolicy">
b1d40cff
C
11 <option i18n value="do_not_list">Do not list</option>
12 <option i18n value="blur">Blur thumbnails</option>
13 <option i18n value="display">Display</option>
0883b324
C
14 </select>
15 </div>
a0d69908
C
16 </div>
17
18 <div class="form-group">
19 <input
20 type="checkbox" id="autoPlayVideo"
21 formControlName="autoPlayVideo"
22 >
23 <label for="autoPlayVideo"></label>
b1d40cff 24 <label i18n for="autoPlayVideo">Automatically plays video</label>
c30745f3
C
25 </div>
26
b1d40cff 27 <input type="submit" i18n-value value="Save" [disabled]="!form.valid">
c30745f3 28</form>