]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/modal/quick-settings-modal.component.html
Translated using Weblate (Persian)
[github/Chocobozzz/PeerTube.git] / client / src / app / modal / quick-settings-modal.component.html
CommitLineData
d3217560
RK
1<ng-template #modal let-hide="close">
2 <div class="modal-header">
dfed7846 3 <h4 i18n class="modal-title">My settings</h4>
54e78847 4 <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hide()"></my-global-icon>
d3217560 5 </div>
5c20a455 6
d3217560 7 <div class="modal-body">
269f789b 8 <div i18n class="alert pt-alert-primary">These settings apply only to your session on this instance.</div>
dfed7846 9
269f789b 10 <h5 i18n class="mt-4 mb-2">Videos</h5>
d3217560 11
67ed6552 12 <my-user-video-settings
5c20a455
C
13 *ngIf="!isUserLoggedIn()"
14 [user]="user" [userInformationLoaded]="userInformationLoaded" [reactiveUpdate]="true" [notifyOnUpdate]="true"
15 >
67ed6552 16 </my-user-video-settings>
d3217560 17
269f789b 18 <h5 i18n class="mt-4 mb-2">Interface</h5>
d3217560 19
67ed6552 20 <my-user-interface-settings
5c20a455
C
21 *ngIf="!isUserLoggedIn()"
22 [user]="user" [userInformationLoaded]="userInformationLoaded" [reactiveUpdate]="true" [notifyOnUpdate]="true"
67ed6552 23 ></my-user-interface-settings>
d3217560
RK
24 </div>
25</ng-template>