From ca1f0430a00d1998087b7627cada6a25806391c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jarda=20Kot=C4=9B=C5=A1ovec?= Date: Wed, 27 Nov 2024 10:36:42 +0100 Subject: [PATCH 1/2] pkp/pkp-lib#10618 Update locale keys --- registry/uiLocaleKeysBackend.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/registry/uiLocaleKeysBackend.json b/registry/uiLocaleKeysBackend.json index ae31bb46e5..56a4135f22 100644 --- a/registry/uiLocaleKeysBackend.json +++ b/registry/uiLocaleKeysBackend.json @@ -169,7 +169,10 @@ "doi.manager.versions.view", "editor.activityLog", "editor.review.ReviewerResendRequest", + "editor.review.allSections", + "editor.review.authorOnly", "editor.review.cancelReviewer", + "editor.review.download", "editor.review.emailReviewer", "editor.review.notInitiated", "editor.review.readReview", @@ -339,6 +342,7 @@ "manager.workflow", "monograph.audience", "navigation.backTo", + "notification.notifications", "notification.type.roundStatusTitle", "orcid.field.authorEmailModal.message", "orcid.field.authorEmailModal.title", From ab2f41a7382343f33a1c4f128d33aa3f7ed04085 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jarda=20Kot=C4=9B=C5=A1ovec?= Date: Thu, 28 Nov 2024 13:20:19 +0100 Subject: [PATCH 2/2] pkp/pkp-lib#10598 Expose add internal/external review round decisions for OMP --- classes/submission/maps/Schema.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/classes/submission/maps/Schema.php b/classes/submission/maps/Schema.php index cef488de12..ba7595a231 100644 --- a/classes/submission/maps/Schema.php +++ b/classes/submission/maps/Schema.php @@ -17,6 +17,7 @@ use APP\decision\types\AcceptFromInternal; use APP\decision\types\CancelInternalReviewRound; use APP\decision\types\DeclineInternal; +use APP\decision\types\NewInternalReviewRound; use APP\decision\types\RequestRevisionsInternal; use APP\decision\types\RevertDeclineInternal; use APP\decision\types\SendExternalReview; @@ -35,7 +36,9 @@ use PKP\decision\types\CancelReviewRound; use PKP\decision\types\Decline; use PKP\decision\types\InitialDecline; +use PKP\decision\types\NewExternalReviewRound; use PKP\decision\types\RequestRevisions; +use PKP\decision\types\Resubmit; use PKP\decision\types\RevertDecline; use PKP\decision\types\RevertInitialDecline; use PKP\decision\types\SendToProduction; @@ -179,6 +182,8 @@ protected function getAvailableEditorialDecisions(int $stageId, Submission $subm new RequestRevisionsInternal(), new SendExternalReview(), new AcceptFromInternal(), + new NewInternalReviewRound() + ]; $cancelInternalReviewRound = new CancelInternalReviewRound(); @@ -196,7 +201,10 @@ protected function getAvailableEditorialDecisions(int $stageId, Submission $subm case WORKFLOW_STAGE_ID_EXTERNAL_REVIEW: $decisionTypes = [ new RequestRevisions(), + new Resubmit(), new Accept(), + new NewExternalReviewRound() + ]; $cancelReviewRound = new CancelReviewRound();