Skip to content

Commit 33d056e

Browse files
committed
fix invitation UI issues
1 parent 5351473 commit 33d056e

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

public/globals.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ window.pkp = {
147147
'acceptInvitation.cancelInvite.title': 'Cancel Role Invitation Process?',
148148
'acceptInvitation.modal.button': 'View All Submissions',
149149
'acceptInvitation.modal.message':
150-
'Congratulations on your new role in OJS! You might now have access to new options. If you need assistance navigating the system, please click on the \u201cHelp\u201d buttons throughout the interface for guidance',
150+
'Congratulations on your new role in OJS! You might now have access to new options. If you need any assistance in understanding the system, please click on “Help” button throughout the system for guidance.',
151151
'acceptInvitation.modal.title': "You've been assigned a new role in OJS",
152152
'acceptInvitation.passwordField.description':
153153
'It should be at least 6 characters long and could be a combination of uppercase letters, lowercase letters, numbers and symbols',
@@ -162,6 +162,7 @@ window.pkp = {
162162
'acceptInvitation.usernameField.description':
163163
'It could be a combination of uppercase letters, lowercase letters or numbers',
164164
'acceptInvitation.verifyOrcid': 'Verify ORCID iD',
165+
'acceptInvitation.privacyConsent':'Privacy Consent',
165166
'admin.jobs.failed.action.redispatch': 'Try Again',
166167
'admin.jobs.failed.action.redispatch.all': 'Requeue All Failed Jobs',
167168
'admin.jobs.list.actions': 'Actions',
@@ -905,7 +906,7 @@ window.pkp = {
905906
'userInvitation.edit.title': 'Edit Invitation',
906907
'userInvitation.modal.button': 'View All Users',
907908
'userInvitation.modal.message':
908-
"{$email} has been invited to new role in OJS. You can be updated about the user's decision on the User & Role page, your OJS notification and/or your email.",
909+
"{$email} has been invited to new role in OJS. You can be updated about the user's decision on the Users & Roles page, your OJS notifications and/or your email.",
909910
'userInvitation.modal.title': 'Invitation Sent',
910911
'userInvitation.roleTable.endDate': 'End Date',
911912
'userInvitation.roleTable.journalMasthead': 'Journal Masthead',

src/managers/UserAccessManager/UserAccessManager.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PkpTable class="mt-2">
33
<template #label>
44
<h3 class="text-3xl-bold">
5-
{{ t('grid.user.currentUsers') }}({{
5+
{{ t('grid.user.currentUsers') }} ({{
66
store.userAccessPagination.itemCount
77
}})
88
</h3>

src/managers/UserInvitationManager/UserInvitationManager.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PkpTable>
33
<template #label>
44
<h3 class="text-3xl-bold">
5-
{{ t('invitation.header') }}({{
5+
{{ t('invitation.header') }} ({{
66
store.invitationsPagination.itemCount
77
}})
88
</h3>

src/pages/acceptInvitation/AcceptInvitationUserAccountDetails.vue

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@
3636

3737
<div class="flex">
3838
<FieldOptions
39+
:label="t('acceptInvitation.privacyConsent')"
40+
:is-required="true"
3941
component="field-options"
4042
:value="fields.privacyStatement"
4143
name="privacyStatement"

0 commit comments

Comments
 (0)