diff --git a/src/managers/FileManager/FileManager.vue b/src/managers/FileManager/FileManager.vue index 00438bc4b..af56e74db 100644 --- a/src/managers/FileManager/FileManager.vue +++ b/src/managers/FileManager/FileManager.vue @@ -23,7 +23,7 @@ - {{ t('common.id') }} + {{ t('common.numero') }} {{ t('common.fileName') }} {{ t('common.dateUploaded') }} {{ t('common.type') }} diff --git a/src/managers/FileManager/useFileManagerActions.js b/src/managers/FileManager/useFileManagerActions.js index cf31eb9cd..f49649ff4 100644 --- a/src/managers/FileManager/useFileManagerActions.js +++ b/src/managers/FileManager/useFileManagerActions.js @@ -217,13 +217,6 @@ export function useFileManagerActions() { function getItemActions({managerConfig}) { const actions = []; const enabledActions = managerConfig.permittedActions; - if (enabledActions.includes(Actions.FILE_SEE_NOTES)) { - actions.push({ - label: t('grid.action.moreInformation'), - name: Actions.FILE_SEE_NOTES, - icon: 'View', - }); - } if (enabledActions.includes(Actions.FILE_EDIT)) { actions.push({ @@ -233,6 +226,14 @@ export function useFileManagerActions() { }); } + if (enabledActions.includes(Actions.FILE_SEE_NOTES)) { + actions.push({ + label: t('grid.action.moreInformation'), + name: Actions.FILE_SEE_NOTES, + icon: 'View', + }); + } + if (enabledActions.includes(Actions.FILE_DELETE)) { actions.push({ label: t('grid.action.delete'), diff --git a/src/pages/workflow/components/publication/WorkflowChangeSubmissionLanguage.vue b/src/pages/workflow/components/publication/WorkflowChangeSubmissionLanguage.vue index be0ac0a39..1d4285b6d 100644 --- a/src/pages/workflow/components/publication/WorkflowChangeSubmissionLanguage.vue +++ b/src/pages/workflow/components/publication/WorkflowChangeSubmissionLanguage.vue @@ -3,7 +3,7 @@ {{ t('submission.list.changeSubmissionLanguage.currentLanguage') }} - {{ languageLabel }} + {{ languageLabel }} { reviewMenuItems.push( getReviewItem({ @@ -70,7 +77,9 @@ export function getReviewItems({submission, stageId, title}) { reviewRound, isActive: activeStage.id === stageId && activeReviewRound.id === reviewRound.id, - title: title, + title: getWorkflowTitle( + t(TitleKeys[stageId], {round: reviewRound.round}), + ), }), ); }); diff --git a/src/pages/workflow/composables/useWorkflowNavigationConfig/useWorkflowNavigationConfigOMP.js b/src/pages/workflow/composables/useWorkflowNavigationConfig/useWorkflowNavigationConfigOMP.js index 1b1abf587..f4e9e7012 100644 --- a/src/pages/workflow/composables/useWorkflowNavigationConfig/useWorkflowNavigationConfigOMP.js +++ b/src/pages/workflow/composables/useWorkflowNavigationConfig/useWorkflowNavigationConfigOMP.js @@ -42,13 +42,11 @@ export function useWorkflowNavigationConfigOMP(pageInitConfig) { const internalReviewItems = getReviewItems({ submission, stageId: pkp.const.WORKFLOW_STAGE_ID_INTERNAL_REVIEW, - title: t('workflow.review.internalReview'), }); const externalReviewItems = getReviewItems({ submission, stageId: pkp.const.WORKFLOW_STAGE_ID_EXTERNAL_REVIEW, - title: t('workflow.review.externalReview'), }); const items = [];