diff options
author | Chocobozzz <me@florianbigard.com> | 2020-12-30 14:03:33 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-12-30 14:03:33 +0100 |
commit | dfed7846e2a9fee203e960f78a41e8a66f6103a5 (patch) | |
tree | 551de4300e04e0f78a04a732415d51b7970e35cf /client/src/app | |
parent | 47d8e266f16b91fec7e4a15a8372d50c2909c042 (diff) | |
download | PeerTube-dfed7846e2a9fee203e960f78a41e8a66f6103a5.tar.gz PeerTube-dfed7846e2a9fee203e960f78a41e8a66f6103a5.tar.zst PeerTube-dfed7846e2a9fee203e960f78a41e8a66f6103a5.zip |
Clearer anonymous settings modal title
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/menu/menu.component.html | 2 | ||||
-rw-r--r-- | client/src/app/modal/quick-settings-modal.component.html | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/client/src/app/menu/menu.component.html b/client/src/app/menu/menu.component.html index 5b1c24c7a..2331e20d9 100644 --- a/client/src/app/menu/menu.component.html +++ b/client/src/app/menu/menu.component.html | |||
@@ -153,7 +153,7 @@ | |||
153 | <div class="footer-block"> | 153 | <div class="footer-block"> |
154 | <a *ngIf="!isLoggedIn" (click)="openQuickSettings()"> | 154 | <a *ngIf="!isLoggedIn" (click)="openQuickSettings()"> |
155 | <my-global-icon iconName="cog" aria-hidden="true"></my-global-icon> | 155 | <my-global-icon iconName="cog" aria-hidden="true"></my-global-icon> |
156 | <ng-container i18n>Settings</ng-container> | 156 | <ng-container i18n>My settings</ng-container> |
157 | </a> | 157 | </a> |
158 | 158 | ||
159 | <a routerLink="/about" routerLinkActive="active"> | 159 | <a routerLink="/about" routerLinkActive="active"> |
diff --git a/client/src/app/modal/quick-settings-modal.component.html b/client/src/app/modal/quick-settings-modal.component.html index b95c14309..62013c733 100644 --- a/client/src/app/modal/quick-settings-modal.component.html +++ b/client/src/app/modal/quick-settings-modal.component.html | |||
@@ -1,10 +1,12 @@ | |||
1 | <ng-template #modal let-hide="close"> | 1 | <ng-template #modal let-hide="close"> |
2 | <div class="modal-header"> | 2 | <div class="modal-header"> |
3 | <h4 i18n class="modal-title">Settings</h4> | 3 | <h4 i18n class="modal-title">My settings</h4> |
4 | <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hide()"></my-global-icon> | 4 | <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hide()"></my-global-icon> |
5 | </div> | 5 | </div> |
6 | 6 | ||
7 | <div class="modal-body"> | 7 | <div class="modal-body"> |
8 | <div class="mb-4 font-italic">These settings apply only to your session on this instance.</div> | ||
9 | |||
8 | <div i18n class="mb-4 quick-settings-title">Display settings</div> | 10 | <div i18n class="mb-4 quick-settings-title">Display settings</div> |
9 | 11 | ||
10 | <my-user-video-settings | 12 | <my-user-video-settings |