]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/users/user-notifications.component.html
Try to improve notification i18n translations
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / users / user-notifications.component.html
CommitLineData
2f1548fd
C
1<div *ngIf="componentPagination.totalItems === 0" class="no-notification" i18n>You don't have notifications.</div>
2
ad453580 3<div class="notifications" myInfiniteScroller [autoInit]="true" (nearOfBottom)="onNearOfBottom()" [dataObservable]="onDataSubject.asObservable()">
457bb213 4 <div *ngFor="let notification of notifications" class="notification" [ngClass]="{ unread: !notification.read }" (click)="markAsRead(notification)">
2f1548fd 5
457bb213 6 <ng-container [ngSwitch]="notification.type">
ee2b7df0 7 <ng-container *ngSwitchCase="UserNotificationType.NEW_VIDEO_FROM_SUBSCRIPTION">
457bb213
C
8 <img alt="" aria-labelledby="avatar" class="avatar" [src]="notification.video.channel.avatarUrl" />
9
ee2b7df0 10 <div class="message" i18n>
5819e694 11 {{ notification.video.channel.displayName }} published a new video: <a (click)="markAsRead(notification)" [routerLink]="notification.videoUrl">{{ notification.video.name }}</a>
457bb213 12 </div>
2f1548fd
C
13 </ng-container>
14
ee2b7df0 15 <ng-container *ngSwitchCase="UserNotificationType.UNBLACKLIST_ON_MY_VIDEO">
457bb213
C
16 <my-global-icon iconName="undo"></my-global-icon>
17
ee2b7df0 18 <div class="message" i18n>
457bb213
C
19 Your video <a (click)="markAsRead(notification)" [routerLink]="notification.videoUrl">{{ notification.video.name }}</a> has been unblacklisted
20 </div>
2f1548fd
C
21 </ng-container>
22
ee2b7df0 23 <ng-container *ngSwitchCase="UserNotificationType.BLACKLIST_ON_MY_VIDEO">
457bb213
C
24 <my-global-icon iconName="no"></my-global-icon>
25
ee2b7df0 26 <div class="message" i18n>
457bb213
C
27 Your video <a (click)="markAsRead(notification)" [routerLink]="notification.videoUrl">{{ notification.videoBlacklist.video.name }}</a> has been blacklisted
28 </div>
2f1548fd
C
29 </ng-container>
30
ee2b7df0 31 <ng-container *ngSwitchCase="UserNotificationType.NEW_VIDEO_ABUSE_FOR_MODERATORS">
457bb213
C
32 <my-global-icon iconName="alert"></my-global-icon>
33
ee2b7df0 34 <div class="message" i18n>
457bb213
C
35 <a (click)="markAsRead(notification)" [routerLink]="notification.videoAbuseUrl">A new video abuse</a> has been created on video <a (click)="markAsRead(notification)" [routerLink]="notification.videoUrl">{{ notification.videoAbuse.video.name }}</a>
36 </div>
2f1548fd
C
37 </ng-container>
38
ee2b7df0 39 <ng-container *ngSwitchCase="UserNotificationType.VIDEO_AUTO_BLACKLIST_FOR_MODERATORS">
7ccddd7b
JM
40 <my-global-icon iconName="no"></my-global-icon>
41
ee2b7df0 42 <div class="message" i18n>
e1b49ee5 43 The recently added video <a (click)="markAsRead(notification)" [routerLink]="notification.videoUrl">{{ notification.videoBlacklist.video.name }}</a> has been <a (click)="markAsRead(notification)" [routerLink]="notification.videoAutoBlacklistUrl">auto-blacklisted</a>
7ccddd7b
JM
44 </div>
45 </ng-container>
46
ee2b7df0 47 <ng-container *ngSwitchCase="UserNotificationType.NEW_COMMENT_ON_MY_VIDEO">
457bb213
C
48 <img alt="" aria-labelledby="avatar" class="avatar" [src]="notification.comment.account.avatarUrl" />
49
ee2b7df0 50 <div class="message" i18n>
0f80cb03 51 <a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">{{ notification.comment.account.displayName }}</a> commented your video <a (click)="markAsRead(notification)" [routerLink]="notification.commentUrl">{{ notification.comment.video.name }}</a>
457bb213 52 </div>
2f1548fd
C
53 </ng-container>
54
ee2b7df0 55 <ng-container *ngSwitchCase="UserNotificationType.MY_VIDEO_PUBLISHED">
457bb213
C
56 <my-global-icon iconName="sparkle"></my-global-icon>
57
ee2b7df0 58 <div class="message" i18n>
457bb213
C
59 Your video <a (click)="markAsRead(notification)" [routerLink]="notification.videoUrl">{{ notification.video.name }}</a> has been published
60 </div>
2f1548fd
C
61 </ng-container>
62
ee2b7df0 63 <ng-container *ngSwitchCase="UserNotificationType.MY_VIDEO_IMPORT_SUCCESS">
457bb213
C
64 <my-global-icon iconName="cloud-download"></my-global-icon>
65
ee2b7df0 66 <div class="message" i18n>
6d28a505 67 <a (click)="markAsRead(notification)" [routerLink]="notification.videoUrl || notification.videoImportUrl">Your video import</a> {{ notification.videoImportIdentifier }} succeeded
457bb213 68 </div>
2f1548fd
C
69 </ng-container>
70
ee2b7df0 71 <ng-container *ngSwitchCase="UserNotificationType.MY_VIDEO_IMPORT_ERROR">
457bb213
C
72 <my-global-icon iconName="cloud-error"></my-global-icon>
73
ee2b7df0 74 <div class="message" i18n>
457bb213
C
75 <a (click)="markAsRead(notification)" [routerLink]="notification.videoImportUrl">Your video import</a> {{ notification.videoImportIdentifier }} failed
76 </div>
2f1548fd
C
77 </ng-container>
78
ee2b7df0 79 <ng-container *ngSwitchCase="UserNotificationType.NEW_USER_REGISTRATION">
457bb213
C
80 <my-global-icon iconName="user-add"></my-global-icon>
81
ee2b7df0 82 <div class="message" i18n>
457bb213
C
83 User <a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">{{ notification.account.name }} registered</a> on your instance
84 </div>
2f1548fd
C
85 </ng-container>
86
ee2b7df0 87 <ng-container *ngSwitchCase="UserNotificationType.NEW_FOLLOW">
457bb213 88 <img alt="" aria-labelledby="avatar" class="avatar" [src]="notification.actorFollow.follower.avatarUrl" />
2f1548fd 89
ee2b7df0 90 <div class="message" i18n>
457bb213
C
91 <a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">{{ notification.actorFollow.follower.displayName }}</a> is following
92
93 <ng-container *ngIf="notification.actorFollow.following.type === 'channel'">your channel {{ notification.actorFollow.following.displayName }}</ng-container>
94 <ng-container *ngIf="notification.actorFollow.following.type === 'account'">your account</ng-container>
95 </div>
2f1548fd
C
96 </ng-container>
97
ee2b7df0 98 <ng-container *ngSwitchCase="UserNotificationType.COMMENT_MENTION">
457bb213
C
99 <img alt="" aria-labelledby="avatar" class="avatar" [src]="notification.comment.account.avatarUrl" />
100
ee2b7df0 101 <div class="message" i18n>
0f80cb03 102 <a (click)="markAsRead(notification)" [routerLink]="notification.accountUrl">{{ notification.comment.account.displayName }}</a> mentioned you on <a (click)="markAsRead(notification)" [routerLink]="notification.commentUrl">video {{ notification.comment.video.name }}</a>
457bb213 103 </div>
2f1548fd 104 </ng-container>
8ce1ba6e 105
ee2b7df0 106 <ng-container *ngSwitchCase="UserNotificationType.NEW_INSTANCE_FOLLOWER">
8ce1ba6e
C
107 <my-global-icon iconName="users"></my-global-icon>
108
ee2b7df0 109 <div class="message" i18n>
ce78f1f6
C
110 Your instance has <a (click)="markAsRead(notification)" [routerLink]="notification.instanceFollowUrl">a new follower</a> ({{ notification.actorFollow?.follower.host }})
111 <ng-container *ngIf="notification.actorFollow?.state === 'pending'"> awaiting your approval</ng-container>
8ce1ba6e
C
112 </div>
113 </ng-container>
e1b49ee5 114
ee2b7df0 115 <ng-container *ngSwitchCase="UserNotificationType.AUTO_INSTANCE_FOLLOWING">
e1b49ee5
C
116 <my-global-icon iconName="users"></my-global-icon>
117
ee2b7df0 118 <div class="message" i18n>
e1b49ee5
C
119 Your instance automatically followed <a (click)="markAsRead(notification)" [routerLink]="notification.instanceFollowUrl">{{ notification.actorFollow.following.host }}</a>
120 </div>
121 </ng-container>
457bb213 122 </ng-container>
2f1548fd 123
457bb213 124 <div class="from-date">{{ notification.createdAt | myFromNow }}</div>
2f1548fd
C
125 </div>
126</div>