[Connect Admin | Trunk]: subscribers.component.ts & subscriber-invite.component.ts & manage-user-notifications.component.html & users-managers.component.ts & users-subscribers.component.ts: Replace "subscriber" wording with "join/member".

This commit is contained in:
Konstantina Galouni 2022-09-27 11:11:25 +03:00
parent 808aad164b
commit 0a9a464bb4
4 changed files with 4 additions and 4 deletions

@ -1 +1 @@
Subproject commit 032b91ae7a78ccad72a3a02a9463f6df5d00d223 Subproject commit ad5cc2ae19188dfbc35f2be0b2d85005c6ff0922

View File

@ -36,7 +36,7 @@
</mat-slide-toggle> </mat-slide-toggle>
</div> </div>
<div class="uk-margin uk-grid" uk-grid> <div class="uk-margin uk-grid" uk-grid>
<div class="uk-width-expand" uk-tooltip="Get e-mail notification when a user subscribes in your community"> <div class="uk-width-expand" uk-tooltip="Get e-mail notification when a user joins your community">
Notify me for new members Notify me for new members
</div> </div>
<mat-slide-toggle [checked]="userNotifications.notifyForNewSubscribers" <mat-slide-toggle [checked]="userNotifications.notifyForNewSubscribers"

View File

@ -47,7 +47,7 @@ export class UsersManagersComponent implements OnInit {
this.title.setTitle(this.community.communityId.toUpperCase() + " | Managers"); this.title.setTitle(this.community.communityId.toUpperCase() + " | Managers");
this.link = this.getURL(this.community.communityId); this.link = this.getURL(this.community.communityId);
this.message = 'A manager has the right to access the administration part of Research Community Dashboard, ' + this.message = 'A manager has the right to access the administration part of Research Community Dashboard, ' +
'where he is able to customize and manage the content, invite other users as managers or to subscribe.'; 'where he is able to customize and manage the content, invite other users as managers or members.';
if(community.status === "hidden") { if(community.status === "hidden") {
this.inviteDisableMessage = "Community's status is Hidden and invitation to manage the Research community dashboard is disabled. Update the community status to enable invitations." this.inviteDisableMessage = "Community's status is Hidden and invitation to manage the Research community dashboard is disabled. Update the community status to enable invitations."
} }

View File

@ -38,7 +38,7 @@ export class UsersSubscribersComponent implements OnInit {
this.community = community; this.community = community;
this.title.setTitle(this.community.shortTitle.toUpperCase() + " | Subscribers"); this.title.setTitle(this.community.shortTitle.toUpperCase() + " | Subscribers");
if(community.status !== "all") { if(community.status !== "all") {
this.inviteDisableMessage = "Community's status is " + (community.status === 'manager'?'Visible to managers':'Hidden') + " and invitation to subscribe to the Research community dashboard is disabled. Update the community status to enable invitations." this.inviteDisableMessage = "Community's status is " + (community.status === 'manager'?'Visible to managers':'Hidden') + " and invitation to join the Research community dashboard is disabled. Update the community status to enable invitations."
} }
this.loading = false; this.loading = false;
} }