From 847481864f5aa1ff97de5df5ff5e6151d4552109 Mon Sep 17 00:00:00 2001 From: Touhidur Rahman Date: Wed, 6 Nov 2024 17:04:56 +0600 Subject: [PATCH 01/12] pkp/pkp-lib#1660 Customizable Reviewer Recommendations --- api/v1/contexts/index.php | 8 ++++ .../ReviewerRecommendationsMigration.php | 28 ++++++++++++++ .../v3_6_0/I1660_ReviewerRecommendations.php | 37 +++++++++++++++++++ pages/management/SettingsHandler.php | 33 +++++++++++++++++ 4 files changed, 106 insertions(+) create mode 100644 classes/migration/install/ReviewerRecommendationsMigration.php create mode 100644 classes/migration/upgrade/v3_6_0/I1660_ReviewerRecommendations.php diff --git a/api/v1/contexts/index.php b/api/v1/contexts/index.php index 59a41fb2796..cdd46f71f7e 100644 --- a/api/v1/contexts/index.php +++ b/api/v1/contexts/index.php @@ -15,4 +15,12 @@ * @brief Handle API requests for contexts (journals/presses). */ +$urlParts = explode('/', trim($_SERVER['PATH_INFO'], '/')); + +if (in_array('recommendations', $urlParts)) { + return new \PKP\handler\APIHandler( + new \PKP\API\v1\reviewers\recommendations\ReviewerRecommendationController() + ); +} + return new \PKP\handler\APIHandler(new \PKP\API\v1\contexts\PKPContextController()); diff --git a/classes/migration/install/ReviewerRecommendationsMigration.php b/classes/migration/install/ReviewerRecommendationsMigration.php new file mode 100644 index 00000000000..ddc9db0ced9 --- /dev/null +++ b/classes/migration/install/ReviewerRecommendationsMigration.php @@ -0,0 +1,28 @@ +_installer, $this->_attributes))->up(); + } + + /** + * Reverse the migration + */ + public function down(): void + { + (new ReviewerRecommendationsMigration($this->_installer, $this->_attributes))->down(); + } +} diff --git a/pages/management/SettingsHandler.php b/pages/management/SettingsHandler.php index 7e2308d24ea..5abe4815de1 100644 --- a/pages/management/SettingsHandler.php +++ b/pages/management/SettingsHandler.php @@ -19,6 +19,7 @@ use APP\components\forms\context\AccessForm; use APP\components\forms\context\ArchivingLockssForm; use APP\template\TemplateManager; +use PKP\API\v1\reviewers\recommendations\resources\ReviewerRecommendationResource; use PKP\components\forms\context\PKPContextStatisticsForm; use PKP\components\forms\context\PKPDisableSubmissionsForm; use PKP\components\forms\context\PKPDoiRegistrationSettingsForm; @@ -29,11 +30,14 @@ use PKP\components\forms\context\PKPReviewGuidanceForm; use PKP\components\forms\context\PKPReviewSetupForm; use PKP\components\forms\context\PKPSearchIndexingForm; +use PKP\components\listPanels\ReviewerRecommendationsListPanel; use PKP\core\PKPApplication; +use PKP\core\PKPRequest; use PKP\pages\management\ManagementHandler; use PKP\plugins\Hook; use PKP\plugins\PluginRegistry; use PKP\security\Role; +use PKP\submission\reviewer\recommendation\ReviewerRecommendation; class SettingsHandler extends ManagementHandler { @@ -77,6 +81,35 @@ public function workflow($args, $request) $templateMgr->display('management/workflow.tpl'); } + /** + * Add support for review related forms in workflow. + */ + protected function addReviewFormWorkflowSupport(PKPRequest $request): void + { + parent::addReviewFormWorkflowSupport($request); + + $templateManager = TemplateManager::getManager($request); + $components = $templateManager->getState('components'); + + $context = $request->getContext(); + $recommendations = ReviewerRecommendation::withContextId($context->getId())->get(); + + $reviewerRecommendationsListPanel = new ReviewerRecommendationsListPanel( + __('manager.reviewerRecommendations'), + $context, + $this->getSupportedFormLocales($context), + array_values( + ReviewerRecommendationResource::collection($recommendations) + ->toArray(app()->get('request')) + ), + ReviewerRecommendation::withContextId($context->getId())->count() + ); + + $components[$reviewerRecommendationsListPanel->id] = $reviewerRecommendationsListPanel->getConfig(); + $templateManager->setState(['components' => $components]); + $templateManager->assign('hasCustomizableRecommendation', true); + } + /** * Add the archive and payments tabs to the distribution settings page * From cb68068536d8f1acd8d1c8950d4ad4635e92db47 Mon Sep 17 00:00:00 2001 From: Touhidur Rahman Date: Wed, 6 Nov 2024 17:05:20 +0600 Subject: [PATCH 02/12] pkp/pkp-lib#1660 Submodule Update ##touhidurabir/i1660_main## --- lib/pkp | 2 +- lib/ui-library | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pkp b/lib/pkp index 696128d394a..3771c1aa94b 160000 --- a/lib/pkp +++ b/lib/pkp @@ -1 +1 @@ -Subproject commit 696128d394a4c710d12722535a5368b5b0c6bc0a +Subproject commit 3771c1aa94bfd16cbb394ffbee7affae1ab70cac diff --git a/lib/ui-library b/lib/ui-library index d660fa804a4..fe6774b68d7 160000 --- a/lib/ui-library +++ b/lib/ui-library @@ -1 +1 @@ -Subproject commit d660fa804a44a1f40cce61ae47529f91ccd539bf +Subproject commit fe6774b68d7af24e2ccca7b76540936b1690db02 From 499b0334af005ff887060bb16c828f462b21fec4 Mon Sep 17 00:00:00 2001 From: Touhidur Rahman Date: Mon, 11 Nov 2024 23:40:55 +0600 Subject: [PATCH 03/12] pkp/pkp-lib#1660 migration to import existing recommendations --- .../ReviewerRecommendationsMigration.php | 5 ++++ .../v3_6_0/I1660_ReviewerRecommendations.php | 29 +++++++++++++------ .../review/reviewerRecommendations.tpl | 20 ++++++++++--- 3 files changed, 41 insertions(+), 13 deletions(-) diff --git a/classes/migration/install/ReviewerRecommendationsMigration.php b/classes/migration/install/ReviewerRecommendationsMigration.php index ddc9db0ced9..62288ab41db 100644 --- a/classes/migration/install/ReviewerRecommendationsMigration.php +++ b/classes/migration/install/ReviewerRecommendationsMigration.php @@ -21,6 +21,11 @@ public function contextTable(): string return 'journals'; } + public function settingTable(): string + { + return 'journal_settings'; + } + public function contextPrimaryKey(): string { return 'journal_id'; diff --git a/classes/migration/upgrade/v3_6_0/I1660_ReviewerRecommendations.php b/classes/migration/upgrade/v3_6_0/I1660_ReviewerRecommendations.php index 15ac978abea..3a03a21d086 100644 --- a/classes/migration/upgrade/v3_6_0/I1660_ReviewerRecommendations.php +++ b/classes/migration/upgrade/v3_6_0/I1660_ReviewerRecommendations.php @@ -15,23 +15,34 @@ namespace APP\migration\upgrade\v3_6_0; -use APP\migration\install\ReviewerRecommendationsMigration; - -class I1660_ReviewerRecommendations extends \PKP\migration\Migration +class I1660_ReviewerRecommendations extends \PKP\migration\upgrade\v3_6_0\I1660_ReviewerRecommendations { + public const SUBMISSION_REVIEWER_RECOMMENDATION_ACCEPT = 1; + public const SUBMISSION_REVIEWER_RECOMMENDATION_PENDING_REVISIONS = 2; + public const SUBMISSION_REVIEWER_RECOMMENDATION_RESUBMIT_HERE = 3; + public const SUBMISSION_REVIEWER_RECOMMENDATION_RESUBMIT_ELSEWHERE = 4; + public const SUBMISSION_REVIEWER_RECOMMENDATION_DECLINE = 5; + public const SUBMISSION_REVIEWER_RECOMMENDATION_SEE_COMMENTS = 6; + /** * Run the migration. */ public function up(): void { - (new ReviewerRecommendationsMigration($this->_installer, $this->_attributes))->up(); + parent::up(); + + $this->seedNonRemovableRecommendations(); } - /** - * Reverse the migration - */ - public function down(): void + protected function systemDefineNonRemovableRecommendations(): array { - (new ReviewerRecommendationsMigration($this->_installer, $this->_attributes))->down(); + return [ + static::SUBMISSION_REVIEWER_RECOMMENDATION_ACCEPT => 'reviewer.article.decision.accept', + static::SUBMISSION_REVIEWER_RECOMMENDATION_PENDING_REVISIONS => 'reviewer.article.decision.pendingRevisions', + static::SUBMISSION_REVIEWER_RECOMMENDATION_RESUBMIT_HERE => 'reviewer.article.decision.resubmitHere', + static::SUBMISSION_REVIEWER_RECOMMENDATION_RESUBMIT_ELSEWHERE => 'reviewer.article.decision.resubmitElsewhere', + static::SUBMISSION_REVIEWER_RECOMMENDATION_DECLINE => 'reviewer.article.decision.decline', + static::SUBMISSION_REVIEWER_RECOMMENDATION_SEE_COMMENTS => 'reviewer.article.decision.seeComments', + ]; } } diff --git a/templates/reviewer/review/reviewerRecommendations.tpl b/templates/reviewer/review/reviewerRecommendations.tpl index aeff37ed12e..7ae44298a13 100644 --- a/templates/reviewer/review/reviewerRecommendations.tpl +++ b/templates/reviewer/review/reviewerRecommendations.tpl @@ -1,13 +1,25 @@ {** * templates/reviewer/review/reviewerRecommendations.tpl * - * Copyright (c) 2014-2021 Simon Fraser University - * Copyright (c) 2003-2021 John Willinsky + * Copyright (c) 2014-2024 Simon Fraser University + * Copyright (c) 2003-2024 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * Include reviewer recommendations for OJS review assignment responses. *} -{fbvFormSection label="reviewer.article.recommendation" description=$description|default:"reviewer.article.selectRecommendation"} - {fbvElement type="select" id="recommendation" from=$reviewerRecommendationOptions selected=$reviewAssignment->getRecommendation() size=$fbvStyles.size.MEDIUM required=$required|default:true disabled=$readOnly} +{fbvFormSection + label="reviewer.article.recommendation" + description=$description|default:"reviewer.article.selectRecommendation" +} + {fbvElement + type="select" + id="recommendation" + from=$reviewerRecommendationOptions + selected=$reviewAssignment->getRecommendation() + size=$fbvStyles.size.MEDIUM + required=$required|default:true + disabled=$readOnly + translate=false + } {/fbvFormSection} From 2efac70d6fbe32062248e44c552a7e9a4e1d7ac7 Mon Sep 17 00:00:00 2001 From: Touhidur Rahman Date: Mon, 11 Nov 2024 23:41:48 +0600 Subject: [PATCH 04/12] pkp/pkp-lib#1660 updated registry ui locale keys --- registry/uiLocaleKeysBackend.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/registry/uiLocaleKeysBackend.json b/registry/uiLocaleKeysBackend.json index 7d7a74391c0..5a093ef04f3 100644 --- a/registry/uiLocaleKeysBackend.json +++ b/registry/uiLocaleKeysBackend.json @@ -24,6 +24,7 @@ "article.metadata", "author.users.contributor.principalContact", "author.users.contributor.setPrincipalContact", + "common.active", "common.addCCBCC", "common.assign", "common.attachFiles", @@ -54,6 +55,8 @@ "common.filtersClear", "common.findTemplate", "common.geographic", + "common.id", + "common.inactive", "common.insert", "common.insertContent", "common.insertContentSearch", From 4a1b262fe9b5a7d6c65cdd0772674c19270aebbb Mon Sep 17 00:00:00 2001 From: Touhidur Rahman Date: Tue, 19 Nov 2024 13:42:15 +0600 Subject: [PATCH 05/12] pkp/pkp-lib#1660 added temp upgrade migration --- .../upgrade/v3_6_0/I1660_ReviewerRecommendations.php | 10 ---------- dbscripts/xml/install.xml | 1 + dbscripts/xml/upgrade.xml | 1 + 3 files changed, 2 insertions(+), 10 deletions(-) diff --git a/classes/migration/upgrade/v3_6_0/I1660_ReviewerRecommendations.php b/classes/migration/upgrade/v3_6_0/I1660_ReviewerRecommendations.php index 3a03a21d086..0d487dd68ad 100644 --- a/classes/migration/upgrade/v3_6_0/I1660_ReviewerRecommendations.php +++ b/classes/migration/upgrade/v3_6_0/I1660_ReviewerRecommendations.php @@ -24,16 +24,6 @@ class I1660_ReviewerRecommendations extends \PKP\migration\upgrade\v3_6_0\I1660_ public const SUBMISSION_REVIEWER_RECOMMENDATION_DECLINE = 5; public const SUBMISSION_REVIEWER_RECOMMENDATION_SEE_COMMENTS = 6; - /** - * Run the migration. - */ - public function up(): void - { - parent::up(); - - $this->seedNonRemovableRecommendations(); - } - protected function systemDefineNonRemovableRecommendations(): array { return [ diff --git a/dbscripts/xml/install.xml b/dbscripts/xml/install.xml index ef296cee6dc..081e9f7f734 100644 --- a/dbscripts/xml/install.xml +++ b/dbscripts/xml/install.xml @@ -42,6 +42,7 @@ + diff --git a/dbscripts/xml/upgrade.xml b/dbscripts/xml/upgrade.xml index ac0540c3f13..bb40109cfb0 100644 --- a/dbscripts/xml/upgrade.xml +++ b/dbscripts/xml/upgrade.xml @@ -160,6 +160,7 @@ + From 0f8a38fa397dd42f6118e5142f056e17becf3856 Mon Sep 17 00:00:00 2001 From: Touhidur Rahman Date: Tue, 19 Nov 2024 13:47:59 +0600 Subject: [PATCH 06/12] pkp/pkp-lib#1660 Submodule Update ##touhidurabir/i1660_main## --- plugins/reports/reviewReport | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/reports/reviewReport b/plugins/reports/reviewReport index 613059b9792..0145b76d4ba 160000 --- a/plugins/reports/reviewReport +++ b/plugins/reports/reviewReport @@ -1 +1 @@ -Subproject commit 613059b97921cf6ade3a485b560bdcc6f1b1ca0d +Subproject commit 0145b76d4ba0596dcb13186a84bb769243687434 From f2adc10095cdea9d4444a6559fc69c54e32ba3b7 Mon Sep 17 00:00:00 2001 From: Touhidur Rahman Date: Wed, 4 Dec 2024 02:19:00 +0600 Subject: [PATCH 07/12] pkp/pkp-lib#1660 ui locale backend keys update --- registry/uiLocaleKeysBackend.json | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/registry/uiLocaleKeysBackend.json b/registry/uiLocaleKeysBackend.json index 5a093ef04f3..49179d155f9 100644 --- a/registry/uiLocaleKeysBackend.json +++ b/registry/uiLocaleKeysBackend.json @@ -24,6 +24,7 @@ "article.metadata", "author.users.contributor.principalContact", "author.users.contributor.setPrincipalContact", + "common.activate", "common.active", "common.addCCBCC", "common.assign", @@ -38,6 +39,7 @@ "common.confirmDelete", "common.content", "common.dateUploaded", + "common.deactivate", "common.default", "common.delete", "common.description", @@ -405,14 +407,9 @@ "publication.version", "publication.version.all", "publication.version.confirm", - "reviewer.article.decision.accept", - "reviewer.article.decision.decline", - "reviewer.article.decision.pendingRevisions", - "reviewer.article.decision.resubmitElsewhere", - "reviewer.article.decision.resubmitHere", - "reviewer.article.decision.seeComments", "reviewer.article.recommendation", "reviewer.competingInterests", + "reviewer.recommendation.management.options", "reviewer.submission.acceptedOn", "reviewer.submission.responseDueDate", "reviewer.submission.reviewDueDate", From 083e89a7ce1f2ba22b20c547a7c849324da843c5 Mon Sep 17 00:00:00 2001 From: Touhidur Rahman Date: Wed, 4 Dec 2024 17:45:49 +0600 Subject: [PATCH 08/12] pkp/pkp-lib#1660 ui locale backend keys update --- registry/uiLocaleKeysBackend.json | 5 ----- 1 file changed, 5 deletions(-) diff --git a/registry/uiLocaleKeysBackend.json b/registry/uiLocaleKeysBackend.json index 49179d155f9..409913812bc 100644 --- a/registry/uiLocaleKeysBackend.json +++ b/registry/uiLocaleKeysBackend.json @@ -24,8 +24,6 @@ "article.metadata", "author.users.contributor.principalContact", "author.users.contributor.setPrincipalContact", - "common.activate", - "common.active", "common.addCCBCC", "common.assign", "common.attachFiles", @@ -39,7 +37,6 @@ "common.confirmDelete", "common.content", "common.dateUploaded", - "common.deactivate", "common.default", "common.delete", "common.description", @@ -58,7 +55,6 @@ "common.findTemplate", "common.geographic", "common.id", - "common.inactive", "common.insert", "common.insertContent", "common.insertContentSearch", @@ -494,7 +490,6 @@ "submission.list.revisionsSubmitted", "submission.production", "submission.publication", - "submission.recommendation", "submission.review", "submission.stage.externalReviewWithRound", "submission.stage.internalReviewWithRound", From c75df1aaaaca979872f80ab9a876b9cc5d4813ff Mon Sep 17 00:00:00 2001 From: Touhidur Rahman Date: Fri, 6 Dec 2024 17:35:09 +0600 Subject: [PATCH 09/12] pkp/pkp-lib#1660 default recommendation at new context add --- .../v3_6_0/I1660_ReviewerRecommendations.php | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/classes/migration/upgrade/v3_6_0/I1660_ReviewerRecommendations.php b/classes/migration/upgrade/v3_6_0/I1660_ReviewerRecommendations.php index 0d487dd68ad..a30caa6fd61 100644 --- a/classes/migration/upgrade/v3_6_0/I1660_ReviewerRecommendations.php +++ b/classes/migration/upgrade/v3_6_0/I1660_ReviewerRecommendations.php @@ -15,24 +15,12 @@ namespace APP\migration\upgrade\v3_6_0; +use PKP\submission\reviewer\recommendation\ReviewerRecommendation; + class I1660_ReviewerRecommendations extends \PKP\migration\upgrade\v3_6_0\I1660_ReviewerRecommendations { - public const SUBMISSION_REVIEWER_RECOMMENDATION_ACCEPT = 1; - public const SUBMISSION_REVIEWER_RECOMMENDATION_PENDING_REVISIONS = 2; - public const SUBMISSION_REVIEWER_RECOMMENDATION_RESUBMIT_HERE = 3; - public const SUBMISSION_REVIEWER_RECOMMENDATION_RESUBMIT_ELSEWHERE = 4; - public const SUBMISSION_REVIEWER_RECOMMENDATION_DECLINE = 5; - public const SUBMISSION_REVIEWER_RECOMMENDATION_SEE_COMMENTS = 6; - protected function systemDefineNonRemovableRecommendations(): array { - return [ - static::SUBMISSION_REVIEWER_RECOMMENDATION_ACCEPT => 'reviewer.article.decision.accept', - static::SUBMISSION_REVIEWER_RECOMMENDATION_PENDING_REVISIONS => 'reviewer.article.decision.pendingRevisions', - static::SUBMISSION_REVIEWER_RECOMMENDATION_RESUBMIT_HERE => 'reviewer.article.decision.resubmitHere', - static::SUBMISSION_REVIEWER_RECOMMENDATION_RESUBMIT_ELSEWHERE => 'reviewer.article.decision.resubmitElsewhere', - static::SUBMISSION_REVIEWER_RECOMMENDATION_DECLINE => 'reviewer.article.decision.decline', - static::SUBMISSION_REVIEWER_RECOMMENDATION_SEE_COMMENTS => 'reviewer.article.decision.seeComments', - ]; + return ReviewerRecommendation::seedableRecommendations(); } } From 7e825e69ea36174f46e3d378f2e55ad5b9623109 Mon Sep 17 00:00:00 2001 From: Touhidur Rahman Date: Fri, 6 Dec 2024 19:35:03 +0600 Subject: [PATCH 10/12] pkp/pkp-lib#1660 ui locale backend keys update --- registry/uiLocaleKeysBackend.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/registry/uiLocaleKeysBackend.json b/registry/uiLocaleKeysBackend.json index 409913812bc..a607581144b 100644 --- a/registry/uiLocaleKeysBackend.json +++ b/registry/uiLocaleKeysBackend.json @@ -19,6 +19,9 @@ "acceptInvitation.verifyOrcid", "admin.jobs.failed.action.redispatch", "admin.jobs.failed.action.redispatch.all", + "admin.submissions.incomplete.bulkDelete.body", + "admin.submissions.incomplete.bulkDelete.column.description", + "admin.submissions.incomplete.bulkDelete.confirm", "admin.version", "article.article", "article.metadata", @@ -405,6 +408,8 @@ "publication.version.confirm", "reviewer.article.recommendation", "reviewer.competingInterests", + "reviewer.recommendation.list.name.title", + "reviewer.recommendation.list.status.title", "reviewer.recommendation.management.options", "reviewer.submission.acceptedOn", "reviewer.submission.responseDueDate", From 1384360e5e66f06fd82224fda8eed549b4955f44 Mon Sep 17 00:00:00 2001 From: Touhidur Rahman Date: Sat, 21 Dec 2024 15:44:47 +0600 Subject: [PATCH 11/12] pkp/pkp-lib#1660 set used recommendation uneditable --- .../install/ReviewerRecommendationsMigration.php | 11 ++++++++++- .../upgrade/v3_6_0/I1660_ReviewerRecommendations.php | 5 ++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/classes/migration/install/ReviewerRecommendationsMigration.php b/classes/migration/install/ReviewerRecommendationsMigration.php index 62288ab41db..989a834b16a 100644 --- a/classes/migration/install/ReviewerRecommendationsMigration.php +++ b/classes/migration/install/ReviewerRecommendationsMigration.php @@ -9,23 +9,32 @@ * * @class ReviewerRecommendationsMigration * - * @brief + * @brief Describe database table structures . */ namespace APP\migration\install; class ReviewerRecommendationsMigration extends \PKP\migration\install\ReviewerRecommendationsMigration { + /** + * @copydoc \PKP\migration\install\ReviewerRecommendationsMigratio::contextTable() + */ public function contextTable(): string { return 'journals'; } + /** + * @copydoc \PKP\migration\install\ReviewerRecommendationsMigratio::settingTable() + */ public function settingTable(): string { return 'journal_settings'; } + /** + * @copydoc \PKP\migration\install\ReviewerRecommendationsMigratio::contextPrimaryKey() + */ public function contextPrimaryKey(): string { return 'journal_id'; diff --git a/classes/migration/upgrade/v3_6_0/I1660_ReviewerRecommendations.php b/classes/migration/upgrade/v3_6_0/I1660_ReviewerRecommendations.php index a30caa6fd61..fafee17729b 100644 --- a/classes/migration/upgrade/v3_6_0/I1660_ReviewerRecommendations.php +++ b/classes/migration/upgrade/v3_6_0/I1660_ReviewerRecommendations.php @@ -9,7 +9,7 @@ * * @class I1660_ReviewerRecommendations.php * - * @brief + * @brief Upgrade migration add recommendations * */ @@ -19,6 +19,9 @@ class I1660_ReviewerRecommendations extends \PKP\migration\upgrade\v3_6_0\I1660_ReviewerRecommendations { + /** + * @copydoc \PKP\migration\upgrade\v3_6_0\I1660_ReviewerRecommendations::systemDefineNonRemovableRecommendations() + */ protected function systemDefineNonRemovableRecommendations(): array { return ReviewerRecommendation::seedableRecommendations(); From f11c7363109ff35652fed94a463cf46520d7fd14 Mon Sep 17 00:00:00 2001 From: Touhidur Rahman Date: Thu, 23 Jan 2025 13:40:24 +0600 Subject: [PATCH 12/12] pkp/pkp-lib#1660 ui locale backend keys update --- registry/uiLocaleKeysBackend.json | 6 ------ 1 file changed, 6 deletions(-) diff --git a/registry/uiLocaleKeysBackend.json b/registry/uiLocaleKeysBackend.json index a607581144b..4fe3ecf6745 100644 --- a/registry/uiLocaleKeysBackend.json +++ b/registry/uiLocaleKeysBackend.json @@ -19,9 +19,6 @@ "acceptInvitation.verifyOrcid", "admin.jobs.failed.action.redispatch", "admin.jobs.failed.action.redispatch.all", - "admin.submissions.incomplete.bulkDelete.body", - "admin.submissions.incomplete.bulkDelete.column.description", - "admin.submissions.incomplete.bulkDelete.confirm", "admin.version", "article.article", "article.metadata", @@ -57,7 +54,6 @@ "common.filtersClear", "common.findTemplate", "common.geographic", - "common.id", "common.insert", "common.insertContent", "common.insertContentSearch", @@ -408,8 +404,6 @@ "publication.version.confirm", "reviewer.article.recommendation", "reviewer.competingInterests", - "reviewer.recommendation.list.name.title", - "reviewer.recommendation.list.status.title", "reviewer.recommendation.management.options", "reviewer.submission.acceptedOn", "reviewer.submission.responseDueDate",