├── .github └── ISSUE_TEMPLATE │ ├── 1-bug.yml │ ├── 2-dev-task.md │ ├── 3-accessibility-issue.md │ └── config.yml ├── .gitignore ├── .gitmodules ├── .php-cs-fixer.php ├── .php_cs_rules ├── LICENSE ├── README.md ├── api └── v1 │ ├── _dois │ └── PKPBackendDoiController.php │ ├── _email │ └── PKPEmailController.php │ ├── _i18n │ └── I18nController.php │ ├── _library │ └── PKPLibraryController.php │ ├── _payments │ └── PKPBackendPaymentsSettingsController.php │ ├── _submissions │ └── PKPBackendSubmissionsController.php │ ├── _uploadPublicFile │ └── PKPUploadPublicFileController.php │ ├── announcements │ └── PKPAnnouncementController.php │ ├── bodyText │ └── PKPBodyTextController.php │ ├── categories │ └── CategoryCategoryController.php │ ├── citations │ └── PKPCitationController.php │ ├── comments │ ├── UserCommentController.php │ ├── formRequests │ │ ├── AddComment.php │ │ └── AddReport.php │ └── resources │ │ ├── UserCommentReportResource.php │ │ └── UserCommentResource.php │ ├── contexts │ ├── PKPContextController.php │ └── resources │ │ └── UserGroupResource.php │ ├── contributorRoles │ └── ContributorRoleController.php │ ├── dois │ └── PKPDoiController.php │ ├── editTaskTemplates │ ├── PKPEditTaskTemplateController.php │ ├── formRequests │ │ ├── AddTaskTemplate.php │ │ ├── TaskTemplateRequestTrait.php │ │ └── UpdateTaskTemplate.php │ └── resources │ │ └── TaskTemplateResource.php │ ├── emailTemplates │ └── PKPEmailTemplateController.php │ ├── emails │ └── PKPEmailController.php │ ├── highlights │ └── HighlightsController.php │ ├── institutions │ └── PKPInstitutionController.php │ ├── invitations │ └── InvitationController.php │ ├── jats │ └── PKPJatsController.php │ ├── jobs │ └── PKPJobController.php │ ├── mailables │ └── PKPMailableController.php │ ├── orcid │ └── OrcidController.php │ ├── publicationPeerReviews │ ├── PublicationPeerReviewController.php │ └── resources │ │ └── PublicationPeerReviewResource.php │ ├── reviewers │ └── suggestions │ │ ├── ReviewerSuggestionController.php │ │ ├── formRequests │ │ ├── AddReviewerSuggestion.php │ │ └── EditReviewerSuggestion.php │ │ └── resources │ │ └── ReviewerSuggestionResource.php │ ├── reviews │ └── PKPReviewController.php │ ├── rors │ └── PKPRorController.php │ ├── sections │ └── SectionController.php │ ├── site │ └── PKPSiteController.php │ ├── stats │ ├── contexts │ │ └── PKPStatsContextController.php │ ├── editorial │ │ └── PKPStatsEditorialController.php │ ├── publications │ │ └── PKPStatsPublicationController.php │ ├── sushi │ │ └── PKPStatsSushiController.php │ └── users │ │ └── PKPStatsUserController.php │ ├── submissions │ ├── AnonymizeData.php │ ├── PKPSubmissionController.php │ ├── PKPSubmissionFileController.php │ └── tasks │ │ ├── EditorialTaskController.php │ │ ├── formRequests │ │ ├── AddNote.php │ │ ├── AddTask.php │ │ └── EditTask.php │ │ └── resources │ │ ├── EditorialTaskParticipantResource.php │ │ ├── NoteResource.php │ │ └── TaskResource.php │ ├── temporaryFiles │ └── PKPTemporaryFilesController.php │ ├── userGroups │ └── UserGroupController.php │ ├── users │ └── PKPUserController.php │ └── vocabs │ ├── PKPInterestController.php │ └── PKPVocabController.php ├── captainhook.json ├── classes ├── affiliation │ ├── Affiliation.php │ ├── Collector.php │ ├── DAO.php │ ├── Repository.php │ └── maps │ │ └── Schema.php ├── announcement │ ├── Announcement.php │ ├── AnnouncementType.php │ ├── AnnouncementTypeDAO.php │ ├── DAO.php │ ├── Repository.php │ └── maps │ │ └── Schema.php ├── author │ ├── Author.php │ ├── Collector.php │ ├── DAO.php │ ├── Repository.php │ ├── contributorRole │ │ ├── ContributorRole.php │ │ ├── ContributorRoleIdentifier.php │ │ ├── ContributorType.php │ │ ├── Repository.php │ │ └── maps │ │ │ └── Schema.php │ ├── creditContributorRole │ │ ├── CreditContributorRole.php │ │ └── Repository.php │ ├── creditRole │ │ ├── CreditRole.php │ │ ├── CreditRoleDegree.php │ │ └── Repository.php │ └── maps │ │ └── Schema.php ├── bodyText │ ├── BodyTextFile.php │ └── Repository.php ├── category │ ├── Category.php │ ├── Collector.php │ ├── DAO.php │ ├── Repository.php │ └── maps │ │ └── Schema.php ├── citation │ ├── Citation.php │ ├── Collector.php │ ├── DAO.php │ ├── Repository.php │ ├── enum │ │ ├── CitationProcessingStatus.php │ │ ├── CitationSourceType.php │ │ └── CitationType.php │ ├── externalServices │ │ ├── ExternalServicesHelper.php │ │ ├── crossref │ │ │ ├── Inbound.php │ │ │ └── Mapping.php │ │ ├── openAlex │ │ │ ├── Inbound.php │ │ │ └── Mapping.php │ │ └── orcid │ │ │ ├── Inbound.php │ │ │ └── Mapping.php │ ├── filter │ │ └── CitationListTokenizerFilter.php │ ├── maps │ │ └── Schema.php │ └── pid │ │ ├── Arxiv.php │ │ ├── BasePid.php │ │ ├── Doi.php │ │ ├── ExtractPidsHelper.php │ │ ├── Handle.php │ │ ├── Orcid.php │ │ ├── Url.php │ │ └── Urn.php ├── cliTool │ ├── CommandInterface.php │ ├── CommandLineTool.php │ ├── ConvertLogFileTool.php │ ├── InstallTool.php │ ├── MergeUsersTool.php │ ├── UpgradeTool.php │ └── traits │ │ ├── ConvertLogFile.php │ │ ├── HasCommandInterface.php │ │ └── HasParameterList.php ├── components │ ├── PKPStatsComponent.php │ ├── PKPStatsContextPage.php │ ├── PKPStatsEditorialPage.php │ ├── PKPStatsPublicationPage.php │ ├── PublicationSectionJats.php │ ├── UserCommentComponent.php │ ├── fileAttachers │ │ ├── BaseAttacher.php │ │ ├── FileStage.php │ │ ├── Library.php │ │ ├── ReviewFiles.php │ │ └── Upload.php │ ├── forms │ │ ├── Field.php │ │ ├── FieldAffiliations.php │ │ ├── FieldAuthors.php │ │ ├── FieldAutosuggestPreset.php │ │ ├── FieldBaseAutosuggest.php │ │ ├── FieldColor.php │ │ ├── FieldControlledVocab.php │ │ ├── FieldCreditRoles.php │ │ ├── FieldDate.php │ │ ├── FieldHTML.php │ │ ├── FieldMetadataSetting.php │ │ ├── FieldOptions.php │ │ ├── FieldOrcid.php │ │ ├── FieldPreparedContent.php │ │ ├── FieldPubId.php │ │ ├── FieldRadioInput.php │ │ ├── FieldRichText.php │ │ ├── FieldRichTextarea.php │ │ ├── FieldSelect.php │ │ ├── FieldSelectSubmissions.php │ │ ├── FieldSelectUsers.php │ │ ├── FieldShowEnsuringLink.php │ │ ├── FieldSlider.php │ │ ├── FieldText.php │ │ ├── FieldTextarea.php │ │ ├── FieldUpload.php │ │ ├── FieldUploadImage.php │ │ ├── FormComponent.php │ │ ├── announcement │ │ │ └── PKPAnnouncementForm.php │ │ ├── citation │ │ │ ├── CitationRawEditForm.php │ │ │ └── CitationStructuredEditForm.php │ │ ├── context │ │ │ ├── CategoryForm.php │ │ │ ├── ContentCommentsForm.php │ │ │ ├── OrcidSettingsForm.php │ │ │ ├── PKPAnnouncementSettingsForm.php │ │ │ ├── PKPAppearanceAdvancedForm.php │ │ │ ├── PKPAppearanceMastheadForm.php │ │ │ ├── PKPAppearanceSetupForm.php │ │ │ ├── PKPContactForm.php │ │ │ ├── PKPContextForm.php │ │ │ ├── PKPContextStatisticsForm.php │ │ │ ├── PKPDateTimeForm.php │ │ │ ├── PKPDisableSubmissionsForm.php │ │ │ ├── PKPDoiRegistrationSettingsForm.php │ │ │ ├── PKPDoiSetupSettingsForm.php │ │ │ ├── PKPEmailSetupForm.php │ │ │ ├── PKPInformationForm.php │ │ │ ├── PKPLicenseForm.php │ │ │ ├── PKPListsForm.php │ │ │ ├── PKPMastheadForm.php │ │ │ ├── PKPMetadataSettingsForm.php │ │ │ ├── PKPNotifyUsersForm.php │ │ │ ├── PKPPaymentSettingsForm.php │ │ │ ├── PKPPrivacyForm.php │ │ │ ├── PKPRestrictBulkEmailsForm.php │ │ │ ├── PKPReviewGuidanceForm.php │ │ │ ├── PKPReviewSetupForm.php │ │ │ ├── PKPSearchIndexingForm.php │ │ │ ├── PKPThemeForm.php │ │ │ └── PKPUserAccessForm.php │ │ ├── counter │ │ │ └── PKPCounterReportForm.php │ │ ├── dashboard │ │ │ └── PKPSubmissionFilters.php │ │ ├── decision │ │ │ ├── LogReviewerResponseForm.php │ │ │ ├── SelectRevisionDecisionForm.php │ │ │ └── SelectRevisionRecommendationForm.php │ │ ├── emailTemplate │ │ │ └── EmailTemplateForm.php │ │ ├── highlight │ │ │ └── HighlightForm.php │ │ ├── institution │ │ │ └── PKPInstitutionForm.php │ │ ├── invitation │ │ │ ├── AcceptUserDetailsForm.php │ │ │ └── UserDetailsForm.php │ │ ├── publication │ │ │ ├── ContributorForm.php │ │ │ ├── Details.php │ │ │ ├── PKPCitationsForm.php │ │ │ ├── PKPMetadataForm.php │ │ │ ├── PKPPublicationIdentifiersForm.php │ │ │ ├── PKPPublicationLicenseForm.php │ │ │ └── TitleAbstractForm.php │ │ ├── site │ │ │ ├── OrcidSiteSettingsForm.php │ │ │ ├── PKPSiteAppearanceForm.php │ │ │ ├── PKPSiteBulkEmailsForm.php │ │ │ ├── PKPSiteConfigForm.php │ │ │ ├── PKPSiteInformationForm.php │ │ │ └── PKPSiteStatisticsForm.php │ │ ├── statistics │ │ │ └── users │ │ │ │ └── ReportForm.php │ │ └── submission │ │ │ ├── ChangeSubmissionLanguageMetadataForm.php │ │ │ ├── CommentsForTheEditors.php │ │ │ ├── ConfirmSubmission.php │ │ │ ├── ForTheEditors.php │ │ │ ├── PKPSubmissionFileForm.php │ │ │ ├── ReconfigureSubmission.php │ │ │ ├── ReviewerSuggestionsForm.php │ │ │ ├── StartSubmission.php │ │ │ └── SubmissionGuidanceSettings.php │ └── listPanels │ │ ├── ContributorsListPanel.php │ │ ├── HighlightsListPanel.php │ │ ├── ListPanel.php │ │ ├── PKPAnnouncementsListPanel.php │ │ ├── PKPCounterReportsListPanel.php │ │ ├── PKPDoiListPanel.php │ │ ├── PKPInstitutionsListPanel.php │ │ ├── PKPSelectReviewerListPanel.php │ │ ├── PKPSubmissionsListPanel.php │ │ └── ReviewerSuggestionsListPanel.php ├── config │ ├── Config.php │ └── ConfigParser.php ├── context │ ├── Context.php │ ├── ContextDAO.php │ ├── LibraryFile.php │ ├── LibraryFileDAO.php │ └── SubEditorsDAO.php ├── controlledVocab │ ├── ControlledVocab.php │ ├── ControlledVocabEntry.php │ ├── ControlledVocabEntryMatch.php │ └── Repository.php ├── controllers │ ├── grid │ │ ├── ArrayGridCellProvider.php │ │ ├── CategoryGridDataProvider.php │ │ ├── CategoryGridHandler.php │ │ ├── ColumnBasedGridCellProvider.php │ │ ├── DataObjectGridCellProvider.php │ │ ├── DateGridCellProvider.php │ │ ├── GridBodyElement.php │ │ ├── GridCategoryRow.php │ │ ├── GridCategoryRowCellProvider.php │ │ ├── GridCellProvider.php │ │ ├── GridColumn.php │ │ ├── GridDataProvider.php │ │ ├── GridHandler.php │ │ ├── GridRow.php │ │ ├── LiteralGridCellProvider.php │ │ ├── NullGridCellProvider.php │ │ ├── feature │ │ │ ├── CollapsibleGridFeature.php │ │ │ ├── GeneralPagingFeature.php │ │ │ ├── GridFeature.php │ │ │ ├── InfiniteScrollingFeature.php │ │ │ ├── OrderCategoryGridItemsFeature.php │ │ │ ├── OrderGridItemsFeature.php │ │ │ ├── OrderItemsFeature.php │ │ │ ├── OrderListbuilderItemsFeature.php │ │ │ ├── PagingFeature.php │ │ │ └── selectableItems │ │ │ │ ├── ItemSelectionGridColumn.php │ │ │ │ └── SelectableItemsFeature.php │ │ ├── files │ │ │ └── FilesGridCapabilities.php │ │ ├── plugins │ │ │ └── PluginGridHandler.php │ │ └── users │ │ │ └── reviewer │ │ │ └── PKPReviewerGridHandler.php │ └── listbuilder │ │ ├── ListbuilderGridColumn.php │ │ ├── ListbuilderGridRow.php │ │ ├── ListbuilderHandler.php │ │ └── MultilingualListbuilderGridColumn.php ├── core │ ├── APIRouter.php │ ├── AppServiceProvider.php │ ├── ArrayItemIterator.php │ ├── ConsoleCommandServiceProvider.php │ ├── Core.php │ ├── DataObject.php │ ├── Dispatcher.php │ ├── EntityDAO.php │ ├── EventServiceProvider.php │ ├── ExportableTrait.php │ ├── InvitationServiceProvider.php │ ├── ItemIterator.php │ ├── JSONMessage.php │ ├── MailServiceProvider.php │ ├── MapContainer.php │ ├── PKPAppKey.php │ ├── PKPApplication.php │ ├── PKPAuthManager.php │ ├── PKPAuthServiceProvider.php │ ├── PKPBaseController.php │ ├── PKPBladeViewServiceProvider.php │ ├── PKPComponentRouter.php │ ├── PKPContainer.php │ ├── PKPEncryptionServiceProvider.php │ ├── PKPJwt.php │ ├── PKPPageRouter.php │ ├── PKPQueueDatabaseConnector.php │ ├── PKPQueueProvider.php │ ├── PKPRequest.php │ ├── PKPRouter.php │ ├── PKPRoutingProvider.php │ ├── PKPServices.php │ ├── PKPSessionGuard.php │ ├── PKPSessionServiceProvider.php │ ├── PKPString.php │ ├── PKPUserProvider.php │ ├── Registry.php │ ├── RuntimeEnvironment.php │ ├── ScheduleServiceProvider.php │ ├── SettingsBuilder.php │ ├── SoftDeleteTrait.php │ ├── ValidationServiceProvider.php │ ├── VirtualArrayIterator.php │ ├── blade │ │ ├── BladeCompiler.php │ │ ├── ComponentTagCompiler.php │ │ └── DynamicComponent.php │ ├── casts │ │ └── MultilingualSettingAttribute.php │ ├── exceptions │ │ └── StoreTemporaryFileException.php │ ├── interfaces │ │ ├── CollectorInterface.php │ │ └── PKPApplicationInfoProvider.php │ ├── maps │ │ ├── Base.php │ │ └── Schema.php │ └── traits │ │ ├── EntityUpdate.php │ │ ├── EntityWithParent.php │ │ ├── LocalizedData.php │ │ ├── ModelWithSettings.php │ │ └── ResourceWithData.php ├── db │ ├── DAO.php │ ├── DAORegistry.php │ ├── DAOResultFactory.php │ ├── DAOResultIterator.php │ ├── DBDataXMLParser.php │ ├── DBResultRange.php │ ├── SchemaDAO.php │ └── XMLDAO.php ├── decision │ ├── Collector.php │ ├── DAO.php │ ├── Decision.php │ ├── DecisionType.php │ ├── Repository.php │ ├── Step.php │ ├── Steps.php │ ├── maps │ │ └── Schema.php │ ├── steps │ │ ├── Email.php │ │ ├── Form.php │ │ └── PromoteFiles.php │ └── types │ │ ├── Accept.php │ │ ├── BackFromCopyediting.php │ │ ├── BackFromProduction.php │ │ ├── CancelReviewRound.php │ │ ├── Decline.php │ │ ├── InitialDecline.php │ │ ├── NewExternalReviewRound.php │ │ ├── RecommendAccept.php │ │ ├── RecommendDecline.php │ │ ├── RecommendResubmit.php │ │ ├── RecommendRevisions.php │ │ ├── RequestRevisions.php │ │ ├── Resubmit.php │ │ ├── RevertDecline.php │ │ ├── RevertInitialDecline.php │ │ ├── SendExternalReview.php │ │ ├── SendToProduction.php │ │ ├── SkipExternalReview.php │ │ ├── interfaces │ │ └── DecisionRetractable.php │ │ └── traits │ │ ├── InExternalReviewRound.php │ │ ├── InSubmissionStage.php │ │ ├── IsRecommendation.php │ │ ├── NotifyAuthors.php │ │ ├── NotifyReviewers.php │ │ └── WithReviewAssignments.php ├── dev │ ├── ComposerScript.php │ └── fixers │ │ ├── Fixers.php │ │ ├── HookFixer.php │ │ └── bootstrap.php ├── doi │ ├── Collector.php │ ├── DAO.php │ ├── Doi.php │ ├── DoiGenerator.php │ ├── RegistrationAgencySettings.php │ ├── Repository.php │ ├── exceptions │ │ └── DoiException.php │ └── maps │ │ └── Schema.php ├── editorialTask │ ├── EditorialTask.php │ ├── Participant.php │ ├── Repository.php │ ├── Template.php │ └── enums │ │ ├── EditorialTaskDueInterval.php │ │ ├── EditorialTaskStatus.php │ │ └── EditorialTaskType.php ├── emailTemplate │ ├── Collector.php │ ├── DAO.php │ ├── EmailTemplate.php │ ├── EmailTemplateAccessGroup.php │ ├── Repository.php │ └── maps │ │ └── Schema.php ├── facades │ ├── Locale.php │ └── Repo.php ├── file │ ├── ContextFileManager.php │ ├── FileArchive.php │ ├── FileManager.php │ ├── PKPFile.php │ ├── PKPLibraryFileManager.php │ ├── PKPPublicFileManager.php │ ├── PrivateFileManager.php │ ├── TemporaryFile.php │ ├── TemporaryFileDAO.php │ └── TemporaryFileManager.php ├── filter │ ├── BooleanFilterSetting.php │ ├── ClassTypeDescription.php │ ├── CompositeFilter.php │ ├── EmailFilterSetting.php │ ├── Filter.php │ ├── FilterDAO.php │ ├── FilterGroup.php │ ├── FilterGroupDAO.php │ ├── FilterHelper.php │ ├── FilterSetting.php │ ├── GenericMultiplexerFilter.php │ ├── GenericSequencerFilter.php │ ├── PersistableFilter.php │ ├── PrimitiveTypeDescription.php │ ├── SetFilterSetting.php │ ├── TemplateBasedFilter.php │ ├── TypeDescription.php │ └── TypeDescriptionFactory.php ├── form │ ├── Form.php │ ├── FormBuilderVocabulary.php │ ├── FormError.php │ └── validation │ │ ├── FormValidator.php │ │ ├── FormValidatorAltcha.php │ │ ├── FormValidatorArray.php │ │ ├── FormValidatorArrayCustom.php │ │ ├── FormValidatorBoolean.php │ │ ├── FormValidatorCSRF.php │ │ ├── FormValidatorControlledVocab.php │ │ ├── FormValidatorCustom.php │ │ ├── FormValidatorDateCompare.php │ │ ├── FormValidatorEmail.php │ │ ├── FormValidatorISSN.php │ │ ├── FormValidatorInSet.php │ │ ├── FormValidatorLength.php │ │ ├── FormValidatorLocale.php │ │ ├── FormValidatorLocaleEmail.php │ │ ├── FormValidatorLocaleUrl.php │ │ ├── FormValidatorORCID.php │ │ ├── FormValidatorPost.php │ │ ├── FormValidatorReCaptcha.php │ │ ├── FormValidatorRegExp.php │ │ ├── FormValidatorUrl.php │ │ └── FormValidatorUsername.php ├── galley │ ├── Collector.php │ ├── DAO.php │ ├── Galley.php │ ├── Repository.php │ └── maps │ │ └── Schema.php ├── handler │ ├── APIHandler.php │ └── PKPHandler.php ├── highlight │ ├── Collector.php │ ├── DAO.php │ ├── Highlight.php │ ├── Repository.php │ └── maps │ │ └── Schema.php ├── i18n │ ├── Locale.php │ ├── LocaleConversion.php │ ├── LocaleMetadata.php │ ├── LocaleServiceProvider.php │ ├── interfaces │ │ └── LocaleInterface.php │ ├── translation │ │ ├── IsoCodesTranslationDriver.php │ │ ├── LocaleBundle.php │ │ ├── LocaleFile.php │ │ └── Translator.php │ └── ui │ │ └── UITranslator.php ├── identity │ └── Identity.php ├── install │ ├── DowngradeNotSupportedException.php │ ├── Installer.php │ ├── PKPInstall.php │ └── form │ │ ├── InstallForm.php │ │ ├── MaintenanceForm.php │ │ └── UpgradeForm.php ├── institution │ ├── Collector.php │ ├── DAO.php │ ├── Institution.php │ ├── Repository.php │ └── maps │ │ └── Schema.php ├── invitation │ ├── core │ │ ├── CreateInvitationController.php │ │ ├── EmptyInvitePayload.php │ │ ├── Invitation.php │ │ ├── InvitationActionRedirectController.php │ │ ├── InvitationFactory.php │ │ ├── InvitationUIActionRedirectController.php │ │ ├── InvitePayload.php │ │ ├── ReceiveInvitationController.php │ │ ├── contracts │ │ │ ├── IApiHandleable.php │ │ │ ├── IBackofficeHandleable.php │ │ │ └── IMailableUrlUpdateable.php │ │ ├── enums │ │ │ ├── InvitationAction.php │ │ │ ├── InvitationStatus.php │ │ │ └── ValidationContext.php │ │ └── traits │ │ │ ├── HasMailable.php │ │ │ └── ShouldValidate.php │ ├── invitations │ │ ├── changeProfileEmail │ │ │ ├── ChangeProfileEmailInvite.php │ │ │ ├── handlers │ │ │ │ └── ChangeProfileEmailInviteRedirectController.php │ │ │ └── payload │ │ │ │ └── ChangeProfileEmailInvitePayload.php │ │ ├── registrationAccess │ │ │ ├── RegistrationAccessInvite.php │ │ │ └── handlers │ │ │ │ └── RegistrationAccessInviteRedirectController.php │ │ ├── reviewerAccess │ │ │ ├── ReviewerAccessInvite.php │ │ │ ├── handlers │ │ │ │ └── ReviewerAccessInviteRedirectController.php │ │ │ └── payload │ │ │ │ └── ReviewerAccessInvitePayload.php │ │ └── userRoleAssignment │ │ │ ├── UserRoleAssignmentInvite.php │ │ │ ├── handlers │ │ │ ├── UserRoleAssignmentInviteRedirectController.php │ │ │ ├── UserRoleAssignmentInviteUIController.php │ │ │ └── api │ │ │ │ ├── UserRoleAssignmentCreateController.php │ │ │ │ └── UserRoleAssignmentReceiveController.php │ │ │ ├── helpers │ │ │ └── UserGroupHelper.php │ │ │ ├── payload │ │ │ └── UserRoleAssignmentInvitePayload.php │ │ │ ├── resources │ │ │ ├── BaseUserRoleAssignmentInviteResource.php │ │ │ ├── UserRoleAssignmentInviteManagerDataResource.php │ │ │ └── UserRoleAssignmentInviteResource.php │ │ │ └── rules │ │ │ ├── AddUserGroupRule.php │ │ │ ├── AllowedKeysRule.php │ │ │ ├── EmailMustNotExistRule.php │ │ │ ├── NoUserGroupChangesRule.php │ │ │ ├── NotNullIfPresent.php │ │ │ ├── PrimaryLocaleRequired.php │ │ │ ├── ProhibitedIncludingNull.php │ │ │ ├── UserGroupExistsRule.php │ │ │ ├── UserMustExistRule.php │ │ │ └── UsernameExistsRule.php │ ├── models │ │ └── InvitationModel.php │ ├── repositories │ │ └── Repository.php │ ├── sections │ │ ├── Email.php │ │ ├── Form.php │ │ ├── Section.php │ │ └── Sections.php │ ├── stepTypes │ │ ├── AcceptInvitationStep.php │ │ ├── InvitationStepTypes.php │ │ └── SendInvitationStep.php │ └── steps │ │ └── Step.php ├── jats │ ├── JatsFile.php │ ├── Repository.php │ └── exceptions │ │ └── UnableToCreateJATSContentException.php ├── job │ ├── casts │ │ └── DatetimeToInt.php │ ├── exceptions │ │ └── JobException.php │ ├── models │ │ ├── FailedJob.php │ │ └── Job.php │ ├── repositories │ │ ├── BaseRepository.php │ │ ├── FailedJob.php │ │ └── Job.php │ ├── resources │ │ ├── CLIFailedJobResource.php │ │ ├── CLIJobResource.php │ │ ├── HttpFailedJobResource.php │ │ └── HttpJobResource.php │ └── traits │ │ ├── Attributes.php │ │ └── JobResource.php ├── linkAction │ ├── LinkAction.php │ └── request │ │ ├── AddTabAction.php │ │ ├── AjaxAction.php │ │ ├── AjaxModal.php │ │ ├── ConfirmationModal.php │ │ ├── EventAction.php │ │ ├── JsEventConfirmationModal.php │ │ ├── LinkActionRequest.php │ │ ├── Modal.php │ │ ├── NullAction.php │ │ ├── OpenWindowAction.php │ │ ├── PostAndRedirectAction.php │ │ ├── RedirectAction.php │ │ ├── RedirectConfirmationModal.php │ │ ├── RemoteActionConfirmationModal.php │ │ ├── VueModal.php │ │ └── WizardModal.php ├── log │ ├── EmailLogEntry.php │ ├── Repository.php │ ├── SubmissionEmailLogEventType.php │ ├── core │ │ ├── EmailLogEventType.php │ │ └── maps │ │ │ └── Schema.php │ └── event │ │ ├── Collector.php │ │ ├── DAO.php │ │ ├── EventLogEntry.php │ │ ├── PKPSubmissionEventLogEntry.php │ │ ├── Repository.php │ │ ├── SubmissionFileEventLogEntry.php │ │ └── maps │ │ └── Schema.php ├── mail │ ├── EmailData.php │ ├── Mailable.php │ ├── Mailer.php │ ├── Repository.php │ ├── mailables │ │ ├── AnnouncementNotify.php │ │ ├── ChangeProfileEmailInvitationNotify.php │ │ ├── DecisionAcceptNotifyAuthor.php │ │ ├── DecisionBackFromCopyeditingNotifyAuthor.php │ │ ├── DecisionBackFromProductionNotifyAuthor.php │ │ ├── DecisionCancelReviewRoundNotifyAuthor.php │ │ ├── DecisionDeclineNotifyAuthor.php │ │ ├── DecisionInitialDeclineNotifyAuthor.php │ │ ├── DecisionNewReviewRoundNotifyAuthor.php │ │ ├── DecisionNotifyOtherAuthors.php │ │ ├── DecisionNotifyReviewer.php │ │ ├── DecisionRequestRevisionsNotifyAuthor.php │ │ ├── DecisionResubmitNotifyAuthor.php │ │ ├── DecisionRevertDeclineNotifyAuthor.php │ │ ├── DecisionRevertInitialDeclineNotifyAuthor.php │ │ ├── DecisionSendExternalReviewNotifyAuthor.php │ │ ├── DecisionSendToProductionNotifyAuthor.php │ │ ├── DecisionSkipExternalReviewNotifyAuthor.php │ │ ├── DiscussionCopyediting.php │ │ ├── DiscussionProduction.php │ │ ├── DiscussionReview.php │ │ ├── DiscussionSubmission.php │ │ ├── EditReviewNotify.php │ │ ├── EditorAssigned.php │ │ ├── EditorialReminder.php │ │ ├── OrcidCollectAuthorId.php │ │ ├── OrcidRequestAuthorAuthorization.php │ │ ├── OrcidRequestUpdateScope.php │ │ ├── PasswordResetRequested.php │ │ ├── PublicationVersionNotify.php │ │ ├── RecommendationNotifyEditors.php │ │ ├── ReviewAcknowledgement.php │ │ ├── ReviewCompleteNotifyEditors.php │ │ ├── ReviewConfirm.php │ │ ├── ReviewDecline.php │ │ ├── ReviewRemind.php │ │ ├── ReviewRemindAuto.php │ │ ├── ReviewRequest.php │ │ ├── ReviewRequestSubsequent.php │ │ ├── ReviewResponseRemindAuto.php │ │ ├── ReviewerRegister.php │ │ ├── ReviewerReinstate.php │ │ ├── ReviewerResendRequest.php │ │ ├── ReviewerUnassign.php │ │ ├── RevisedVersionNotify.php │ │ ├── StatisticsReportNotify.php │ │ ├── SubmissionAcknowledgement.php │ │ ├── SubmissionAcknowledgementNotAuthor.php │ │ ├── SubmissionAcknowledgementOtherAuthors.php │ │ ├── SubmissionNeedsEditor.php │ │ ├── SubmissionSavedForLater.php │ │ ├── UserCreated.php │ │ ├── UserRoleAssignmentInvitationNotify.php │ │ ├── UserRoleEndNotify.php │ │ ├── ValidateEmailContext.php │ │ └── ValidateEmailSite.php │ ├── traits │ │ ├── Configurable.php │ │ ├── Discussion.php │ │ ├── OneClickReviewerAccess.php │ │ ├── OrcidVariables.php │ │ ├── PasswordResetUrl.php │ │ ├── Recipient.php │ │ ├── ReviewerComments.php │ │ ├── Sender.php │ │ └── Unsubscribe.php │ ├── transport │ │ └── PHPMailerTransport.php │ └── variables │ │ ├── ContextEmailVariable.php │ │ ├── DecisionEmailVariable.php │ │ ├── QueuedPaymentEmailVariable.php │ │ ├── RecipientEmailVariable.php │ │ ├── ReviewAssignmentEmailVariable.php │ │ ├── SenderEmailVariable.php │ │ ├── SiteEmailVariable.php │ │ ├── SubmissionEmailVariable.php │ │ └── Variable.php ├── metadata │ ├── CrosswalkFilter.php │ ├── MetadataDataObjectAdapter.php │ ├── MetadataDescription.php │ ├── MetadataProperty.php │ ├── MetadataRecord.php │ ├── MetadataSchema.php │ └── MetadataTypeDescription.php ├── middleware │ ├── AllowCrossOrigin.php │ ├── AttachFileUploadHeader.php │ ├── DecodeApiTokenWithValidation.php │ ├── HasContext.php │ ├── HasRoles.php │ ├── HasUser.php │ ├── PKPAuthenticateSession.php │ ├── PKPEncryptCookies.php │ ├── PKPStartSession.php │ ├── PolicyAuthorizer.php │ ├── SetupContextBasedOnRequestUrl.php │ ├── ValidateCsrfToken.php │ └── traits │ │ └── HasRequiredMiddleware.php ├── migration │ ├── Migration.php │ ├── install │ │ ├── AffiliationsMigration.php │ │ ├── AnnouncementsMigration.php │ │ ├── CategoriesMigration.php │ │ ├── CommonMigration.php │ │ ├── ControlledVocabMigration.php │ │ ├── DoiMigration.php │ │ ├── EmailTemplateUserGroupAccessMigration.php │ │ ├── FailedJobsMigration.php │ │ ├── FilesMigration.php │ │ ├── GenresMigration.php │ │ ├── HighlightsMigration.php │ │ ├── InstitutionsMigration.php │ │ ├── InvitationsMigration.php │ │ ├── JobsMigration.php │ │ ├── LibraryFilesMigration.php │ │ ├── LogMigration.php │ │ ├── MetadataMigration.php │ │ ├── NavigationMenusMigration.php │ │ ├── NotesMigration.php │ │ ├── ReviewAssignmentSettingsMigration.php │ │ ├── ReviewFormsMigration.php │ │ ├── ReviewerRecommendationsMigration.php │ │ ├── ReviewerSuggestionsMigration.php │ │ ├── ReviewsMigration.php │ │ ├── RolesAndUserGroupsMigration.php │ │ ├── RorsMigration.php │ │ ├── SessionsMigration.php │ │ ├── SubmissionFilesMigration.php │ │ ├── SubmissionSearchMigration.php │ │ ├── SubmissionsMigration.php │ │ ├── TemporaryFilesMigration.php │ │ ├── TombstoneMigration.php │ │ └── UserCommentsMigration.php │ └── upgrade │ │ ├── PKPv3_2_1SubeditorCategoriesMigration.php │ │ ├── PKPv3_3_0UpgradeMigration.php │ │ ├── v3_4_0 │ │ ├── FailedJobsMigration.php │ │ ├── I10249_FixProfileImageDataLoss.php │ │ ├── I2890_AddSetNullForOnDeleteToReviewRoundIdForeign.php │ │ ├── I2890_EmailTemplatesVarcharLengthUpdate.php │ │ ├── I3573_AddPrimaryKeys.php │ │ ├── I4789_AddReviewerRequestResentColumns.php │ │ ├── I5716_EmailTemplateAssignments.php │ │ ├── I6093_AddForeignKeys.php │ │ ├── I6241_RequiredGenres.php │ │ ├── I6306_EnableCategories.php │ │ ├── I6782_CleanOldMetrics.php │ │ ├── I6782_MetricsContext.php │ │ ├── I6782_MetricsGeo.php │ │ ├── I6782_OrphanedMetrics.php │ │ ├── I6782_UsageStatsSettings.php │ │ ├── I6895_CreateNewInstitutionsTables.php │ │ ├── I7126_Galleys.php │ │ ├── I7190_UpdateFilters.php │ │ ├── I7191_EditorAssignments.php │ │ ├── I7191_InstallSubmissionHelpDefaults.php │ │ ├── I7191_ResubscribeSubeditors.php │ │ ├── I7191_SubmissionChecklistMigration.php │ │ ├── I7191_SubmissionProgressType.php │ │ ├── I7245_UpdateUserLocaleStringToParsableJsonString.php │ │ ├── I7249_UpdateUsersUniqueIndex.php │ │ ├── I7249_UpdateUsersUniqueIndex_v3_1.php │ │ ├── I7264_UpdateEmailTemplates.php │ │ ├── I7265_EditorialDecisions.php │ │ ├── I7286_BatchesMigration.php │ │ ├── I7287_RemoveEmailTemplatesDefault.php │ │ ├── I7366_UpdateUserAPIKeySettings.php │ │ ├── I7463_LocaleColumn.php │ │ ├── I7474_UpdateMimetypes.php │ │ ├── I7486_RemoveItemViewsTable.php │ │ ├── I7486_RenameUnconsideredColumnToConsidered.php │ │ ├── I7592_RemoveUnusedEmailTemplates.php │ │ ├── I7624_StrftimeDeprecation.php │ │ ├── I7725_DecisionConstantsUpdate.php │ │ ├── I7874_NotificationMetadataModifiedRemove.php │ │ ├── I8060_UpdateUserLocalesDefaultToEmptyArrayFromNull.php │ │ ├── I8073_RemoveNotesWithoutQueriesAndRelatedObjects.php │ │ ├── I8093_UpdateUserGroupRelationTablesFK.php │ │ ├── I8151_ExtendSettingValues.php │ │ ├── I8508_ConvertCurrentLogFile.php │ │ ├── I8592_SiteNotificationSubscriptions.php │ │ ├── I8866_DispatchRegionCodesFixingJobs.php │ │ ├── I8933_EventLogLocalized.php │ │ ├── I8992_FixEmptyUrlPaths.php │ │ ├── I9039_DropDeprecatedFields.php │ │ ├── I9040_DropSettingType.php │ │ ├── I9136_MigrateUniqueSiteId.php │ │ ├── I9535_FixEmptyFileStage.php │ │ ├── I9627_AddUsageStatsTemporaryTablesIndexes.php │ │ ├── I9822_ChangeUsageStatsTemporaryTablesIndexes.php │ │ ├── I9830_FixEmptyUserLocales.php │ │ ├── InstallEmailTemplates.php │ │ ├── MergeLocalesMigration.php │ │ ├── PKPI7014_DoiMigration.php │ │ ├── PreflightCheckMigration.php │ │ ├── UpgradeMigration.php │ │ └── jobs │ │ │ └── FixRegionCodes.php │ │ ├── v3_5_0 │ │ ├── COA75_AddUserRoleEndEmail.php │ │ ├── FilterClassNames.php │ │ ├── I10041_UserGroupsAndUserUserGroupsMastheadValues.php │ │ ├── I10292_RemoveControlledVocabEntrySettingType.php │ │ ├── I10292_UpdateControlledVocabAssocId.php │ │ ├── I10292_UpdateControlledVocabEntrySettingName.php │ │ ├── I10359_DateConsideredToReviewAssignments.php │ │ ├── I10362_EventLogEditorNames.php │ │ ├── I10620_EditorialBoardMemberRole.php │ │ ├── I10738_RemoveInvalidUserGroups.php │ │ ├── I10759_AddReviewAssignmentSettings.php │ │ ├── I10819_OrcidOauthScopeMail.php │ │ ├── I11125_UpdateEmailTemplateVariables.php │ │ ├── I11238_PrepareDBForStructuredCitations.php │ │ ├── I11603_AddMissingUserRoleAssignmentInvitationEmail.php │ │ ├── I11673_AddMissingApprovalToReviewerSuggestion.php │ │ ├── I4787_AddReviewSuggestionHelp.php │ │ ├── I4787_InstallReviewerSuggestion.php │ │ ├── I5504_UserGroupsSettings.php │ │ ├── I5885_RenameReviewReminderSettingsName.php │ │ ├── I7135_CreateAuthorAffiliationsTables.php │ │ ├── I7135_CreateNewRorRegistryCacheTables.php │ │ ├── I8333_AddMissingForeignKeys.php │ │ ├── I9197_MigrateAccessKeys.php │ │ ├── I9253_SiteAnnouncements.php │ │ ├── I9262_Highlights.php │ │ ├── I9425_SeparateUIAndSubmissionLocales.php │ │ ├── I9462_UserUserGroupsStartEndDate.php │ │ ├── I9552_UserGroupsMasthead.php │ │ ├── I9566_SessionUpgrade.php │ │ ├── I9566_UserRememberToken.php │ │ ├── I9678_RemoveScheduledTasksTable.php │ │ ├── I9707_WeblateUILocales.php │ │ ├── I9709_UserUserGroupsMasthead.php │ │ ├── I9771_OrcidMigration.php │ │ ├── I9809_ReviewCancelDate.php │ │ ├── I9860_EditorialMastheadNavMenuItem.php │ │ ├── I9895_AddAppKeyToConfigFile.php │ │ ├── I9937_EditorialTeamToEditorialHistory.php │ │ ├── InstallEmailTemplates.php │ │ └── PreflightCheckMigration.php │ │ └── v3_6_0 │ │ ├── I10403_EmailTemplateUserGroupAccess.php │ │ ├── I10404_UpdateCategoryImageNameFields.php │ │ ├── I10406_EditorialTasks.php │ │ ├── I11326_UserComments.php │ │ ├── I11701_Notes.php │ │ ├── I11702_ExtendTasks.php │ │ ├── I11754_TaskTemplateEnhancements.php │ │ ├── I11779_UseEmailTemplateKeyOnEditTaskTemplates.php │ │ ├── I11913_AssociatePublicationsWithReviewRounds.php │ │ ├── I11917_TaskTemplateDueDate.php │ │ ├── I12046_AssignMachineReadableRecommendationType.php │ │ ├── I12049_AddPublishReviewCurateSupport.php │ │ ├── I12108_RestrictEditTemplatesToUserGroups.php │ │ ├── I4860_MigratePublicationAddCreatedAt.php │ │ ├── I4860_MigratePublicationVersion.php │ │ ├── I4860_MigratePublicationVersionSourcePublicationId.php │ │ ├── I857_ContributorRolesTypes.php │ │ ├── I857_CreditRoles.php │ │ ├── I8920_ReplaceSearchEngine.php │ │ └── PreflightCheckMigration.php ├── navigationMenu │ ├── NavigationMenu.php │ ├── NavigationMenuDAO.php │ ├── NavigationMenuItem.php │ ├── NavigationMenuItemAssignment.php │ ├── NavigationMenuItemAssignmentDAO.php │ └── NavigationMenuItemDAO.php ├── note │ ├── Note.php │ └── Repository.php ├── notification │ ├── INotificationInfoProvider.php │ ├── Notification.php │ ├── NotificationManagerDelegate.php │ ├── NotificationSettingsDAO.php │ ├── NotificationSubscriptionSettingsDAO.php │ ├── PKPNotificationManager.php │ ├── PKPNotificationOperationManager.php │ ├── Repository.php │ ├── form │ │ ├── PKPNotificationSettingsForm.php │ │ └── PKPNotificationsUnsubscribeForm.php │ └── managerDelegate │ │ ├── AnnouncementNotificationManager.php │ │ ├── EditorAssignmentNotificationManager.php │ │ ├── EditorDecisionNotificationManager.php │ │ ├── EditorialReportNotificationManager.php │ │ ├── PKPApproveSubmissionNotificationManager.php │ │ ├── PKPEditingProductionStatusNotificationManager.php │ │ ├── PendingRevisionsNotificationManager.php │ │ ├── QueryNotificationManager.php │ │ └── SubmissionNotificationManager.php ├── oai │ ├── OAI.php │ ├── OAIConfig.php │ ├── OAIIdentifier.php │ ├── OAIMetadataFormat.php │ ├── OAIRecord.php │ ├── OAIRepository.php │ ├── OAIResumptionToken.php │ ├── OAISet.php │ ├── OAIUtils.php │ └── PKPOAIDAO.php ├── observers │ ├── events │ │ ├── BatchMetadataChanged.php │ │ ├── DecisionAdded.php │ │ ├── MessageSendingFromContext.php │ │ ├── MessageSendingFromSite.php │ │ ├── MetadataChanged.php │ │ ├── PluginSettingChanged.php │ │ ├── PublicationPublished.php │ │ ├── PublicationUnpublished.php │ │ ├── SubmissionDeleted.php │ │ ├── SubmissionFileDeleted.php │ │ ├── SubmissionSubmitted.php │ │ ├── UsageEvent.php │ │ ├── UserRegisteredContext.php │ │ └── UserRegisteredSite.php │ └── listeners │ │ ├── AssignDOIs.php │ │ ├── AssignEditors.php │ │ ├── LogSubmissionSubmitted.php │ │ ├── LogUsageEvent.php │ │ ├── RestrictAuthorAssignment.php │ │ ├── SendAuthorOrcidEmail.php │ │ ├── SendSubmissionAcknowledgement.php │ │ ├── SendSubmissionToOrcid.php │ │ ├── UpdateAuthorStageAssignments.php │ │ ├── UpdateSubmissionInSearchIndex.php │ │ ├── ValidateRegisteredEmail.php │ │ └── VersionDois.php ├── orcid │ ├── OrcidManager.php │ ├── PKPOrcidWork.php │ ├── actions │ │ ├── AuthorizeUserData.php │ │ ├── PKPSendReviewToOrcid.php │ │ ├── PKPSendSubmissionToOrcid.php │ │ └── VerifyIdentityWithOrcid.php │ ├── enums │ │ └── OrcidDepositType.php │ └── traits │ │ └── HasOrcid.php ├── payment │ ├── CompletedPayment.php │ ├── Payment.php │ ├── PaymentManager.php │ ├── QueuedPayment.php │ └── QueuedPaymentDAO.php ├── plugins │ ├── BlockPlugin.php │ ├── GalleryPlugin.php │ ├── GatewayPlugin.php │ ├── GenericPlugin.php │ ├── Hook.php │ ├── IPKPDoiRegistrationAgency.php │ ├── ImportExportPlugin.php │ ├── LazyLoadPlugin.php │ ├── MetadataPlugin.php │ ├── OAIMetadataFormatPlugin.php │ ├── PKPPubIdPlugin.php │ ├── PKPPubIdPluginDAO.php │ ├── PKPPubIdPluginHelper.php │ ├── PKPViewableFilePlugin.php │ ├── PaymethodPlugin.php │ ├── Plugin.php │ ├── PluginGalleryDAO.php │ ├── PluginHelper.php │ ├── PluginRegistry.php │ ├── PluginSettingsDAO.php │ ├── ReportPlugin.php │ ├── ThemePlugin.php │ ├── importexport │ │ ├── PKPImportExportDeployment.php │ │ └── PKPImportExportFilter.php │ └── interfaces │ │ ├── HasAuthorizationPolicy.php │ │ └── HasTaskScheduler.php ├── proxy │ └── ProxyParser.php ├── publication │ ├── Collector.php │ ├── DAO.php │ ├── PKPPublication.php │ ├── PublicationCategory.php │ ├── Repository.php │ ├── helpers │ │ ├── PublicationVersionInfo.php │ │ └── PublicationVersionInfoResource.php │ └── maps │ │ └── Schema.php ├── queue │ ├── JobRunner.php │ └── WorkerConfiguration.php ├── reviewForm │ ├── ReviewForm.php │ ├── ReviewFormDAO.php │ ├── ReviewFormElement.php │ ├── ReviewFormElementDAO.php │ ├── ReviewFormResponse.php │ └── ReviewFormResponseDAO.php ├── ror │ ├── Collector.php │ ├── DAO.php │ ├── Repository.php │ ├── Ror.php │ └── maps │ │ └── Schema.php ├── scheduledTask │ ├── PKPScheduler.php │ ├── ScheduleTaskRunner.php │ ├── ScheduledTask.php │ └── ScheduledTaskHelper.php ├── search │ ├── SubmissionSearchResult.php │ ├── engines │ │ ├── DatabaseEngine.php │ │ └── OpenSearchEngine.php │ └── parsers │ │ ├── SearchFileParser.php │ │ ├── SearchHTMLParser.php │ │ └── SearchHelperParser.php ├── section │ ├── Collector.php │ ├── DAO.php │ ├── PKPSection.php │ ├── Repository.php │ └── maps │ │ └── Schema.php ├── security │ ├── Role.php │ ├── RoleDAO.php │ ├── Validation.php │ └── authorization │ │ ├── AllowedHostsPolicy.php │ │ ├── AnonymousUserPolicy.php │ │ ├── AssignedStageRoleHandlerOperationPolicy.php │ │ ├── AuthorDashboardAccessPolicy.php │ │ ├── AuthorizationDecisionManager.php │ │ ├── AuthorizationPolicy.php │ │ ├── CanAccessSettingsPolicy.php │ │ ├── ContextAccessPolicy.php │ │ ├── ContextRequiredPolicy.php │ │ ├── DataObjectRequiredPolicy.php │ │ ├── DecisionWritePolicy.php │ │ ├── DoisEnabledPolicy.php │ │ ├── HandlerOperationPolicy.php │ │ ├── HttpsPolicy.php │ │ ├── NoteAccessPolicy.php │ │ ├── PKPPublicAccessPolicy.php │ │ ├── PKPSiteAccessPolicy.php │ │ ├── PluginAccessPolicy.php │ │ ├── PolicySet.php │ │ ├── PublicReviewsEnabledPolicy.php │ │ ├── PublicationAccessPolicy.php │ │ ├── PublicationWritePolicy.php │ │ ├── QueryAccessPolicy.php │ │ ├── QueryWorkflowStageAccessPolicy.php │ │ ├── QueryWritePolicy.php │ │ ├── RestrictedSiteAccessPolicy.php │ │ ├── ReviewAssignmentFileWritePolicy.php │ │ ├── ReviewStageAccessPolicy.php │ │ ├── RoleBasedHandlerOperationPolicy.php │ │ ├── StageRolePolicy.php │ │ ├── SubmissionAccessPolicy.php │ │ ├── SubmissionFileAccessPolicy.php │ │ ├── UserRequiredPolicy.php │ │ ├── UserRolesRequiredPolicy.php │ │ ├── WorkflowStageAccessPolicy.php │ │ └── internal │ │ ├── ContextPolicy.php │ │ ├── DecisionAllowedPolicy.php │ │ ├── DecisionStageValidPolicy.php │ │ ├── DecisionTypeRequiredPolicy.php │ │ ├── PluginLevelRequiredPolicy.php │ │ ├── PluginRequiredPolicy.php │ │ ├── PublicationCanBeEditedPolicy.php │ │ ├── PublicationIsSubmissionPolicy.php │ │ ├── PublicationRequiredPolicy.php │ │ ├── QueryAssignedToUserAccessPolicy.php │ │ ├── QueryRequiredPolicy.php │ │ ├── QueryUserAccessibleWorkflowStageRequiredPolicy.php │ │ ├── RepresentationRequiredPolicy.php │ │ ├── RepresentationUploadAccessPolicy.php │ │ ├── ReviewAssignmentAccessPolicy.php │ │ ├── ReviewAssignmentRequiredPolicy.php │ │ ├── ReviewRoundRequiredPolicy.php │ │ ├── SubmissionAuthorPolicy.php │ │ ├── SubmissionCompletePolicy.php │ │ ├── SubmissionFileAssignedQueryAccessPolicy.php │ │ ├── SubmissionFileAssignedReviewerAccessPolicy.php │ │ ├── SubmissionFileAuthorEditorPolicy.php │ │ ├── SubmissionFileBaseAccessPolicy.php │ │ ├── SubmissionFileMatchesSubmissionPolicy.php │ │ ├── SubmissionFileMatchesWorkflowStageIdPolicy.php │ │ ├── SubmissionFileNotQueryAccessPolicy.php │ │ ├── SubmissionFileRequestedRevisionRequiredPolicy.php │ │ ├── SubmissionFileStageAccessPolicy.php │ │ ├── SubmissionFileStageRequiredPolicy.php │ │ ├── SubmissionFileUploaderAccessPolicy.php │ │ ├── SubmissionIncompletePolicy.php │ │ ├── SubmissionRequiredPolicy.php │ │ ├── UserAccessibleWorkflowStagePolicy.php │ │ ├── UserAccessibleWorkflowStageRequiredPolicy.php │ │ └── WorkflowStageRequiredPolicy.php ├── services │ ├── PKPContextService.php │ ├── PKPFileService.php │ ├── PKPNavigationMenuService.php │ ├── PKPSchemaService.php │ ├── PKPSiteService.php │ ├── PKPStatsContextService.php │ ├── PKPStatsEditorialService.php │ ├── PKPStatsGeoService.php │ ├── PKPStatsPublicationService.php │ ├── PKPStatsServiceTrait.php │ ├── PKPStatsSushiService.php │ ├── interfaces │ │ ├── EntityPropertyInterface.php │ │ ├── EntityReadInterface.php │ │ └── EntityWriteInterface.php │ └── queryBuilders │ │ ├── PKPContextQueryBuilder.php │ │ ├── PKPStatsContextQueryBuilder.php │ │ ├── PKPStatsEditorialQueryBuilder.php │ │ ├── PKPStatsGeoQueryBuilder.php │ │ ├── PKPStatsPublicationQueryBuilder.php │ │ ├── PKPStatsQueryBuilder.php │ │ ├── PKPStatsSushiQueryBuilder.php │ │ └── interfaces │ │ └── EntityQueryBuilderInterface.php ├── site │ ├── Site.php │ ├── SiteDAO.php │ ├── Version.php │ ├── VersionCheck.php │ └── VersionDAO.php ├── stageAssignment │ ├── Repository.php │ └── StageAssignment.php ├── statistics │ ├── PKPStatisticsHelper.php │ ├── PKPTemporaryItemInvestigationsDAO.php │ ├── PKPTemporaryItemRequestsDAO.php │ ├── PKPTemporaryTotalsDAO.php │ └── TemporaryInstitutionsDAO.php ├── submission │ ├── Collector.php │ ├── DAO.php │ ├── DashboardView.php │ ├── Genre.php │ ├── GenreDAO.php │ ├── PKPSubmission.php │ ├── Repository.php │ ├── Representation.php │ ├── RepresentationDAOInterface.php │ ├── ReviewFilesDAO.php │ ├── SubmissionComment.php │ ├── SubmissionCommentDAO.php │ ├── ViewsCount.php │ ├── action │ │ └── EditorAction.php │ ├── maps │ │ └── Schema.php │ ├── reviewAssignment │ │ ├── Collector.php │ │ ├── DAO.php │ │ ├── Repository.php │ │ ├── ReviewAssignment.php │ │ └── maps │ │ │ └── Schema.php │ ├── reviewRound │ │ ├── ReviewRound.php │ │ └── ReviewRoundDAO.php │ ├── reviewer │ │ ├── ReviewerAction.php │ │ ├── form │ │ │ ├── PKPReviewerReviewStep1Form.php │ │ │ ├── PKPReviewerReviewStep2Form.php │ │ │ ├── PKPReviewerReviewStep3Form.php │ │ │ └── ReviewerReviewForm.php │ │ ├── recommendation │ │ │ ├── RecommendationOption.php │ │ │ ├── Repository.php │ │ │ ├── ReviewerRecommendation.php │ │ │ └── enums │ │ │ │ └── ReviewerRecommendationType.php │ │ └── suggestion │ │ │ └── ReviewerSuggestion.php │ └── traits │ │ └── HasWordCountValidation.php ├── submissionFile │ ├── Collector.php │ ├── DAO.php │ ├── Repository.php │ ├── SubmissionFile.php │ ├── exceptions │ │ └── UnableToCreateFileContentException.php │ └── maps │ │ └── Schema.php ├── sushi │ ├── CounterR5Report.php │ └── SushiException.php ├── task │ ├── DepositDois.php │ ├── EditorialReminders.php │ ├── FileLoader.php │ ├── PKPUsageStatsLoader.php │ ├── ProcessQueueJobs.php │ ├── PublishSubmissions.php │ ├── RemoveExpiredInvitations.php │ ├── RemoveFailedJobs.php │ ├── RemoveUnvalidatedExpiredUsers.php │ ├── ReviewReminder.php │ ├── StatisticsReport.php │ ├── UpdateIPGeoDB.php │ └── UpdateRorRegistryDataset.php ├── template │ ├── PKPTemplateManager.php │ ├── PKPTemplateResource.php │ └── ViewHelper.php ├── tombstone │ ├── DataObjectTombstone.php │ ├── DataObjectTombstoneDAO.php │ └── DataObjectTombstoneSettingsDAO.php ├── user │ ├── Collector.php │ ├── DAO.php │ ├── Report.php │ ├── Repository.php │ ├── User.php │ ├── enums │ │ └── UserMastheadStatus.php │ ├── form │ │ ├── APIProfileForm.php │ │ ├── BaseProfileForm.php │ │ ├── ChangePasswordForm.php │ │ ├── ContactForm.php │ │ ├── IdentityForm.php │ │ ├── LoginChangePasswordForm.php │ │ ├── PublicProfileForm.php │ │ ├── RegistrationForm.php │ │ ├── ResetPasswordForm.php │ │ ├── RolesForm.php │ │ └── UserFormHelper.php │ ├── interest │ │ ├── Repository.php │ │ └── UserInterest.php │ └── maps │ │ └── Schema.php ├── userComment │ ├── Repository.php │ ├── UserComment.php │ └── relationships │ │ └── UserCommentReport.php ├── userGroup │ ├── Repository.php │ ├── UserGroup.php │ ├── maps │ │ └── Schema.php │ └── relationships │ │ ├── UserGroupStage.php │ │ ├── UserUserGroup.php │ │ └── enums │ │ └── UserUserGroupStatus.php ├── validation │ ├── MultilingualInput.php │ ├── Validator.php │ ├── ValidatorControlledVocab.php │ ├── ValidatorDateComparison.php │ ├── ValidatorEmail.php │ ├── ValidatorFactory.php │ ├── ValidatorISSN.php │ ├── ValidatorORCID.php │ ├── ValidatorRegExp.php │ ├── ValidatorTypeDescription.php │ ├── ValidatorUrl.php │ ├── enums │ │ └── DateComparisonRule.php │ └── traits │ │ └── HasMultilingualRule.php ├── view │ └── components │ │ └── .gitkeep ├── workflow │ └── WorkflowStageDAO.php ├── xml │ ├── PKPXMLParser.php │ ├── XMLNode.php │ ├── XMLParserDOMHandler.php │ └── XMLParserHandler.php └── xslt │ ├── XMLTypeDescription.php │ ├── XSLTransformationFilter.php │ └── XSLTransformer.php ├── composer.json ├── composer.lock ├── controllers ├── api │ ├── file │ │ ├── FileApiHandler.php │ │ ├── PKPManageFileApiHandler.php │ │ └── linkAction │ │ │ ├── AddFileLinkAction.php │ │ │ ├── AddRevisionLinkAction.php │ │ │ ├── BaseAddFileLinkAction.php │ │ │ ├── DeleteFileLinkAction.php │ │ │ ├── DownloadFileLinkAction.php │ │ │ ├── DownloadLibraryFileLinkAction.php │ │ │ ├── EditFileLinkAction.php │ │ │ └── FileLinkAction.php │ ├── task │ │ ├── SendReminderLinkAction.php │ │ └── SendThankYouLinkAction.php │ └── user │ │ └── UserApiHandler.php ├── confirmationModal │ └── linkAction │ │ ├── ViewCompetingInterestGuidelinesLinkAction.php │ │ └── ViewReviewGuidelinesLinkAction.php ├── grid │ ├── admin │ │ ├── context │ │ │ ├── ContextGridCellProvider.php │ │ │ ├── ContextGridHandler.php │ │ │ └── ContextGridRow.php │ │ ├── languages │ │ │ └── AdminLanguageGridHandler.php │ │ └── plugins │ │ │ └── AdminPluginGridHandler.php │ ├── announcements │ │ ├── AnnouncementTypeGridCellProvider.php │ │ ├── AnnouncementTypeGridHandler.php │ │ ├── AnnouncementTypeGridRow.php │ │ └── form │ │ │ └── AnnouncementTypeForm.php │ ├── eventLog │ │ ├── EventLogGridCellProvider.php │ │ ├── EventLogGridRow.php │ │ ├── SubmissionEventLogGridHandler.php │ │ ├── SubmissionFileEventLogGridHandler.php │ │ └── linkAction │ │ │ └── EmailLinkAction.php │ ├── files │ │ ├── FileDateGridColumn.php │ │ ├── FileNameGridColumn.php │ │ ├── FilesGridDataProvider.php │ │ ├── LibraryFileGridCategoryRow.php │ │ ├── LibraryFileGridCellProvider.php │ │ ├── LibraryFileGridHandler.php │ │ ├── LibraryFileGridRow.php │ │ ├── SelectableLibraryFileGridHandler.php │ │ ├── SelectableSubmissionFileListCategoryGridHandler.php │ │ ├── SelectableSubmissionFileListCategoryGridRow.php │ │ ├── SubmissionFilesCategoryGridDataProvider.php │ │ ├── SubmissionFilesGridDataProvider.php │ │ ├── SubmissionFilesGridHandler.php │ │ ├── SubmissionFilesGridRow.php │ │ ├── attachment │ │ │ ├── AuthorOpenReviewAttachmentsGridHandler.php │ │ │ ├── AuthorReviewAttachmentsGridHandler.php │ │ │ ├── EditorReviewAttachmentsGridHandler.php │ │ │ ├── ReviewerReviewAttachmentGridDataProvider.php │ │ │ └── ReviewerReviewAttachmentsGridHandler.php │ │ ├── copyedit │ │ │ ├── CopyeditFilesGridDataProvider.php │ │ │ ├── CopyeditFilesGridHandler.php │ │ │ ├── ManageCopyeditFilesGridHandler.php │ │ │ └── form │ │ │ │ └── ManageCopyeditFilesForm.php │ │ ├── dependent │ │ │ ├── DependentFilesGridDataProvider.php │ │ │ └── DependentFilesGridHandler.php │ │ ├── fileList │ │ │ ├── FileGenreGridColumn.php │ │ │ ├── FileListGridHandler.php │ │ │ ├── SelectableFileListGridHandler.php │ │ │ └── linkAction │ │ │ │ ├── DownloadAllLinkAction.php │ │ │ │ ├── SelectFilesLinkAction.php │ │ │ │ └── SelectReviewFilesLinkAction.php │ │ ├── final │ │ │ ├── FinalDraftFilesGridDataProvider.php │ │ │ ├── FinalDraftFilesGridHandler.php │ │ │ ├── ManageFinalDraftFilesGridHandler.php │ │ │ └── form │ │ │ │ └── ManageFinalDraftFilesForm.php │ │ ├── form │ │ │ ├── LibraryFileForm.php │ │ │ └── ManageSubmissionFilesForm.php │ │ ├── productionReady │ │ │ └── ProductionReadyFilesGridHandler.php │ │ ├── proof │ │ │ ├── ManageProofFilesGridHandler.php │ │ │ └── form │ │ │ │ └── ManageProofFilesForm.php │ │ ├── query │ │ │ ├── ManageQueryNoteFilesGridHandler.php │ │ │ ├── QueryNoteFilesCategoryGridDataProvider.php │ │ │ ├── QueryNoteFilesGridDataProvider.php │ │ │ ├── QueryNoteFilesGridHandler.php │ │ │ └── form │ │ │ │ └── ManageQueryNoteFilesForm.php │ │ ├── review │ │ │ ├── AuthorReviewRevisionsGridHandler.php │ │ │ ├── EditorReviewFilesGridHandler.php │ │ │ ├── LimitReviewFilesGridHandler.php │ │ │ ├── ManageReviewFilesGridHandler.php │ │ │ ├── ReviewCategoryGridDataProvider.php │ │ │ ├── ReviewGridDataProvider.php │ │ │ ├── ReviewRevisionsGridDataProvider.php │ │ │ ├── ReviewerReviewFilesGridDataProvider.php │ │ │ ├── ReviewerReviewFilesGridHandler.php │ │ │ ├── WorkflowReviewRevisionsGridHandler.php │ │ │ └── form │ │ │ │ └── ManageReviewFilesForm.php │ │ ├── submission │ │ │ ├── AuthorSubmissionDetailsFilesGridHandler.php │ │ │ └── EditorSubmissionDetailsFilesGridHandler.php │ │ └── submissionDocuments │ │ │ ├── SubmissionDocumentsFilesGridDataProvider.php │ │ │ ├── SubmissionDocumentsFilesGridHandler.php │ │ │ └── form │ │ │ ├── EditLibraryFileForm.php │ │ │ └── NewLibraryFileForm.php │ ├── languages │ │ ├── LanguageGridCellProvider.php │ │ ├── LanguageGridHandler.php │ │ ├── LanguageGridRow.php │ │ └── form │ │ │ ├── AddLanguageForm.php │ │ │ └── InstallLanguageForm.php │ ├── navigationMenus │ │ ├── NavigationMenuItemsGridCellProvider.php │ │ ├── NavigationMenuItemsGridHandler.php │ │ ├── NavigationMenuItemsGridRow.php │ │ ├── NavigationMenusGridCellProvider.php │ │ ├── NavigationMenusGridHandler.php │ │ ├── NavigationMenusGridRow.php │ │ └── form │ │ │ ├── NavigationMenuForm.php │ │ │ └── PKPNavigationMenuItemsForm.php │ ├── notifications │ │ ├── NotificationsGridCellProvider.php │ │ ├── NotificationsGridHandler.php │ │ └── TaskNotificationsGridHandler.php │ ├── plugins │ │ ├── PluginCategoryGridRow.php │ │ ├── PluginGalleryGridCellProvider.php │ │ ├── PluginGalleryGridHandler.php │ │ ├── PluginGridCellProvider.php │ │ ├── PluginGridRow.php │ │ └── form │ │ │ └── UploadPluginForm.php │ ├── pubIds │ │ └── form │ │ │ └── PKPAssignPublicIdentifiersForm.php │ ├── queries │ │ ├── QueriesAccessHelper.php │ │ ├── QueriesGridCellProvider.php │ │ ├── QueriesGridHandler.php │ │ ├── QueriesGridRow.php │ │ ├── QueryNotesGridCellProvider.php │ │ ├── QueryNotesGridHandler.php │ │ ├── QueryNotesGridRow.php │ │ ├── QueryTitleGridColumn.php │ │ ├── form │ │ │ ├── QueryForm.php │ │ │ └── QueryNoteForm.php │ │ └── traits │ │ │ └── StageMailable.php │ ├── settings │ │ ├── SetupGridHandler.php │ │ ├── genre │ │ │ ├── GenreGridHandler.php │ │ │ ├── GenreGridRow.php │ │ │ └── form │ │ │ │ └── GenreForm.php │ │ ├── languages │ │ │ ├── ManageLanguageGridHandler.php │ │ │ └── SubmissionLanguageGridHandler.php │ │ ├── library │ │ │ ├── LibraryFileAdminGridDataProvider.php │ │ │ ├── LibraryFileAdminGridHandler.php │ │ │ └── form │ │ │ │ ├── EditLibraryFileForm.php │ │ │ │ └── NewLibraryFileForm.php │ │ ├── reviewForms │ │ │ ├── ReviewFormElementGridCellProvider.php │ │ │ ├── ReviewFormElementGridRow.php │ │ │ ├── ReviewFormElementsGridHandler.php │ │ │ ├── ReviewFormGridCellProvider.php │ │ │ ├── ReviewFormGridHandler.php │ │ │ ├── ReviewFormGridRow.php │ │ │ └── form │ │ │ │ ├── PreviewReviewForm.php │ │ │ │ ├── ReviewFormElementForm.php │ │ │ │ ├── ReviewFormElements.php │ │ │ │ └── ReviewFormForm.php │ │ ├── roles │ │ │ ├── UserGroupGridCellProvider.php │ │ │ ├── UserGroupGridHandler.php │ │ │ ├── UserGroupGridRow.php │ │ │ └── form │ │ │ │ └── UserGroupForm.php │ │ ├── sections │ │ │ └── form │ │ │ │ └── PKPSectionForm.php │ │ └── user │ │ │ ├── UserGridHandler.php │ │ │ ├── UserGridRow.php │ │ │ └── form │ │ │ ├── UserDetailsForm.php │ │ │ ├── UserDisableForm.php │ │ │ ├── UserEmailForm.php │ │ │ ├── UserForm.php │ │ │ └── UserRoleForm.php │ └── users │ │ ├── author │ │ ├── AuthorGridHandler.php │ │ ├── AuthorGridRow.php │ │ ├── PKPAuthorGridCellProvider.php │ │ └── form │ │ │ └── PKPAuthorForm.php │ │ ├── exportableUsers │ │ └── ExportableUsersGridHandler.php │ │ ├── reviewer │ │ ├── AuthorReviewerGridCellProvider.php │ │ ├── AuthorReviewerGridHandler.php │ │ ├── AuthorReviewerGridRow.php │ │ ├── ReviewerGridCellProvider.php │ │ ├── ReviewerGridRow.php │ │ └── form │ │ │ ├── AdvancedSearchReviewerForm.php │ │ │ ├── CreateReviewerForm.php │ │ │ ├── EditReviewForm.php │ │ │ ├── EmailReviewerForm.php │ │ │ ├── EnrollExistingReviewerForm.php │ │ │ ├── ReinstateReviewerForm.php │ │ │ ├── ResendRequestReviewerForm.php │ │ │ ├── ReviewReminderForm.php │ │ │ ├── ReviewerForm.php │ │ │ ├── ReviewerGossipForm.php │ │ │ ├── ReviewerNotifyActionForm.php │ │ │ ├── ThankReviewerForm.php │ │ │ ├── UnassignReviewerForm.php │ │ │ └── traits │ │ │ └── HasReviewDueDate.php │ │ ├── stageParticipant │ │ ├── StageParticipantGridCategoryRow.php │ │ ├── StageParticipantGridCellProvider.php │ │ ├── StageParticipantGridHandler.php │ │ ├── StageParticipantGridRow.php │ │ ├── form │ │ │ ├── AddParticipantForm.php │ │ │ └── PKPStageParticipantNotifyForm.php │ │ └── linkAction │ │ │ └── NotifyLinkAction.php │ │ └── userSelect │ │ ├── UserSelectGridCellProvider.php │ │ └── UserSelectGridHandler.php ├── informationCenter │ ├── FileInformationCenterHandler.php │ ├── InformationCenterHandler.php │ ├── SubmissionInformationCenterHandler.php │ ├── form │ │ ├── NewFileNoteForm.php │ │ ├── NewNoteForm.php │ │ └── NewSubmissionNoteForm.php │ └── linkAction │ │ └── FileInfoCenterLinkAction.php ├── listbuilder │ ├── settings │ │ ├── SetupListbuilderHandler.php │ │ └── reviewForms │ │ │ ├── ReviewFormElementResponseItemListbuilderGridCellProvider.php │ │ │ └── ReviewFormElementResponseItemListbuilderHandler.php │ └── users │ │ └── UserListbuilderGridCellProvider.php ├── modals │ ├── documentLibrary │ │ └── DocumentLibraryHandler.php │ ├── publish │ │ └── PublishHandler.php │ ├── review │ │ └── ReviewerViewMetadataLinkAction.php │ └── submission │ │ └── ViewSubmissionMetadataHandler.php ├── page │ └── PageHandler.php ├── review │ └── linkAction │ │ ├── ReviewNotesLinkAction.php │ │ └── UnconsiderReviewLinkAction.php ├── tab │ ├── pubIds │ │ └── form │ │ │ └── PKPPublicIdentifiersForm.php │ └── user │ │ └── ProfileTabHandler.php └── wizard │ └── fileUpload │ ├── FileUploadWizardHandler.php │ └── form │ ├── PKPSubmissionFilesUploadBaseForm.php │ ├── SubmissionFilesMetadataForm.php │ └── SubmissionFilesUploadForm.php ├── cypress ├── plugins │ └── index.js ├── support │ ├── api.js │ ├── command_reviewer_suggestion.js │ ├── commands.js │ └── commands_orcid.js └── tests │ └── integration │ ├── API.cy.js │ ├── Announcements.cy.js │ ├── Categories.cy.js │ ├── DataAvailabilityStatements.cy.js │ ├── Filenames.cy.js │ ├── Jobs.cy.js │ ├── Multilingual.cy.js │ ├── NativeXmlImportExportSubmission.cy.js │ ├── emailTenplates │ └── EmailTemplates.cy.js │ ├── oai │ └── DC.cy.js │ ├── orcid │ └── Orcid.cy.js │ └── publicComents │ └── PublicComments.cy.js ├── dtd ├── bic21qualifiers.dtd ├── bic21subjects.dtd ├── emailTemplates.dtd ├── filterConfig.dtd ├── genres.dtd ├── install.dtd ├── navigationMenus.dtd ├── pluginSettings.dtd ├── pluginVersion.dtd ├── userGroups.dtd ├── version.dtd ├── xmlData.dtd └── xmlSchema.dtd ├── includes ├── bootstrap.php └── functions.php ├── jobs ├── BaseJob.php ├── bulk │ └── BulkEmailSender.php ├── citation │ ├── CrossrefJob.php │ ├── ExtractPidsJob.php │ ├── IsProcessedJob.php │ ├── OpenAlexJob.php │ └── OrcidJob.php ├── doi │ ├── DepositContext.php │ └── DepositSubmission.php ├── email │ ├── EditorialReminder.php │ └── ReviewReminder.php ├── invitations │ └── RemoveExpiredInvitationsJob.php ├── notifications │ ├── NewAnnouncementNotifyUsers.php │ ├── StatisticsReportMail.php │ └── StatisticsReportNotify.php ├── orcid │ ├── DepositOrcidSubmission.php │ ├── RevokeOrcidToken.php │ ├── SendAuthorMail.php │ └── SendUpdateScopeMail.php ├── statistics │ ├── ArchiveUsageStatsLogFile.php │ ├── CompileContextMetrics.php │ ├── CompileMonthlyMetrics.php │ ├── CompileSubmissionMetrics.php │ ├── PKPProcessUsageStatsLogFile.php │ └── RemoveDoubleClicks.php ├── submissions │ └── UpdateSubmissionSearchJob.php └── testJobs │ ├── TestJobFailure.php │ └── TestJobSuccess.php ├── js ├── classes │ ├── Handler.js │ ├── Helper.js │ ├── ObjectProxy.js │ ├── TinyMCEHelper.js │ ├── VueRegistry.js │ ├── features │ │ ├── CollapsibleGridFeature.js │ │ ├── Feature.js │ │ ├── GeneralPagingFeature.js │ │ ├── InfiniteScrollingFeature.js │ │ ├── OrderCategoryGridItemsFeature.js │ │ ├── OrderGridItemsFeature.js │ │ ├── OrderItemsFeature.js │ │ ├── OrderListbuilderItemsFeature.js │ │ └── PagingFeature.js │ ├── linkAction │ │ ├── AjaxRequest.js │ │ ├── EventAction.js │ │ ├── LinkActionRequest.js │ │ ├── ModalRequest.js │ │ ├── NullAction.js │ │ ├── OpenWindowRequest.js │ │ ├── PostAndRedirectRequest.js │ │ └── RedirectRequest.js │ └── notification │ │ └── NotificationHelper.js ├── controllers │ ├── AutocompleteHandler.js │ ├── EditorialActionsHandler.js │ ├── ExtrasOnDemandHandler.js │ ├── MenuHandler.js │ ├── NotificationHandler.js │ ├── RevealMoreHandler.js │ ├── SiteHandler.js │ ├── TabHandler.js │ ├── UploaderHandler.js │ ├── UrlInDivHandler.js │ ├── dashboard │ │ └── form │ │ │ └── DashboardTaskFormHandler.js │ ├── form │ │ ├── AjaxFormHandler.js │ │ ├── CancelActionAjaxFormHandler.js │ │ ├── ClientFormHandler.js │ │ ├── FileUploadFormHandler.js │ │ ├── FormHandler.js │ │ ├── MultilingualInputHandler.js │ │ ├── ToggleFormHandler.js │ │ ├── UserFormHandler.js │ │ └── reviewer │ │ │ └── ReviewerReviewStep3FormHandler.js │ ├── grid │ │ ├── CategoryGridHandler.js │ │ ├── GridHandler.js │ │ ├── files │ │ │ └── review │ │ │ │ └── AuthorReviewRevisionsGridHandler.js │ │ ├── navigationMenus │ │ │ └── form │ │ │ │ ├── NavigationMenuFormHandler.js │ │ │ │ └── NavigationMenuItemsFormHandler.js │ │ ├── notifications │ │ │ └── NotificationsGridHandler.js │ │ ├── queries │ │ │ ├── QueryFormHandler.js │ │ │ └── ReadQueryHandler.js │ │ ├── representations │ │ │ └── form │ │ │ │ └── RepresentationFormHandler.js │ │ ├── settings │ │ │ ├── roles │ │ │ │ └── form │ │ │ │ │ └── UserGroupFormHandler.js │ │ │ └── user │ │ │ │ └── form │ │ │ │ └── UserDetailsFormHandler.js │ │ └── users │ │ │ ├── UserGridHandler.js │ │ │ ├── reviewer │ │ │ ├── AdvancedReviewerSearchHandler.js │ │ │ ├── ReadReviewHandler.js │ │ │ └── form │ │ │ │ ├── AddReviewerFormHandler.js │ │ │ │ └── EditReviewFormHandler.js │ │ │ └── stageParticipant │ │ │ ├── StageParticipantGridHandler.js │ │ │ └── form │ │ │ ├── AddParticipantFormHandler.js │ │ │ └── StageParticipantNotifyHandler.js │ ├── informationCenter │ │ └── NotesHandler.js │ ├── linkAction │ │ └── LinkActionHandler.js │ ├── listbuilder │ │ └── ListbuilderHandler.js │ ├── modal │ │ ├── AjaxModalHandler.js │ │ ├── ButtonConfirmationModalHandler.js │ │ ├── ConfirmationModalHandler.js │ │ ├── JsEventConfirmationModalHandler.js │ │ ├── ModalHandler.js │ │ ├── RedirectConfirmationModalHandler.js │ │ ├── RemoteActionConfirmationModalHandler.js │ │ ├── VueModalHandler.js │ │ └── WizardModalHandler.js │ └── wizard │ │ ├── WizardHandler.js │ │ └── fileUpload │ │ ├── FileUploadWizardHandler.js │ │ └── form │ │ └── FileUploadFormHandler.js ├── lib │ └── jquery │ │ └── plugins │ │ ├── jquery.cookie.js │ │ ├── jquery.equalizer.js │ │ ├── jquery.form.js │ │ ├── jquery.pkp.js │ │ ├── jquery.selectBox.min.js │ │ ├── jquery.sortElements.js │ │ ├── jquery.splitter.js │ │ ├── jquery.tag-it.js │ │ └── orbit │ │ ├── bullets.jpg │ │ ├── left-arrow.png │ │ ├── loading.gif │ │ ├── mask-black.png │ │ ├── pause-black.png │ │ ├── right-arrow.png │ │ ├── rotator-black.png │ │ └── timer-black.png ├── load.js ├── load_frontend.js ├── pages │ ├── authorDashboard │ │ └── SubmissionEmailHandler.js │ ├── header │ │ ├── HeaderHandler.js │ │ └── TasksHandler.js │ └── reviewer │ │ └── ReviewerTabHandler.js └── usage-stats-chart.js ├── lib ├── libraries.txt ├── pdfobject │ └── pdfobject.js └── regionMapping.php ├── locale ├── an │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── emails.po │ ├── grid.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── ar │ ├── admin.po │ ├── api.po │ ├── bic21qualifiers.xml │ ├── bic21subjects.xml │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── az │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── be │ ├── manager.po │ └── submission.po ├── bg │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── invitation.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ ├── user.po │ └── userAccess.po ├── bs_Latn │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── submission.po │ └── user.po ├── ca │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── ckb │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── cnr │ ├── admin.po │ ├── common.po │ ├── default.po │ ├── manager.po │ ├── reader.po │ ├── submission.po │ └── user.po ├── cs │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── invitation.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ ├── user.po │ └── userAccess.po ├── da │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ ├── user.po │ └── userAccess.po ├── de │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ ├── user.po │ └── userAccess.po ├── dsb │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── el │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── en │ ├── UserComment.po │ ├── admin.po │ ├── api.po │ ├── bic21qualifiers.xml │ ├── bic21subjects.xml │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── invitation.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ ├── sushi.po │ ├── user.po │ └── userAccess.po ├── es │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── invitation.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ ├── user.po │ └── userAccess.po ├── es_MX │ └── submission.po ├── eu │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── invitation.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ ├── user.po │ └── userAccess.po ├── fa │ ├── admin.po │ ├── api.po │ ├── bic21qualifiers.xml │ ├── bic21subjects.xml │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── fi │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── fr │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── invitation.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ ├── user.po │ └── userAccess.po ├── fr_CA │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── gd │ ├── common.po │ ├── emails.po │ ├── manager.po │ └── submission.po ├── gl │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── he │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── manager.po │ ├── reader.po │ ├── submission.po │ ├── user.po │ └── userAccess.po ├── hi │ ├── editor.po │ ├── emails.po │ ├── manager.po │ ├── reader.po │ ├── submission.po │ └── user.po ├── hr │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── hsb │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── hu │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── hy │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── id │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── is │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── it │ ├── admin.po │ ├── api.po │ ├── bic21qualifiers.xml │ ├── bic21subjects.xml │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── ja │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── ka │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── kk │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── ko │ ├── emails.po │ └── manager.po ├── ky │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── editor.po │ ├── emails.po │ └── manager.po ├── lol │ └── common.po ├── lt │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── invitation.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ ├── user.po │ └── userAccess.po ├── lv │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── mk │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── invitation.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ ├── user.po │ └── userAccess.po ├── mn │ ├── manager.po │ └── submission.po ├── mr │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── ms │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── nb_NO │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── nl │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── invitation.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ ├── user.po │ └── userAccess.po ├── pl │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── invitation.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ ├── user.po │ └── userAccess.po ├── pt │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── pt_BR │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── invitation.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ ├── user.po │ └── userAccess.po ├── ro │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── ru │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── se │ ├── admin.po │ ├── common.po │ ├── manager.po │ ├── submission.po │ └── user.po ├── sk │ ├── common.po │ ├── editor.po │ ├── emails.po │ ├── manager.po │ └── submission.po ├── sl │ ├── admin.po │ ├── api.po │ ├── bic21qualifiers.xml │ ├── bic21subjects.xml │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── sq │ └── manager.po ├── sr_Cyrl │ ├── admin.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── sr_Latn │ ├── admin.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── sv │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── invitation.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ ├── user.po │ └── userAccess.po ├── sw │ ├── admin.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── th │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── tl │ └── common.po ├── tr │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── invitation.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ ├── user.po │ └── userAccess.po ├── uk │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── invitation.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ ├── user.po │ └── userAccess.po ├── ur │ ├── submission.po │ └── user.po ├── uz │ ├── emails.po │ ├── manager.po │ ├── reviewer.po │ └── submission.po ├── uz_Latn │ ├── editor.po │ ├── emails.po │ ├── manager.po │ └── submission.po ├── vi │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── zh_Hans │ ├── admin.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po └── zh_Hant │ ├── admin.po │ ├── api.po │ ├── common.po │ ├── default.po │ ├── editor.po │ ├── emails.po │ ├── grid.po │ ├── installer.po │ ├── manager.po │ ├── reader.po │ ├── reviewer.po │ ├── submission.po │ └── user.po ├── pages ├── about │ ├── AboutContextHandler.php │ ├── AboutSiteHandler.php │ └── index.php ├── admin │ ├── AdminHandler.php │ └── index.php ├── announcement │ ├── AnnouncementHandler.php │ └── index.php ├── authorDashboard │ └── PKPAuthorDashboardHandler.php ├── catalog │ └── PKPCatalogHandler.php ├── dashboard │ ├── DashboardHandler.php │ └── PKPDashboardHandler.php ├── decision │ └── DecisionHandler.php ├── dois │ └── PKPDoisHandler.php ├── index │ └── PKPIndexHandler.php ├── install │ ├── InstallHandler.php │ └── index.php ├── invitation │ ├── InitializeInvitationUIHandler.php │ ├── InvitationHandler.php │ └── index.php ├── libraryFiles │ ├── LibraryFileHandler.php │ └── index.php ├── login │ ├── LoginHandler.php │ └── index.php ├── management │ ├── ManagementHandler.php │ └── PKPToolsHandler.php ├── navigationMenu │ ├── NavigationMenuItemHandler.php │ └── index.php ├── notification │ ├── NotificationHandler.php │ └── index.php ├── orcid │ ├── OrcidHandler.php │ └── index.php ├── reviewer │ └── PKPReviewerHandler.php ├── sitemap │ └── PKPSitemapHandler.php ├── stats │ └── PKPStatsHandler.php ├── submission │ └── PKPSubmissionHandler.php ├── submissions │ └── index.php ├── user │ ├── PKPUserHandler.php │ ├── ProfileHandler.php │ ├── RegistrationHandler.php │ └── index.php └── workflow │ └── PKPWorkflowHandler.php ├── plugins ├── generic │ └── usageEvent │ │ ├── PKPUsageEventPlugin.php │ │ ├── locale │ │ ├── ar │ │ │ └── locale.po │ │ ├── az │ │ │ └── locale.po │ │ ├── bg │ │ │ └── locale.po │ │ ├── bs_Latn │ │ │ └── locale.po │ │ ├── ca │ │ │ └── locale.po │ │ ├── ckb │ │ │ └── locale.po │ │ ├── cs │ │ │ └── locale.po │ │ ├── da │ │ │ └── locale.po │ │ ├── de │ │ │ └── locale.po │ │ ├── dsb │ │ │ └── locale.po │ │ ├── el │ │ │ └── locale.po │ │ ├── en │ │ │ └── locale.po │ │ ├── es │ │ │ └── locale.po │ │ ├── eu │ │ │ └── locale.po │ │ ├── fa │ │ │ └── locale.po │ │ ├── fi │ │ │ └── locale.po │ │ ├── fr │ │ │ └── locale.po │ │ ├── fr_CA │ │ │ └── locale.po │ │ ├── gl │ │ │ └── locale.po │ │ ├── hr │ │ │ └── locale.po │ │ ├── hsb │ │ │ └── locale.po │ │ ├── hu │ │ │ └── locale.po │ │ ├── hy │ │ │ └── locale.po │ │ ├── id │ │ │ └── locale.po │ │ ├── is │ │ │ └── locale.po │ │ ├── ja │ │ │ └── locale.po │ │ ├── ka │ │ │ └── locale.po │ │ ├── ky │ │ │ └── locale.po │ │ ├── lt │ │ │ └── locale.po │ │ ├── lv │ │ │ └── locale.po │ │ ├── mk │ │ │ └── locale.po │ │ ├── mr │ │ │ └── locale.po │ │ ├── ms │ │ │ └── locale.po │ │ ├── nb_NO │ │ │ └── locale.po │ │ ├── nl │ │ │ └── locale.po │ │ ├── pl │ │ │ └── locale.po │ │ ├── pt │ │ │ └── locale.po │ │ ├── pt_BR │ │ │ └── locale.po │ │ ├── ru │ │ │ └── locale.po │ │ ├── sl │ │ │ └── locale.po │ │ ├── sv │ │ │ └── locale.po │ │ ├── th │ │ │ └── locale.po │ │ ├── tr │ │ │ └── locale.po │ │ ├── uk │ │ │ └── locale.po │ │ ├── vi │ │ │ └── locale.po │ │ └── zh_Hant │ │ │ └── locale.po │ │ ├── settings.xml │ │ └── version.xml ├── importexport │ ├── native │ │ ├── PKPNativeImportExportCLIDeployment.php │ │ ├── PKPNativeImportExportCLIToolKit.php │ │ ├── PKPNativeImportExportDeployment.php │ │ ├── PKPNativeImportExportPlugin.php │ │ ├── filter │ │ │ ├── NativeExportFilter.php │ │ │ ├── NativeImportFilter.php │ │ │ ├── NativeXmlPKPAuthorFilter.php │ │ │ ├── NativeXmlPKPPublicationFilter.php │ │ │ ├── NativeXmlRepresentationFilter.php │ │ │ ├── NativeXmlSubmissionFileFilter.php │ │ │ ├── NativeXmlSubmissionFilter.php │ │ │ ├── PKPAuthorNativeXmlFilter.php │ │ │ ├── PKPNativeFilterHelper.php │ │ │ ├── PKPPublicationNativeXmlFilter.php │ │ │ ├── RepresentationNativeXmlFilter.php │ │ │ ├── SubmissionFileNativeXmlFilter.php │ │ │ └── SubmissionNativeXmlFilter.php │ │ └── pkp-native.xsd │ └── users │ │ ├── PKPUserImportExportDeployment.php │ │ ├── PKPUserImportExportPlugin.php │ │ ├── filter │ │ ├── NativeXmlUserGroupFilter.php │ │ ├── PKPUserUserXmlFilter.php │ │ ├── UserGroupNativeXmlFilter.php │ │ ├── UserXmlPKPUserFilter.php │ │ └── filterConfig.xml │ │ ├── index.php │ │ └── pkp-users.xsd ├── metadata │ └── dc11 │ │ ├── PKPDc11MetadataPlugin.php │ │ ├── locale │ │ ├── ar │ │ │ └── locale.po │ │ ├── az │ │ │ └── locale.po │ │ ├── bg │ │ │ └── locale.po │ │ ├── ca │ │ │ └── locale.po │ │ ├── ckb │ │ │ └── locale.po │ │ ├── cs │ │ │ └── locale.po │ │ ├── da │ │ │ └── locale.po │ │ ├── de │ │ │ └── locale.po │ │ ├── dsb │ │ │ └── locale.po │ │ ├── el │ │ │ └── locale.po │ │ ├── en │ │ │ └── locale.po │ │ ├── es │ │ │ └── locale.po │ │ ├── eu │ │ │ └── locale.po │ │ ├── fa │ │ │ └── locale.po │ │ ├── fi │ │ │ └── locale.po │ │ ├── fr │ │ │ └── locale.po │ │ ├── fr_CA │ │ │ └── locale.po │ │ ├── gl │ │ │ └── locale.po │ │ ├── he │ │ │ └── locale.po │ │ ├── hr │ │ │ └── locale.po │ │ ├── hsb │ │ │ └── locale.po │ │ ├── hu │ │ │ └── locale.po │ │ ├── hy │ │ │ └── locale.po │ │ ├── id │ │ │ └── locale.po │ │ ├── is │ │ │ └── locale.po │ │ ├── it │ │ │ └── locale.po │ │ ├── ja │ │ │ └── locale.po │ │ ├── ka │ │ │ └── locale.po │ │ ├── lt │ │ │ └── locale.po │ │ ├── lv │ │ │ └── locale.po │ │ ├── mk │ │ │ └── locale.po │ │ ├── mr │ │ │ └── locale.po │ │ ├── ms │ │ │ └── locale.po │ │ ├── nb_NO │ │ │ └── locale.po │ │ ├── nl │ │ │ └── locale.po │ │ ├── pl │ │ │ └── locale.po │ │ ├── pt │ │ │ └── locale.po │ │ ├── pt_BR │ │ │ └── locale.po │ │ ├── ru │ │ │ └── locale.po │ │ ├── sl │ │ │ └── locale.po │ │ ├── sr_Latn │ │ │ └── locale.po │ │ ├── sv │ │ │ └── locale.po │ │ ├── tr │ │ │ └── locale.po │ │ ├── uk │ │ │ └── locale.po │ │ ├── vi │ │ │ └── locale.po │ │ └── zh_Hant │ │ │ └── locale.po │ │ └── schema │ │ └── PKPDc11Schema.php └── oaiMetadataFormats │ └── dc │ ├── PKPOAIMetadataFormatPlugin_DC.php │ ├── PKPOAIMetadataFormat_DC.php │ └── locale │ ├── ar │ └── locale.po │ ├── az │ └── locale.po │ ├── bg │ └── locale.po │ ├── ca │ └── locale.po │ ├── ckb │ └── locale.po │ ├── cs │ └── locale.po │ ├── da │ └── locale.po │ ├── de │ └── locale.po │ ├── dsb │ └── locale.po │ ├── el │ └── locale.po │ ├── en │ └── locale.po │ ├── es │ └── locale.po │ ├── eu │ └── locale.po │ ├── fa │ └── locale.po │ ├── fi │ └── locale.po │ ├── fr │ └── locale.po │ ├── fr_CA │ └── locale.po │ ├── gl │ └── locale.po │ ├── hr │ └── locale.po │ ├── hsb │ └── locale.po │ ├── hu │ └── locale.po │ ├── hy │ └── locale.po │ ├── id │ └── locale.po │ ├── is │ └── locale.po │ ├── it │ └── locale.po │ ├── ja │ └── locale.po │ ├── ka │ └── locale.po │ ├── lt │ └── locale.po │ ├── lv │ └── locale.po │ ├── mk │ └── locale.po │ ├── mr │ └── locale.po │ ├── ms │ └── locale.po │ ├── nb_NO │ └── locale.po │ ├── nl │ └── locale.po │ ├── pl │ └── locale.po │ ├── pt │ └── locale.po │ ├── pt_BR │ └── locale.po │ ├── ru │ └── locale.po │ ├── sl │ └── locale.po │ ├── sr_Latn │ └── locale.po │ ├── sv │ └── locale.po │ ├── tr │ └── locale.po │ ├── uk │ └── locale.po │ ├── vi │ └── locale.po │ ├── zh_Hans │ └── locale.po │ └── zh_Hant │ └── locale.po ├── registry ├── botAgents.txt └── stopwords.txt ├── schemas ├── affiliation.json ├── announcement.json ├── author.json ├── category.json ├── citation.json ├── context.json ├── contributorRole.json ├── decision.json ├── doi.json ├── emailLog.json ├── emailTemplate.json ├── eventLog.json ├── highlight.json ├── institution.json ├── publication.json ├── reviewAssignment.json ├── reviewRound.json ├── ror.json ├── section.json ├── site.json ├── submission.json ├── submissionFile.json ├── user.json └── userGroup.json ├── styles ├── body.less ├── controllers │ ├── extrasOnDemand.less │ ├── grid │ │ ├── files │ │ │ ├── grid.less │ │ │ └── index.less │ │ ├── grid.less │ │ ├── index.less │ │ ├── notifications.less │ │ ├── plugins.less │ │ └── queries.less │ ├── index.less │ ├── informationCenter.less │ ├── listbuilder.less │ ├── modal.less │ ├── notification.less │ ├── plupload.less │ ├── revealMore.less │ └── tab.less ├── font.less ├── fontawesome.less ├── fontawesome │ ├── FontAwesome.otf │ ├── README.md │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ └── fontawesome.css ├── fonts │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-500.eot │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-500.svg │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-500.ttf │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-500.woff │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-500.woff2 │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-500italic.eot │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-500italic.svg │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-500italic.ttf │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-500italic.woff │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-500italic.woff2 │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-600.eot │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-600.svg │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-600.ttf │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-600.woff │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-600.woff2 │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-600italic.eot │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-600italic.svg │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-600italic.ttf │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-600italic.woff │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-600italic.woff2 │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-700.eot │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-700.svg │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-700.ttf │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-700.woff │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-700.woff2 │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-700italic.eot │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-700italic.svg │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-700italic.ttf │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-700italic.woff │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-700italic.woff2 │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-italic.eot │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-italic.svg │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-italic.ttf │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-italic.woff │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-italic.woff2 │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-regular.eot │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-regular.svg │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-regular.ttf │ ├── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-regular.woff │ └── noto-sans-v28-cyrillic_cyrillic-ext_devanagari_greek_greek-ext_latin_latin-ext_vietnamese-regular.woff2 ├── form │ ├── form.less │ └── index.less ├── helpers.less ├── index.less ├── linkActions.less ├── mailables │ └── style.css ├── normalize.less ├── orcid.less ├── pages │ ├── dashboard.less │ ├── index.less │ ├── settings.less │ ├── submission.less │ ├── tools.less │ └── workflow.less ├── rtl.less ├── utils.less └── variables.less ├── templates ├── admin │ ├── contextSettings.tpl │ ├── contexts.tpl │ ├── editContext.tpl │ ├── failedJobDetails.tpl │ ├── failedJobs.tpl │ ├── index.tpl │ ├── jobs.tpl │ ├── settings.tpl │ └── systemInfo.tpl ├── authorDashboard │ ├── reviewRoundInfo.tpl │ ├── submissionEmail.tpl │ └── submissionEmails.tpl ├── common │ ├── formErrors.tpl │ ├── loadingContainer.tpl │ ├── urlInEl.tpl │ ├── userDetails.tpl │ └── userDetailsReadOnly.tpl ├── components │ └── .gitkeep ├── controllers │ ├── api │ │ └── file │ │ │ └── editMetadata.tpl │ ├── extrasOnDemand.tpl │ ├── fileUploadContainer.tpl │ ├── grid │ │ ├── announcements │ │ │ └── form │ │ │ │ └── announcementTypeForm.tpl │ │ ├── columnGroup.tpl │ │ ├── common │ │ │ └── cell │ │ │ │ ├── checkMarkCell.tpl │ │ │ │ ├── radioButtonCell.tpl │ │ │ │ ├── selectStatusCell.tpl │ │ │ │ └── statusCell.tpl │ │ ├── eventLog │ │ │ └── eventLogGridFilter.tpl │ │ ├── feature │ │ │ ├── collapsibleGridFeature.tpl │ │ │ ├── featuresOptions.tpl │ │ │ ├── gridOrderFinishControls.tpl │ │ │ ├── gridOrderNonOrderableMessage.tpl │ │ │ ├── gridPaging.tpl │ │ │ └── infiniteScrolling.tpl │ │ ├── files │ │ │ ├── copyedit │ │ │ │ └── manageCopyeditFiles.tpl │ │ │ ├── filesGridFilter.tpl │ │ │ ├── final │ │ │ │ └── manageFinalDraftFiles.tpl │ │ │ ├── proof │ │ │ │ └── manageProofFiles.tpl │ │ │ ├── query │ │ │ │ └── manageQueryNoteFiles.tpl │ │ │ ├── review │ │ │ │ └── manageReviewFiles.tpl │ │ │ ├── selectableSubmissionFileListCategoryGridFilter.tpl │ │ │ └── submissionDocuments │ │ │ │ └── form │ │ │ │ ├── editFileForm.tpl │ │ │ │ └── newFileForm.tpl │ │ ├── grid.tpl │ │ ├── gridActionsAbove.tpl │ │ ├── gridActionsBelow.tpl │ │ ├── gridBodyPart.tpl │ │ ├── gridBodyPartWithCategory.tpl │ │ ├── gridCell.tpl │ │ ├── gridCellContents.tpl │ │ ├── gridHeader.tpl │ │ ├── gridRow.tpl │ │ ├── gridRowSelectInput.tpl │ │ ├── languages │ │ │ ├── addLanguageForm.tpl │ │ │ ├── installLanguageForm.tpl │ │ │ └── localeNameCell.tpl │ │ ├── navigationMenus │ │ │ ├── customNMIType.tpl │ │ │ ├── form │ │ │ │ ├── navigationMenuForm.tpl │ │ │ │ └── navigationMenuItemsForm.tpl │ │ │ └── remoteUrlNMIType.tpl │ │ ├── plugins │ │ │ ├── form │ │ │ │ └── uploadPluginForm.tpl │ │ │ ├── pluginGalleryGridFilter.tpl │ │ │ ├── pluginGridFilter.tpl │ │ │ └── viewPlugin.tpl │ │ ├── queries │ │ │ ├── form │ │ │ │ ├── queryForm.tpl │ │ │ │ └── queryNoteForm.tpl │ │ │ ├── participants.tpl │ │ │ └── readQuery.tpl │ │ ├── settings │ │ │ ├── genre │ │ │ │ └── form │ │ │ │ │ └── genreForm.tpl │ │ │ ├── library │ │ │ │ └── form │ │ │ │ │ ├── editFileForm.tpl │ │ │ │ │ └── newFileForm.tpl │ │ │ ├── reviewForms │ │ │ │ └── editReviewForm.tpl │ │ │ ├── roles │ │ │ │ ├── form │ │ │ │ │ └── userGroupForm.tpl │ │ │ │ └── userGroupsGridFilter.tpl │ │ │ └── user │ │ │ │ ├── form │ │ │ │ ├── userDetailsForm.tpl │ │ │ │ ├── userDisableForm.tpl │ │ │ │ ├── userEmailForm.tpl │ │ │ │ └── userRoleForm.tpl │ │ │ │ └── userGridFilter.tpl │ │ ├── tasks │ │ │ └── task.tpl │ │ └── users │ │ │ ├── author │ │ │ ├── form │ │ │ │ └── authorForm.tpl │ │ │ ├── includeInBrowse.tpl │ │ │ └── primaryContact.tpl │ │ │ ├── exportableUsers │ │ │ └── userGridFilter.tpl │ │ │ ├── reviewer │ │ │ ├── authorReadReview.tpl │ │ │ ├── form │ │ │ │ ├── advancedSearchReviewerAssignmentForm.tpl │ │ │ │ ├── advancedSearchReviewerForm.tpl │ │ │ │ ├── createReviewerForm.tpl │ │ │ │ ├── defaultReviewerForm.tpl │ │ │ │ ├── editReviewForm.tpl │ │ │ │ ├── emailReviewerForm.tpl │ │ │ │ ├── enrollExistingReviewerForm.tpl │ │ │ │ ├── noFilesWarning.tpl │ │ │ │ ├── reinstateReviewerForm.tpl │ │ │ │ ├── resendRequestReviewerForm.tpl │ │ │ │ ├── reviewReminderForm.tpl │ │ │ │ ├── reviewerFormFooter.tpl │ │ │ │ ├── reviewerGossipForm.tpl │ │ │ │ ├── thankReviewerForm.tpl │ │ │ │ └── unassignReviewerForm.tpl │ │ │ ├── readReview.tpl │ │ │ └── reviewDownload.tpl │ │ │ ├── stageParticipant │ │ │ ├── addParticipantForm.tpl │ │ │ └── form │ │ │ │ └── notify.tpl │ │ │ └── userSelect │ │ │ ├── searchUserFilter.tpl │ │ │ └── userSelectRadioButton.tpl │ ├── informationCenter │ │ ├── informationCenter.tpl │ │ ├── newNoteForm.tpl │ │ ├── note.tpl │ │ ├── notes.tpl │ │ ├── notesList.tpl │ │ └── submissionHistory.tpl │ ├── listbuilder │ │ ├── listbuilder.tpl │ │ ├── listbuilderGridCell.tpl │ │ ├── listbuilderGridRow.tpl │ │ ├── listbuilderOptions.tpl │ │ └── listbuilderTable.tpl │ ├── modals │ │ ├── documentLibrary │ │ │ ├── documentLibrary.tpl │ │ │ └── publisherLibrary.tpl │ │ ├── publish │ │ │ └── publish.tpl │ │ └── submission │ │ │ └── viewSubmissionMetadata.tpl │ ├── notification │ │ ├── errorNotificationContent.tpl │ │ ├── inPlaceNotification.tpl │ │ ├── inPlaceNotificationContent.tpl │ │ ├── linkActionNotificationContent.tpl │ │ └── notificationOptions.tpl │ ├── page │ │ └── tasks.tpl │ ├── revealMore.tpl │ ├── tab │ │ └── authorDashboard │ │ │ ├── editorial.tpl │ │ │ └── submission.tpl │ └── wizard │ │ └── fileUpload │ │ ├── fileUploadWizard.tpl │ │ └── form │ │ ├── fileSubmissionComplete.tpl │ │ ├── fileUploadForm.tpl │ │ └── submissionFileMetadataForm.tpl ├── dashboard │ └── editors.tpl ├── decision │ └── record.tpl ├── form │ ├── autocompleteInput.tpl │ ├── button.tpl │ ├── checkbox.tpl │ ├── checkboxGroup.tpl │ ├── fieldLabel.tpl │ ├── fileInput.tpl │ ├── formArea.tpl │ ├── formButtons.tpl │ ├── formSection.tpl │ ├── hiddenInput.tpl │ ├── interestsInput.tpl │ ├── keywordInput.tpl │ ├── orcidProfile.tpl │ ├── radioButton.tpl │ ├── select.tpl │ ├── subLabel.tpl │ ├── textInput.tpl │ └── textarea.tpl ├── frontend │ ├── components │ │ ├── announcements.tpl │ │ ├── breadcrumbs.tpl │ │ ├── breadcrumbs_announcement.tpl │ │ ├── breadcrumbs_catalog.tpl │ │ ├── editLink.tpl │ │ ├── footer.tpl │ │ ├── header.tpl │ │ ├── headerHead.tpl │ │ ├── highlights.tpl │ │ ├── navigationMenu.tpl │ │ ├── navigationMenus │ │ │ └── dashboardMenuItem.tpl │ │ ├── pagination.tpl │ │ ├── registrationForm.tpl │ │ └── registrationFormContexts.tpl │ ├── objects │ │ ├── announcement_full.tpl │ │ ├── announcement_summary.tpl │ │ └── announcements_list.tpl │ └── pages │ │ ├── about.tpl │ │ ├── announcement.tpl │ │ ├── announcements.tpl │ │ ├── contact.tpl │ │ ├── editorialHistory.tpl │ │ ├── editorialMasthead.tpl │ │ ├── error.tpl │ │ ├── information.tpl │ │ ├── message.tpl │ │ ├── navigationMenuItemViewContent.tpl │ │ ├── orcidAbout.tpl │ │ ├── orcidVerify.tpl │ │ ├── privacy.tpl │ │ ├── submissions.tpl │ │ ├── userConfirmActivation.tpl │ │ ├── userLogin.tpl │ │ ├── userLostPassword.tpl │ │ ├── userRegister.tpl │ │ └── userRegisterComplete.tpl ├── images │ ├── atom.svg │ ├── button_bg_slice.png │ ├── button_bg_slice_hover.png │ ├── icons │ │ ├── accept.gif │ │ ├── checked.gif │ │ ├── comment.gif │ │ ├── comment_new.gif │ │ ├── edit.gif │ │ ├── email.gif │ │ ├── folder.gif │ │ ├── fulltext_open_medium.gif │ │ ├── fulltext_restricted_medium.gif │ │ ├── icon_alert.gif │ │ ├── letter.gif │ │ ├── list_world.gif │ │ ├── mail.gif │ │ ├── mail_disabled.gif │ │ ├── note_new.gif │ │ ├── page_alert.gif │ │ ├── page_attachment.gif │ │ ├── page_new.gif │ │ └── unchecked.gif │ ├── orcid.svg │ ├── orcid_unauthenticated.svg │ ├── pkp.gif │ ├── ror.svg │ ├── rss10_logo.svg │ ├── rss20_logo.svg │ ├── structure │ │ ├── bg_footer.png │ │ ├── bg_header.png │ │ ├── blank.gif │ │ ├── box.png │ │ ├── grid.png │ │ ├── grid_delete.png │ │ ├── grid_edit.png │ │ ├── grid_email.png │ │ ├── grid_email_overdue.png │ │ ├── grid_folder.png │ │ ├── grid_group_1.png │ │ ├── grid_group_2.png │ │ ├── grid_group_3.png │ │ ├── grid_group_4.png │ │ ├── grid_group_5.png │ │ ├── grid_group_6.png │ │ ├── grid_icon_sprite.png │ │ ├── grid_information.png │ │ ├── grid_new_file.png │ │ ├── grid_note.png │ │ ├── grid_note_new.png │ │ ├── grid_note_none.png │ │ ├── grid_notes.png │ │ ├── grid_promote.png │ │ ├── grid_request_review.png │ │ ├── grid_settings.png │ │ ├── grid_sort.png │ │ ├── grid_task.png │ │ ├── grid_task_accepted.png │ │ ├── grid_task_complete.png │ │ ├── grid_task_disabled.png │ │ ├── list.png │ │ ├── modal_close_icon.png │ │ ├── organize.png │ │ ├── page_white_acrobat.png │ │ ├── page_white_excel.png │ │ ├── page_white_picture.png │ │ ├── page_white_word.png │ │ ├── page_white_world.png │ │ ├── progress_sprite.png │ │ ├── response_error.png │ │ ├── response_forbidden.png │ │ ├── response_help.png │ │ ├── response_info.png │ │ ├── response_success.png │ │ ├── response_warning.png │ │ ├── select-arrow-down.png │ │ ├── sprites.png │ │ ├── star-h.png │ │ ├── star-u.png │ │ ├── superfish │ │ │ ├── arrows-ffffff.png │ │ │ └── shadow.png │ │ ├── workflow_actionNeeded.png │ │ ├── workflow_current.png │ │ ├── workflow_inactive.png │ │ ├── workflow_productionReady.png │ │ └── workflow_productionReadyCurrent.png │ └── throbber.gif ├── install │ ├── install.tpl │ ├── installComplete.tpl │ ├── upgrade.tpl │ └── upgradeComplete.tpl ├── invitation │ ├── acceptInvitation.tpl │ ├── declineInvitation.tpl │ └── userInvitation.tpl ├── layouts │ └── backend.tpl ├── linkAction │ ├── buttonConfirmationLinkAction.tpl │ ├── buttonGenericLinkAction.tpl │ ├── buttonRedirectLinkAction.tpl │ ├── linkAction.tpl │ ├── linkActionButton.tpl │ └── linkActionOptions.tpl ├── management │ ├── access.tpl │ ├── accessUsers.tpl │ ├── announcements.tpl │ ├── distribution.tpl │ ├── institutions.tpl │ ├── manageEmails.tpl │ ├── tools │ │ ├── importexport.tpl │ │ ├── index.tpl │ │ └── permissions.tpl │ ├── userComments.tpl │ ├── website.tpl │ └── workflow.tpl ├── manager │ └── reviewForms │ │ ├── previewReviewForm.tpl │ │ ├── reviewFormElementForm.tpl │ │ └── reviewFormForm.tpl ├── notification │ ├── unsubscribeNotificationsForm.tpl │ └── unsubscribeNotificationsResult.tpl ├── plugins │ └── importexport │ │ ├── innerResults.tpl │ │ ├── resultsExport.tpl │ │ └── resultsImport.tpl ├── reviewer │ └── review │ │ ├── modal │ │ └── regretMessage.tpl │ │ ├── reviewCompleted.tpl │ │ ├── reviewFormResponse.tpl │ │ ├── reviewStepHeader.tpl │ │ ├── step1.tpl │ │ ├── step2.tpl │ │ └── step3.tpl ├── stats │ ├── context.tpl │ ├── counterReports.tpl │ ├── editorial.tpl │ ├── publications.tpl │ ├── reports.tpl │ └── users.tpl ├── submission │ ├── cancelled.tpl │ ├── complete.tpl │ ├── review-contributors.tpl │ ├── review-details.tpl │ ├── review-editors.tpl │ ├── review-files.tpl │ ├── review-publication-field.tpl │ ├── review-reviewer-suggestions.tpl │ ├── saved.tpl │ ├── start.tpl │ └── wizard.tpl ├── user │ ├── apiProfileForm.tpl │ ├── changePassword.tpl │ ├── contactForm.tpl │ ├── identityForm.tpl │ ├── loginChangePassword.tpl │ ├── notificationSettingsForm.tpl │ ├── profile.tpl │ ├── publicProfileForm.tpl │ ├── rolesForm.tpl │ ├── userGroupSelfRegistration.tpl │ ├── userGroups.tpl │ └── userPasswordReset.tpl └── workflow │ ├── reviewHistory.tpl │ └── submissionIdentification.tpl ├── tests ├── DatabaseTestCase.php ├── PKPTestCase.php ├── PKPTestHelper.php ├── classes │ ├── citation │ │ └── CitationListTokenizerFilterTest.php │ ├── config │ │ └── ConfigTest.php │ ├── core │ │ ├── DataObjectTest.php │ │ ├── DispatcherTest.php │ │ ├── EntityDAOTest.php │ │ ├── JSONTest.php │ │ ├── PKPComponentRouterTest.php │ │ ├── PKPJobTest.php │ │ ├── PKPPageRouterTest.php │ │ ├── PKPRequestTest.php │ │ ├── PKPRouterTestCase.php │ │ ├── ProxyParserTest.php │ │ ├── TestEntityDAO.php │ │ └── config │ │ │ ├── config.request1.inc.php │ │ │ └── config.request2.inc.php │ ├── db │ │ ├── data-ddl.xml │ │ ├── data-sql.xml │ │ └── data-table.xml │ ├── doi │ │ └── DoiGeneratorTest.php │ ├── filter │ │ ├── ClassTypeDescriptionTest.php │ │ ├── CompositeTestFilter.php │ │ ├── FilterDAOTest.php │ │ ├── FilterGroupDAOTest.php │ │ ├── FilterHelperTest.php │ │ ├── FilterTest.php │ │ ├── OtherCompositeFilter.php │ │ ├── PersistableFilterTest.php │ │ ├── PersistableTestFilter.php │ │ ├── PersistableTestFilterWithSetting.php │ │ ├── PrimitiveTypeDescriptionTest.php │ │ ├── TestClass1.php │ │ ├── TestClass2.php │ │ └── TypeDescriptionFactoryTest.php │ ├── form │ │ └── validation │ │ │ ├── FormValidatorArrayCustomTest.php │ │ │ ├── FormValidatorArrayTest.php │ │ │ ├── FormValidatorBooleanTest.php │ │ │ ├── FormValidatorControlledVocabTest.php │ │ │ ├── FormValidatorCustomTest.php │ │ │ ├── FormValidatorEmailTest.php │ │ │ ├── FormValidatorInSetTest.php │ │ │ ├── FormValidatorLengthTest.php │ │ │ ├── FormValidatorLocaleEmailTest.php │ │ │ ├── FormValidatorLocaleTest.php │ │ │ ├── FormValidatorPostTest.php │ │ │ ├── FormValidatorRegExpTest.php │ │ │ ├── FormValidatorTest.php │ │ │ ├── FormValidatorUrlTest.php │ │ │ └── FormValidatorUsernameTest.php │ ├── i18n │ │ └── LocaleTest.php │ ├── metadata │ │ ├── MetadataDescriptionTest.php │ │ ├── MetadataPropertyTest.php │ │ └── TestSchema.php │ ├── plugins │ │ └── PluginTest.php │ ├── publication │ │ └── PublicationTest.php │ ├── scheduledTask │ │ └── ScheduledTaskHelperTest.php │ ├── security │ │ └── authorization │ │ │ ├── AuthorizationDecisionManagerTest.php │ │ │ ├── AuthorizationPolicyTest.php │ │ │ ├── PKPPublicAccessPolicyTest.php │ │ │ ├── PolicySetTest.php │ │ │ ├── PolicyTestCase.php │ │ │ └── RoleBasedHandlerOperationPolicyTest.php │ ├── validation │ │ ├── ValidatorControlledVocabTest.php │ │ ├── ValidatorEmailTest.php │ │ ├── ValidatorISSNTest.php │ │ ├── ValidatorORCIDTest.php │ │ ├── ValidatorTypeDescriptionTest.php │ │ └── ValidatorUrlTest.php │ └── xslt │ │ ├── XMLTypeDescriptionTest.php │ │ ├── dtdsample-invalid.xml │ │ ├── dtdsample-valid.xml │ │ ├── dtdsample.dtd │ │ ├── rngsample-invalid.xml │ │ ├── rngsample-valid.xml │ │ ├── rngsample.rng │ │ ├── xsdsample-invalid.xml │ │ ├── xsdsample-valid.xml │ │ └── xsdsample.xsd ├── config │ ├── .gitignore │ ├── config.TEMPLATE.mysql.inc.php │ ├── config.TEMPLATE.pgsql.inc.php │ └── config.mysql.inc.php ├── jobs │ ├── bulk │ │ └── BulkEmailSenderTest.php │ ├── doi │ │ ├── DepositContextTest.php │ │ └── DepositSubmissionTest.php │ ├── email │ │ ├── EditorialReminderTest.php │ │ └── ReviewReminderTest.php │ ├── invitations │ │ └── RemoveExpiredInvitationsJobTest.php │ ├── notifications │ │ ├── NewAnnouncementNotifyUsersTest.php │ │ ├── StatisticsReportMailTest.php │ │ └── StatisticsReportNotifyTest.php │ ├── statistics │ │ ├── ArchiveUsageStatsLogFileTest.php │ │ ├── CompileContextMetricsTest.php │ │ ├── CompileMonthlyMetricsTest.php │ │ ├── CompileSubmissionMetricsTest.php │ │ └── RemoveDoubleClicksTest.php │ └── submissions │ │ └── UpdateSubmissionSearchJobTest.php ├── phpunit-bootstrap.php ├── phpunit.xml ├── plugins │ ├── PluginTestCase.php │ └── testPluginInstall.xml ├── results │ └── .gitignore └── support │ └── DoiRegistrationAgency.php ├── tools ├── appKey.php ├── buildSwagger.php ├── buildjs.sh ├── closure-externs-check-only.js ├── closure-externs.js ├── constants.php ├── convertApacheAccessLogFile.php ├── convertUsageStatsLogFile.php ├── events.php ├── generateTestGeoMetrics.php ├── generateTestMetrics.php ├── getHooks.php ├── i18nExtractKeys.vite.js ├── installEmailTemplate.php ├── installPluginVersion.php ├── jobs.php ├── jquery-externs.js ├── migration.php ├── moveLocaleKeysToLib.php ├── parseCitations.php ├── plugins.php ├── pre-commit.sh ├── removeLocaleKey.php ├── replaceVariableInLocaleKey.php ├── reprocessUsageStatsMonth.php ├── runAllTests.sh ├── scheduler.php └── setVersionTool.php └── xml ├── defaultPluginInstall.xml ├── importexport.xsd ├── oai2.xsl ├── onixFilter.xsl └── schema └── plugins.xsd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/.gitmodules -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /.php_cs_rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/.php_cs_rules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/README.md -------------------------------------------------------------------------------- /captainhook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/captainhook.json -------------------------------------------------------------------------------- /classes/affiliation/DAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/affiliation/DAO.php -------------------------------------------------------------------------------- /classes/announcement/DAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/announcement/DAO.php -------------------------------------------------------------------------------- /classes/author/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/author/Author.php -------------------------------------------------------------------------------- /classes/author/Collector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/author/Collector.php -------------------------------------------------------------------------------- /classes/author/DAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/author/DAO.php -------------------------------------------------------------------------------- /classes/category/DAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/category/DAO.php -------------------------------------------------------------------------------- /classes/citation/DAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/citation/DAO.php -------------------------------------------------------------------------------- /classes/citation/pid/Doi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/citation/pid/Doi.php -------------------------------------------------------------------------------- /classes/citation/pid/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/citation/pid/Url.php -------------------------------------------------------------------------------- /classes/citation/pid/Urn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/citation/pid/Urn.php -------------------------------------------------------------------------------- /classes/config/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/config/Config.php -------------------------------------------------------------------------------- /classes/context/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/context/Context.php -------------------------------------------------------------------------------- /classes/core/APIRouter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/core/APIRouter.php -------------------------------------------------------------------------------- /classes/core/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/core/Core.php -------------------------------------------------------------------------------- /classes/core/DataObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/core/DataObject.php -------------------------------------------------------------------------------- /classes/core/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/core/Dispatcher.php -------------------------------------------------------------------------------- /classes/core/EntityDAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/core/EntityDAO.php -------------------------------------------------------------------------------- /classes/core/JSONMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/core/JSONMessage.php -------------------------------------------------------------------------------- /classes/core/PKPAppKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/core/PKPAppKey.php -------------------------------------------------------------------------------- /classes/core/PKPJwt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/core/PKPJwt.php -------------------------------------------------------------------------------- /classes/core/PKPRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/core/PKPRequest.php -------------------------------------------------------------------------------- /classes/core/PKPRouter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/core/PKPRouter.php -------------------------------------------------------------------------------- /classes/core/PKPServices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/core/PKPServices.php -------------------------------------------------------------------------------- /classes/core/PKPString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/core/PKPString.php -------------------------------------------------------------------------------- /classes/core/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/core/Registry.php -------------------------------------------------------------------------------- /classes/core/maps/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/core/maps/Base.php -------------------------------------------------------------------------------- /classes/core/maps/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/core/maps/Schema.php -------------------------------------------------------------------------------- /classes/db/DAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/db/DAO.php -------------------------------------------------------------------------------- /classes/db/DAORegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/db/DAORegistry.php -------------------------------------------------------------------------------- /classes/db/DBResultRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/db/DBResultRange.php -------------------------------------------------------------------------------- /classes/db/SchemaDAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/db/SchemaDAO.php -------------------------------------------------------------------------------- /classes/db/XMLDAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/db/XMLDAO.php -------------------------------------------------------------------------------- /classes/decision/DAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/decision/DAO.php -------------------------------------------------------------------------------- /classes/decision/Step.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/decision/Step.php -------------------------------------------------------------------------------- /classes/decision/Steps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/decision/Steps.php -------------------------------------------------------------------------------- /classes/doi/Collector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/doi/Collector.php -------------------------------------------------------------------------------- /classes/doi/DAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/doi/DAO.php -------------------------------------------------------------------------------- /classes/doi/Doi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/doi/Doi.php -------------------------------------------------------------------------------- /classes/doi/DoiGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/doi/DoiGenerator.php -------------------------------------------------------------------------------- /classes/doi/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/doi/Repository.php -------------------------------------------------------------------------------- /classes/doi/maps/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/doi/maps/Schema.php -------------------------------------------------------------------------------- /classes/facades/Locale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/facades/Locale.php -------------------------------------------------------------------------------- /classes/facades/Repo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/facades/Repo.php -------------------------------------------------------------------------------- /classes/file/FileArchive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/file/FileArchive.php -------------------------------------------------------------------------------- /classes/file/FileManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/file/FileManager.php -------------------------------------------------------------------------------- /classes/file/PKPFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/file/PKPFile.php -------------------------------------------------------------------------------- /classes/filter/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/filter/Filter.php -------------------------------------------------------------------------------- /classes/filter/FilterDAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/filter/FilterDAO.php -------------------------------------------------------------------------------- /classes/form/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/form/Form.php -------------------------------------------------------------------------------- /classes/form/FormError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/form/FormError.php -------------------------------------------------------------------------------- /classes/galley/Collector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/galley/Collector.php -------------------------------------------------------------------------------- /classes/galley/DAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/galley/DAO.php -------------------------------------------------------------------------------- /classes/galley/Galley.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/galley/Galley.php -------------------------------------------------------------------------------- /classes/highlight/DAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/highlight/DAO.php -------------------------------------------------------------------------------- /classes/i18n/Locale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/i18n/Locale.php -------------------------------------------------------------------------------- /classes/institution/DAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/institution/DAO.php -------------------------------------------------------------------------------- /classes/jats/JatsFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/jats/JatsFile.php -------------------------------------------------------------------------------- /classes/jats/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/jats/Repository.php -------------------------------------------------------------------------------- /classes/job/models/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/job/models/Job.php -------------------------------------------------------------------------------- /classes/log/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/log/Repository.php -------------------------------------------------------------------------------- /classes/log/event/DAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/log/event/DAO.php -------------------------------------------------------------------------------- /classes/mail/EmailData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/mail/EmailData.php -------------------------------------------------------------------------------- /classes/mail/Mailable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/mail/Mailable.php -------------------------------------------------------------------------------- /classes/mail/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/mail/Mailer.php -------------------------------------------------------------------------------- /classes/mail/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/mail/Repository.php -------------------------------------------------------------------------------- /classes/note/Note.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/note/Note.php -------------------------------------------------------------------------------- /classes/note/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/note/Repository.php -------------------------------------------------------------------------------- /classes/oai/OAI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/oai/OAI.php -------------------------------------------------------------------------------- /classes/oai/OAIConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/oai/OAIConfig.php -------------------------------------------------------------------------------- /classes/oai/OAIRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/oai/OAIRecord.php -------------------------------------------------------------------------------- /classes/oai/OAISet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/oai/OAISet.php -------------------------------------------------------------------------------- /classes/oai/OAIUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/oai/OAIUtils.php -------------------------------------------------------------------------------- /classes/oai/PKPOAIDAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/oai/PKPOAIDAO.php -------------------------------------------------------------------------------- /classes/payment/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/payment/Payment.php -------------------------------------------------------------------------------- /classes/plugins/Hook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/plugins/Hook.php -------------------------------------------------------------------------------- /classes/plugins/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/plugins/Plugin.php -------------------------------------------------------------------------------- /classes/publication/DAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/publication/DAO.php -------------------------------------------------------------------------------- /classes/queue/JobRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/queue/JobRunner.php -------------------------------------------------------------------------------- /classes/ror/Collector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/ror/Collector.php -------------------------------------------------------------------------------- /classes/ror/DAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/ror/DAO.php -------------------------------------------------------------------------------- /classes/ror/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/ror/Repository.php -------------------------------------------------------------------------------- /classes/ror/Ror.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/ror/Ror.php -------------------------------------------------------------------------------- /classes/ror/maps/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/ror/maps/Schema.php -------------------------------------------------------------------------------- /classes/section/DAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/section/DAO.php -------------------------------------------------------------------------------- /classes/security/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/security/Role.php -------------------------------------------------------------------------------- /classes/security/RoleDAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/security/RoleDAO.php -------------------------------------------------------------------------------- /classes/site/Site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/site/Site.php -------------------------------------------------------------------------------- /classes/site/SiteDAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/site/SiteDAO.php -------------------------------------------------------------------------------- /classes/site/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/site/Version.php -------------------------------------------------------------------------------- /classes/site/VersionDAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/site/VersionDAO.php -------------------------------------------------------------------------------- /classes/user/DAO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/user/DAO.php -------------------------------------------------------------------------------- /classes/user/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/user/Report.php -------------------------------------------------------------------------------- /classes/user/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/user/User.php -------------------------------------------------------------------------------- /classes/view/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classes/xml/XMLNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/classes/xml/XMLNode.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/composer.lock -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/cypress/support/api.js -------------------------------------------------------------------------------- /dtd/bic21qualifiers.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/dtd/bic21qualifiers.dtd -------------------------------------------------------------------------------- /dtd/bic21subjects.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/dtd/bic21subjects.dtd -------------------------------------------------------------------------------- /dtd/emailTemplates.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/dtd/emailTemplates.dtd -------------------------------------------------------------------------------- /dtd/filterConfig.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/dtd/filterConfig.dtd -------------------------------------------------------------------------------- /dtd/genres.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/dtd/genres.dtd -------------------------------------------------------------------------------- /dtd/install.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/dtd/install.dtd -------------------------------------------------------------------------------- /dtd/navigationMenus.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/dtd/navigationMenus.dtd -------------------------------------------------------------------------------- /dtd/pluginSettings.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/dtd/pluginSettings.dtd -------------------------------------------------------------------------------- /dtd/pluginVersion.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/dtd/pluginVersion.dtd -------------------------------------------------------------------------------- /dtd/userGroups.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/dtd/userGroups.dtd -------------------------------------------------------------------------------- /dtd/version.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/dtd/version.dtd -------------------------------------------------------------------------------- /dtd/xmlData.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/dtd/xmlData.dtd -------------------------------------------------------------------------------- /dtd/xmlSchema.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/dtd/xmlSchema.dtd -------------------------------------------------------------------------------- /includes/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/includes/bootstrap.php -------------------------------------------------------------------------------- /includes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/includes/functions.php -------------------------------------------------------------------------------- /jobs/BaseJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/jobs/BaseJob.php -------------------------------------------------------------------------------- /js/classes/Handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/js/classes/Handler.js -------------------------------------------------------------------------------- /js/classes/Helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/js/classes/Helper.js -------------------------------------------------------------------------------- /js/classes/ObjectProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/js/classes/ObjectProxy.js -------------------------------------------------------------------------------- /js/classes/VueRegistry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/js/classes/VueRegistry.js -------------------------------------------------------------------------------- /js/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/js/load.js -------------------------------------------------------------------------------- /js/load_frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/js/load_frontend.js -------------------------------------------------------------------------------- /js/usage-stats-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/js/usage-stats-chart.js -------------------------------------------------------------------------------- /lib/libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/lib/libraries.txt -------------------------------------------------------------------------------- /lib/regionMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/lib/regionMapping.php -------------------------------------------------------------------------------- /locale/an/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/an/admin.po -------------------------------------------------------------------------------- /locale/an/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/an/api.po -------------------------------------------------------------------------------- /locale/an/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/an/common.po -------------------------------------------------------------------------------- /locale/an/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/an/default.po -------------------------------------------------------------------------------- /locale/an/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/an/emails.po -------------------------------------------------------------------------------- /locale/an/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/an/grid.po -------------------------------------------------------------------------------- /locale/an/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/an/manager.po -------------------------------------------------------------------------------- /locale/an/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/an/reader.po -------------------------------------------------------------------------------- /locale/an/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/an/reviewer.po -------------------------------------------------------------------------------- /locale/an/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/an/submission.po -------------------------------------------------------------------------------- /locale/an/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/an/user.po -------------------------------------------------------------------------------- /locale/ar/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ar/admin.po -------------------------------------------------------------------------------- /locale/ar/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ar/api.po -------------------------------------------------------------------------------- /locale/ar/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ar/common.po -------------------------------------------------------------------------------- /locale/ar/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ar/default.po -------------------------------------------------------------------------------- /locale/ar/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ar/editor.po -------------------------------------------------------------------------------- /locale/ar/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ar/emails.po -------------------------------------------------------------------------------- /locale/ar/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ar/grid.po -------------------------------------------------------------------------------- /locale/ar/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ar/installer.po -------------------------------------------------------------------------------- /locale/ar/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ar/manager.po -------------------------------------------------------------------------------- /locale/ar/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ar/reader.po -------------------------------------------------------------------------------- /locale/ar/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ar/reviewer.po -------------------------------------------------------------------------------- /locale/ar/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ar/submission.po -------------------------------------------------------------------------------- /locale/ar/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ar/user.po -------------------------------------------------------------------------------- /locale/az/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/az/admin.po -------------------------------------------------------------------------------- /locale/az/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/az/api.po -------------------------------------------------------------------------------- /locale/az/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/az/common.po -------------------------------------------------------------------------------- /locale/az/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/az/default.po -------------------------------------------------------------------------------- /locale/az/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/az/editor.po -------------------------------------------------------------------------------- /locale/az/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/az/emails.po -------------------------------------------------------------------------------- /locale/az/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/az/grid.po -------------------------------------------------------------------------------- /locale/az/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/az/installer.po -------------------------------------------------------------------------------- /locale/az/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/az/manager.po -------------------------------------------------------------------------------- /locale/az/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/az/reader.po -------------------------------------------------------------------------------- /locale/az/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/az/reviewer.po -------------------------------------------------------------------------------- /locale/az/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/az/submission.po -------------------------------------------------------------------------------- /locale/az/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/az/user.po -------------------------------------------------------------------------------- /locale/be/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/be/manager.po -------------------------------------------------------------------------------- /locale/be/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/be/submission.po -------------------------------------------------------------------------------- /locale/bg/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bg/admin.po -------------------------------------------------------------------------------- /locale/bg/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bg/api.po -------------------------------------------------------------------------------- /locale/bg/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bg/common.po -------------------------------------------------------------------------------- /locale/bg/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bg/default.po -------------------------------------------------------------------------------- /locale/bg/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bg/editor.po -------------------------------------------------------------------------------- /locale/bg/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bg/emails.po -------------------------------------------------------------------------------- /locale/bg/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bg/grid.po -------------------------------------------------------------------------------- /locale/bg/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bg/installer.po -------------------------------------------------------------------------------- /locale/bg/invitation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bg/invitation.po -------------------------------------------------------------------------------- /locale/bg/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bg/manager.po -------------------------------------------------------------------------------- /locale/bg/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bg/reader.po -------------------------------------------------------------------------------- /locale/bg/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bg/reviewer.po -------------------------------------------------------------------------------- /locale/bg/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bg/submission.po -------------------------------------------------------------------------------- /locale/bg/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bg/user.po -------------------------------------------------------------------------------- /locale/bg/userAccess.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bg/userAccess.po -------------------------------------------------------------------------------- /locale/bs_Latn/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bs_Latn/admin.po -------------------------------------------------------------------------------- /locale/bs_Latn/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bs_Latn/api.po -------------------------------------------------------------------------------- /locale/bs_Latn/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bs_Latn/common.po -------------------------------------------------------------------------------- /locale/bs_Latn/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bs_Latn/editor.po -------------------------------------------------------------------------------- /locale/bs_Latn/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bs_Latn/emails.po -------------------------------------------------------------------------------- /locale/bs_Latn/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bs_Latn/grid.po -------------------------------------------------------------------------------- /locale/bs_Latn/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bs_Latn/manager.po -------------------------------------------------------------------------------- /locale/bs_Latn/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bs_Latn/reader.po -------------------------------------------------------------------------------- /locale/bs_Latn/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/bs_Latn/user.po -------------------------------------------------------------------------------- /locale/ca/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ca/admin.po -------------------------------------------------------------------------------- /locale/ca/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ca/api.po -------------------------------------------------------------------------------- /locale/ca/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ca/common.po -------------------------------------------------------------------------------- /locale/ca/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ca/default.po -------------------------------------------------------------------------------- /locale/ca/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ca/editor.po -------------------------------------------------------------------------------- /locale/ca/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ca/emails.po -------------------------------------------------------------------------------- /locale/ca/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ca/grid.po -------------------------------------------------------------------------------- /locale/ca/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ca/installer.po -------------------------------------------------------------------------------- /locale/ca/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ca/manager.po -------------------------------------------------------------------------------- /locale/ca/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ca/reader.po -------------------------------------------------------------------------------- /locale/ca/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ca/reviewer.po -------------------------------------------------------------------------------- /locale/ca/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ca/submission.po -------------------------------------------------------------------------------- /locale/ca/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ca/user.po -------------------------------------------------------------------------------- /locale/ckb/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ckb/admin.po -------------------------------------------------------------------------------- /locale/ckb/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ckb/api.po -------------------------------------------------------------------------------- /locale/ckb/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ckb/common.po -------------------------------------------------------------------------------- /locale/ckb/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ckb/default.po -------------------------------------------------------------------------------- /locale/ckb/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ckb/editor.po -------------------------------------------------------------------------------- /locale/ckb/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ckb/emails.po -------------------------------------------------------------------------------- /locale/ckb/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ckb/grid.po -------------------------------------------------------------------------------- /locale/ckb/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ckb/installer.po -------------------------------------------------------------------------------- /locale/ckb/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ckb/manager.po -------------------------------------------------------------------------------- /locale/ckb/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ckb/reader.po -------------------------------------------------------------------------------- /locale/ckb/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ckb/reviewer.po -------------------------------------------------------------------------------- /locale/ckb/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ckb/submission.po -------------------------------------------------------------------------------- /locale/ckb/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ckb/user.po -------------------------------------------------------------------------------- /locale/cnr/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cnr/admin.po -------------------------------------------------------------------------------- /locale/cnr/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cnr/common.po -------------------------------------------------------------------------------- /locale/cnr/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cnr/default.po -------------------------------------------------------------------------------- /locale/cnr/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cnr/manager.po -------------------------------------------------------------------------------- /locale/cnr/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cnr/reader.po -------------------------------------------------------------------------------- /locale/cnr/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cnr/submission.po -------------------------------------------------------------------------------- /locale/cnr/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cnr/user.po -------------------------------------------------------------------------------- /locale/cs/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cs/admin.po -------------------------------------------------------------------------------- /locale/cs/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cs/api.po -------------------------------------------------------------------------------- /locale/cs/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cs/common.po -------------------------------------------------------------------------------- /locale/cs/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cs/default.po -------------------------------------------------------------------------------- /locale/cs/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cs/editor.po -------------------------------------------------------------------------------- /locale/cs/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cs/emails.po -------------------------------------------------------------------------------- /locale/cs/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cs/grid.po -------------------------------------------------------------------------------- /locale/cs/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cs/installer.po -------------------------------------------------------------------------------- /locale/cs/invitation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cs/invitation.po -------------------------------------------------------------------------------- /locale/cs/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cs/manager.po -------------------------------------------------------------------------------- /locale/cs/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cs/reader.po -------------------------------------------------------------------------------- /locale/cs/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cs/reviewer.po -------------------------------------------------------------------------------- /locale/cs/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cs/submission.po -------------------------------------------------------------------------------- /locale/cs/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cs/user.po -------------------------------------------------------------------------------- /locale/cs/userAccess.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/cs/userAccess.po -------------------------------------------------------------------------------- /locale/da/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/da/admin.po -------------------------------------------------------------------------------- /locale/da/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/da/api.po -------------------------------------------------------------------------------- /locale/da/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/da/common.po -------------------------------------------------------------------------------- /locale/da/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/da/default.po -------------------------------------------------------------------------------- /locale/da/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/da/editor.po -------------------------------------------------------------------------------- /locale/da/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/da/emails.po -------------------------------------------------------------------------------- /locale/da/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/da/grid.po -------------------------------------------------------------------------------- /locale/da/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/da/installer.po -------------------------------------------------------------------------------- /locale/da/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/da/manager.po -------------------------------------------------------------------------------- /locale/da/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/da/reader.po -------------------------------------------------------------------------------- /locale/da/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/da/reviewer.po -------------------------------------------------------------------------------- /locale/da/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/da/submission.po -------------------------------------------------------------------------------- /locale/da/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/da/user.po -------------------------------------------------------------------------------- /locale/da/userAccess.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/da/userAccess.po -------------------------------------------------------------------------------- /locale/de/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/de/admin.po -------------------------------------------------------------------------------- /locale/de/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/de/api.po -------------------------------------------------------------------------------- /locale/de/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/de/common.po -------------------------------------------------------------------------------- /locale/de/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/de/default.po -------------------------------------------------------------------------------- /locale/de/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/de/editor.po -------------------------------------------------------------------------------- /locale/de/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/de/emails.po -------------------------------------------------------------------------------- /locale/de/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/de/grid.po -------------------------------------------------------------------------------- /locale/de/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/de/installer.po -------------------------------------------------------------------------------- /locale/de/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/de/manager.po -------------------------------------------------------------------------------- /locale/de/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/de/reader.po -------------------------------------------------------------------------------- /locale/de/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/de/reviewer.po -------------------------------------------------------------------------------- /locale/de/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/de/submission.po -------------------------------------------------------------------------------- /locale/de/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/de/user.po -------------------------------------------------------------------------------- /locale/de/userAccess.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/de/userAccess.po -------------------------------------------------------------------------------- /locale/dsb/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/dsb/admin.po -------------------------------------------------------------------------------- /locale/dsb/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/dsb/api.po -------------------------------------------------------------------------------- /locale/dsb/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/dsb/common.po -------------------------------------------------------------------------------- /locale/dsb/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/dsb/default.po -------------------------------------------------------------------------------- /locale/dsb/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/dsb/editor.po -------------------------------------------------------------------------------- /locale/dsb/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/dsb/grid.po -------------------------------------------------------------------------------- /locale/dsb/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/dsb/installer.po -------------------------------------------------------------------------------- /locale/dsb/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/dsb/manager.po -------------------------------------------------------------------------------- /locale/dsb/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/dsb/reader.po -------------------------------------------------------------------------------- /locale/dsb/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/dsb/reviewer.po -------------------------------------------------------------------------------- /locale/dsb/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/dsb/submission.po -------------------------------------------------------------------------------- /locale/dsb/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/dsb/user.po -------------------------------------------------------------------------------- /locale/el/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/el/admin.po -------------------------------------------------------------------------------- /locale/el/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/el/api.po -------------------------------------------------------------------------------- /locale/el/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/el/common.po -------------------------------------------------------------------------------- /locale/el/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/el/default.po -------------------------------------------------------------------------------- /locale/el/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/el/editor.po -------------------------------------------------------------------------------- /locale/el/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/el/emails.po -------------------------------------------------------------------------------- /locale/el/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/el/grid.po -------------------------------------------------------------------------------- /locale/el/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/el/installer.po -------------------------------------------------------------------------------- /locale/el/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/el/manager.po -------------------------------------------------------------------------------- /locale/el/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/el/reader.po -------------------------------------------------------------------------------- /locale/el/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/el/reviewer.po -------------------------------------------------------------------------------- /locale/el/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/el/submission.po -------------------------------------------------------------------------------- /locale/el/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/el/user.po -------------------------------------------------------------------------------- /locale/en/UserComment.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/en/UserComment.po -------------------------------------------------------------------------------- /locale/en/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/en/admin.po -------------------------------------------------------------------------------- /locale/en/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/en/api.po -------------------------------------------------------------------------------- /locale/en/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/en/common.po -------------------------------------------------------------------------------- /locale/en/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/en/default.po -------------------------------------------------------------------------------- /locale/en/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/en/editor.po -------------------------------------------------------------------------------- /locale/en/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/en/emails.po -------------------------------------------------------------------------------- /locale/en/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/en/grid.po -------------------------------------------------------------------------------- /locale/en/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/en/installer.po -------------------------------------------------------------------------------- /locale/en/invitation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/en/invitation.po -------------------------------------------------------------------------------- /locale/en/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/en/manager.po -------------------------------------------------------------------------------- /locale/en/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/en/reader.po -------------------------------------------------------------------------------- /locale/en/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/en/reviewer.po -------------------------------------------------------------------------------- /locale/en/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/en/submission.po -------------------------------------------------------------------------------- /locale/en/sushi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/en/sushi.po -------------------------------------------------------------------------------- /locale/en/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/en/user.po -------------------------------------------------------------------------------- /locale/en/userAccess.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/en/userAccess.po -------------------------------------------------------------------------------- /locale/es/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/es/admin.po -------------------------------------------------------------------------------- /locale/es/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/es/api.po -------------------------------------------------------------------------------- /locale/es/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/es/common.po -------------------------------------------------------------------------------- /locale/es/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/es/default.po -------------------------------------------------------------------------------- /locale/es/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/es/editor.po -------------------------------------------------------------------------------- /locale/es/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/es/emails.po -------------------------------------------------------------------------------- /locale/es/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/es/grid.po -------------------------------------------------------------------------------- /locale/es/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/es/installer.po -------------------------------------------------------------------------------- /locale/es/invitation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/es/invitation.po -------------------------------------------------------------------------------- /locale/es/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/es/manager.po -------------------------------------------------------------------------------- /locale/es/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/es/reader.po -------------------------------------------------------------------------------- /locale/es/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/es/reviewer.po -------------------------------------------------------------------------------- /locale/es/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/es/submission.po -------------------------------------------------------------------------------- /locale/es/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/es/user.po -------------------------------------------------------------------------------- /locale/es/userAccess.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/es/userAccess.po -------------------------------------------------------------------------------- /locale/eu/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/eu/admin.po -------------------------------------------------------------------------------- /locale/eu/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/eu/api.po -------------------------------------------------------------------------------- /locale/eu/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/eu/common.po -------------------------------------------------------------------------------- /locale/eu/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/eu/default.po -------------------------------------------------------------------------------- /locale/eu/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/eu/editor.po -------------------------------------------------------------------------------- /locale/eu/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/eu/emails.po -------------------------------------------------------------------------------- /locale/eu/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/eu/grid.po -------------------------------------------------------------------------------- /locale/eu/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/eu/installer.po -------------------------------------------------------------------------------- /locale/eu/invitation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/eu/invitation.po -------------------------------------------------------------------------------- /locale/eu/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/eu/manager.po -------------------------------------------------------------------------------- /locale/eu/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/eu/reader.po -------------------------------------------------------------------------------- /locale/eu/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/eu/reviewer.po -------------------------------------------------------------------------------- /locale/eu/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/eu/submission.po -------------------------------------------------------------------------------- /locale/eu/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/eu/user.po -------------------------------------------------------------------------------- /locale/eu/userAccess.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/eu/userAccess.po -------------------------------------------------------------------------------- /locale/fa/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fa/admin.po -------------------------------------------------------------------------------- /locale/fa/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fa/api.po -------------------------------------------------------------------------------- /locale/fa/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fa/common.po -------------------------------------------------------------------------------- /locale/fa/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fa/default.po -------------------------------------------------------------------------------- /locale/fa/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fa/editor.po -------------------------------------------------------------------------------- /locale/fa/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fa/emails.po -------------------------------------------------------------------------------- /locale/fa/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fa/grid.po -------------------------------------------------------------------------------- /locale/fa/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fa/installer.po -------------------------------------------------------------------------------- /locale/fa/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fa/manager.po -------------------------------------------------------------------------------- /locale/fa/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fa/reader.po -------------------------------------------------------------------------------- /locale/fa/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fa/reviewer.po -------------------------------------------------------------------------------- /locale/fa/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fa/submission.po -------------------------------------------------------------------------------- /locale/fa/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fa/user.po -------------------------------------------------------------------------------- /locale/fi/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fi/admin.po -------------------------------------------------------------------------------- /locale/fi/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fi/api.po -------------------------------------------------------------------------------- /locale/fi/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fi/common.po -------------------------------------------------------------------------------- /locale/fi/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fi/default.po -------------------------------------------------------------------------------- /locale/fi/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fi/editor.po -------------------------------------------------------------------------------- /locale/fi/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fi/emails.po -------------------------------------------------------------------------------- /locale/fi/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fi/grid.po -------------------------------------------------------------------------------- /locale/fi/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fi/installer.po -------------------------------------------------------------------------------- /locale/fi/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fi/manager.po -------------------------------------------------------------------------------- /locale/fi/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fi/reader.po -------------------------------------------------------------------------------- /locale/fi/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fi/reviewer.po -------------------------------------------------------------------------------- /locale/fi/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fi/submission.po -------------------------------------------------------------------------------- /locale/fi/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fi/user.po -------------------------------------------------------------------------------- /locale/fr/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr/admin.po -------------------------------------------------------------------------------- /locale/fr/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr/api.po -------------------------------------------------------------------------------- /locale/fr/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr/common.po -------------------------------------------------------------------------------- /locale/fr/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr/default.po -------------------------------------------------------------------------------- /locale/fr/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr/editor.po -------------------------------------------------------------------------------- /locale/fr/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr/emails.po -------------------------------------------------------------------------------- /locale/fr/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr/grid.po -------------------------------------------------------------------------------- /locale/fr/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr/installer.po -------------------------------------------------------------------------------- /locale/fr/invitation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr/invitation.po -------------------------------------------------------------------------------- /locale/fr/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr/manager.po -------------------------------------------------------------------------------- /locale/fr/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr/reader.po -------------------------------------------------------------------------------- /locale/fr/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr/reviewer.po -------------------------------------------------------------------------------- /locale/fr/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr/submission.po -------------------------------------------------------------------------------- /locale/fr/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr/user.po -------------------------------------------------------------------------------- /locale/fr/userAccess.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr/userAccess.po -------------------------------------------------------------------------------- /locale/fr_CA/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr_CA/admin.po -------------------------------------------------------------------------------- /locale/fr_CA/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr_CA/api.po -------------------------------------------------------------------------------- /locale/fr_CA/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr_CA/common.po -------------------------------------------------------------------------------- /locale/fr_CA/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr_CA/default.po -------------------------------------------------------------------------------- /locale/fr_CA/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr_CA/editor.po -------------------------------------------------------------------------------- /locale/fr_CA/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr_CA/emails.po -------------------------------------------------------------------------------- /locale/fr_CA/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr_CA/grid.po -------------------------------------------------------------------------------- /locale/fr_CA/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr_CA/installer.po -------------------------------------------------------------------------------- /locale/fr_CA/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr_CA/manager.po -------------------------------------------------------------------------------- /locale/fr_CA/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr_CA/reader.po -------------------------------------------------------------------------------- /locale/fr_CA/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr_CA/reviewer.po -------------------------------------------------------------------------------- /locale/fr_CA/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/fr_CA/user.po -------------------------------------------------------------------------------- /locale/gd/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/gd/common.po -------------------------------------------------------------------------------- /locale/gd/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/gd/emails.po -------------------------------------------------------------------------------- /locale/gd/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/gd/manager.po -------------------------------------------------------------------------------- /locale/gd/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/gd/submission.po -------------------------------------------------------------------------------- /locale/gl/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/gl/admin.po -------------------------------------------------------------------------------- /locale/gl/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/gl/api.po -------------------------------------------------------------------------------- /locale/gl/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/gl/common.po -------------------------------------------------------------------------------- /locale/gl/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/gl/default.po -------------------------------------------------------------------------------- /locale/gl/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/gl/editor.po -------------------------------------------------------------------------------- /locale/gl/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/gl/emails.po -------------------------------------------------------------------------------- /locale/gl/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/gl/grid.po -------------------------------------------------------------------------------- /locale/gl/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/gl/installer.po -------------------------------------------------------------------------------- /locale/gl/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/gl/manager.po -------------------------------------------------------------------------------- /locale/gl/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/gl/reader.po -------------------------------------------------------------------------------- /locale/gl/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/gl/reviewer.po -------------------------------------------------------------------------------- /locale/gl/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/gl/submission.po -------------------------------------------------------------------------------- /locale/gl/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/gl/user.po -------------------------------------------------------------------------------- /locale/he/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/he/admin.po -------------------------------------------------------------------------------- /locale/he/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/he/api.po -------------------------------------------------------------------------------- /locale/he/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/he/common.po -------------------------------------------------------------------------------- /locale/he/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/he/default.po -------------------------------------------------------------------------------- /locale/he/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/he/editor.po -------------------------------------------------------------------------------- /locale/he/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/he/emails.po -------------------------------------------------------------------------------- /locale/he/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/he/manager.po -------------------------------------------------------------------------------- /locale/he/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/he/reader.po -------------------------------------------------------------------------------- /locale/he/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/he/submission.po -------------------------------------------------------------------------------- /locale/he/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/he/user.po -------------------------------------------------------------------------------- /locale/he/userAccess.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/he/userAccess.po -------------------------------------------------------------------------------- /locale/hi/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hi/editor.po -------------------------------------------------------------------------------- /locale/hi/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hi/emails.po -------------------------------------------------------------------------------- /locale/hi/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hi/manager.po -------------------------------------------------------------------------------- /locale/hi/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hi/reader.po -------------------------------------------------------------------------------- /locale/hi/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hi/submission.po -------------------------------------------------------------------------------- /locale/hi/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hi/user.po -------------------------------------------------------------------------------- /locale/hr/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hr/admin.po -------------------------------------------------------------------------------- /locale/hr/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hr/api.po -------------------------------------------------------------------------------- /locale/hr/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hr/common.po -------------------------------------------------------------------------------- /locale/hr/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hr/default.po -------------------------------------------------------------------------------- /locale/hr/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hr/editor.po -------------------------------------------------------------------------------- /locale/hr/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hr/emails.po -------------------------------------------------------------------------------- /locale/hr/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hr/grid.po -------------------------------------------------------------------------------- /locale/hr/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hr/installer.po -------------------------------------------------------------------------------- /locale/hr/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hr/manager.po -------------------------------------------------------------------------------- /locale/hr/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hr/reader.po -------------------------------------------------------------------------------- /locale/hr/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hr/reviewer.po -------------------------------------------------------------------------------- /locale/hr/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hr/submission.po -------------------------------------------------------------------------------- /locale/hr/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hr/user.po -------------------------------------------------------------------------------- /locale/hsb/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hsb/admin.po -------------------------------------------------------------------------------- /locale/hsb/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hsb/api.po -------------------------------------------------------------------------------- /locale/hsb/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hsb/common.po -------------------------------------------------------------------------------- /locale/hsb/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hsb/default.po -------------------------------------------------------------------------------- /locale/hsb/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hsb/editor.po -------------------------------------------------------------------------------- /locale/hsb/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hsb/grid.po -------------------------------------------------------------------------------- /locale/hsb/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hsb/installer.po -------------------------------------------------------------------------------- /locale/hsb/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hsb/manager.po -------------------------------------------------------------------------------- /locale/hsb/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hsb/reader.po -------------------------------------------------------------------------------- /locale/hsb/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hsb/reviewer.po -------------------------------------------------------------------------------- /locale/hsb/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hsb/submission.po -------------------------------------------------------------------------------- /locale/hsb/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hsb/user.po -------------------------------------------------------------------------------- /locale/hu/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hu/admin.po -------------------------------------------------------------------------------- /locale/hu/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hu/api.po -------------------------------------------------------------------------------- /locale/hu/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hu/common.po -------------------------------------------------------------------------------- /locale/hu/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hu/default.po -------------------------------------------------------------------------------- /locale/hu/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hu/editor.po -------------------------------------------------------------------------------- /locale/hu/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hu/emails.po -------------------------------------------------------------------------------- /locale/hu/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hu/grid.po -------------------------------------------------------------------------------- /locale/hu/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hu/installer.po -------------------------------------------------------------------------------- /locale/hu/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hu/manager.po -------------------------------------------------------------------------------- /locale/hu/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hu/reader.po -------------------------------------------------------------------------------- /locale/hu/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hu/reviewer.po -------------------------------------------------------------------------------- /locale/hu/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hu/submission.po -------------------------------------------------------------------------------- /locale/hu/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hu/user.po -------------------------------------------------------------------------------- /locale/hy/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hy/admin.po -------------------------------------------------------------------------------- /locale/hy/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hy/api.po -------------------------------------------------------------------------------- /locale/hy/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hy/common.po -------------------------------------------------------------------------------- /locale/hy/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hy/default.po -------------------------------------------------------------------------------- /locale/hy/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hy/editor.po -------------------------------------------------------------------------------- /locale/hy/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hy/emails.po -------------------------------------------------------------------------------- /locale/hy/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hy/grid.po -------------------------------------------------------------------------------- /locale/hy/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hy/installer.po -------------------------------------------------------------------------------- /locale/hy/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hy/manager.po -------------------------------------------------------------------------------- /locale/hy/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hy/reader.po -------------------------------------------------------------------------------- /locale/hy/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hy/reviewer.po -------------------------------------------------------------------------------- /locale/hy/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hy/submission.po -------------------------------------------------------------------------------- /locale/hy/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/hy/user.po -------------------------------------------------------------------------------- /locale/id/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/id/admin.po -------------------------------------------------------------------------------- /locale/id/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/id/api.po -------------------------------------------------------------------------------- /locale/id/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/id/common.po -------------------------------------------------------------------------------- /locale/id/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/id/default.po -------------------------------------------------------------------------------- /locale/id/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/id/editor.po -------------------------------------------------------------------------------- /locale/id/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/id/emails.po -------------------------------------------------------------------------------- /locale/id/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/id/grid.po -------------------------------------------------------------------------------- /locale/id/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/id/installer.po -------------------------------------------------------------------------------- /locale/id/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/id/manager.po -------------------------------------------------------------------------------- /locale/id/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/id/reader.po -------------------------------------------------------------------------------- /locale/id/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/id/reviewer.po -------------------------------------------------------------------------------- /locale/id/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/id/submission.po -------------------------------------------------------------------------------- /locale/id/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/id/user.po -------------------------------------------------------------------------------- /locale/is/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/is/admin.po -------------------------------------------------------------------------------- /locale/is/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/is/api.po -------------------------------------------------------------------------------- /locale/is/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/is/common.po -------------------------------------------------------------------------------- /locale/is/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/is/default.po -------------------------------------------------------------------------------- /locale/is/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/is/editor.po -------------------------------------------------------------------------------- /locale/is/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/is/emails.po -------------------------------------------------------------------------------- /locale/is/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/is/grid.po -------------------------------------------------------------------------------- /locale/is/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/is/installer.po -------------------------------------------------------------------------------- /locale/is/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/is/manager.po -------------------------------------------------------------------------------- /locale/is/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/is/reader.po -------------------------------------------------------------------------------- /locale/is/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/is/reviewer.po -------------------------------------------------------------------------------- /locale/is/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/is/submission.po -------------------------------------------------------------------------------- /locale/is/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/is/user.po -------------------------------------------------------------------------------- /locale/it/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/it/admin.po -------------------------------------------------------------------------------- /locale/it/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/it/api.po -------------------------------------------------------------------------------- /locale/it/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/it/common.po -------------------------------------------------------------------------------- /locale/it/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/it/default.po -------------------------------------------------------------------------------- /locale/it/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/it/editor.po -------------------------------------------------------------------------------- /locale/it/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/it/emails.po -------------------------------------------------------------------------------- /locale/it/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/it/grid.po -------------------------------------------------------------------------------- /locale/it/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/it/installer.po -------------------------------------------------------------------------------- /locale/it/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/it/manager.po -------------------------------------------------------------------------------- /locale/it/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/it/reader.po -------------------------------------------------------------------------------- /locale/it/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/it/reviewer.po -------------------------------------------------------------------------------- /locale/it/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/it/submission.po -------------------------------------------------------------------------------- /locale/it/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/it/user.po -------------------------------------------------------------------------------- /locale/ja/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ja/admin.po -------------------------------------------------------------------------------- /locale/ja/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ja/api.po -------------------------------------------------------------------------------- /locale/ja/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ja/common.po -------------------------------------------------------------------------------- /locale/ja/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ja/default.po -------------------------------------------------------------------------------- /locale/ja/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ja/editor.po -------------------------------------------------------------------------------- /locale/ja/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ja/emails.po -------------------------------------------------------------------------------- /locale/ja/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ja/grid.po -------------------------------------------------------------------------------- /locale/ja/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ja/installer.po -------------------------------------------------------------------------------- /locale/ja/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ja/manager.po -------------------------------------------------------------------------------- /locale/ja/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ja/reader.po -------------------------------------------------------------------------------- /locale/ja/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ja/reviewer.po -------------------------------------------------------------------------------- /locale/ja/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ja/submission.po -------------------------------------------------------------------------------- /locale/ja/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ja/user.po -------------------------------------------------------------------------------- /locale/ka/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ka/admin.po -------------------------------------------------------------------------------- /locale/ka/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ka/api.po -------------------------------------------------------------------------------- /locale/ka/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ka/common.po -------------------------------------------------------------------------------- /locale/ka/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ka/default.po -------------------------------------------------------------------------------- /locale/ka/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ka/editor.po -------------------------------------------------------------------------------- /locale/ka/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ka/emails.po -------------------------------------------------------------------------------- /locale/ka/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ka/grid.po -------------------------------------------------------------------------------- /locale/ka/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ka/installer.po -------------------------------------------------------------------------------- /locale/ka/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ka/manager.po -------------------------------------------------------------------------------- /locale/ka/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ka/reader.po -------------------------------------------------------------------------------- /locale/ka/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ka/reviewer.po -------------------------------------------------------------------------------- /locale/ka/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ka/submission.po -------------------------------------------------------------------------------- /locale/ka/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ka/user.po -------------------------------------------------------------------------------- /locale/kk/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/kk/admin.po -------------------------------------------------------------------------------- /locale/kk/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/kk/api.po -------------------------------------------------------------------------------- /locale/kk/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/kk/common.po -------------------------------------------------------------------------------- /locale/kk/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/kk/default.po -------------------------------------------------------------------------------- /locale/kk/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/kk/editor.po -------------------------------------------------------------------------------- /locale/kk/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/kk/emails.po -------------------------------------------------------------------------------- /locale/kk/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/kk/grid.po -------------------------------------------------------------------------------- /locale/kk/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/kk/installer.po -------------------------------------------------------------------------------- /locale/kk/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/kk/manager.po -------------------------------------------------------------------------------- /locale/kk/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/kk/reader.po -------------------------------------------------------------------------------- /locale/kk/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/kk/reviewer.po -------------------------------------------------------------------------------- /locale/kk/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/kk/submission.po -------------------------------------------------------------------------------- /locale/kk/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/kk/user.po -------------------------------------------------------------------------------- /locale/ko/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ko/emails.po -------------------------------------------------------------------------------- /locale/ko/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ko/manager.po -------------------------------------------------------------------------------- /locale/ky/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ky/admin.po -------------------------------------------------------------------------------- /locale/ky/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ky/api.po -------------------------------------------------------------------------------- /locale/ky/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ky/common.po -------------------------------------------------------------------------------- /locale/ky/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ky/editor.po -------------------------------------------------------------------------------- /locale/ky/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ky/emails.po -------------------------------------------------------------------------------- /locale/ky/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ky/manager.po -------------------------------------------------------------------------------- /locale/lol/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lol/common.po -------------------------------------------------------------------------------- /locale/lt/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lt/admin.po -------------------------------------------------------------------------------- /locale/lt/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lt/api.po -------------------------------------------------------------------------------- /locale/lt/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lt/common.po -------------------------------------------------------------------------------- /locale/lt/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lt/default.po -------------------------------------------------------------------------------- /locale/lt/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lt/editor.po -------------------------------------------------------------------------------- /locale/lt/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lt/emails.po -------------------------------------------------------------------------------- /locale/lt/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lt/grid.po -------------------------------------------------------------------------------- /locale/lt/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lt/installer.po -------------------------------------------------------------------------------- /locale/lt/invitation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lt/invitation.po -------------------------------------------------------------------------------- /locale/lt/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lt/manager.po -------------------------------------------------------------------------------- /locale/lt/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lt/reader.po -------------------------------------------------------------------------------- /locale/lt/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lt/reviewer.po -------------------------------------------------------------------------------- /locale/lt/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lt/submission.po -------------------------------------------------------------------------------- /locale/lt/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lt/user.po -------------------------------------------------------------------------------- /locale/lt/userAccess.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lt/userAccess.po -------------------------------------------------------------------------------- /locale/lv/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lv/admin.po -------------------------------------------------------------------------------- /locale/lv/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lv/api.po -------------------------------------------------------------------------------- /locale/lv/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lv/common.po -------------------------------------------------------------------------------- /locale/lv/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lv/default.po -------------------------------------------------------------------------------- /locale/lv/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lv/editor.po -------------------------------------------------------------------------------- /locale/lv/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lv/emails.po -------------------------------------------------------------------------------- /locale/lv/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lv/grid.po -------------------------------------------------------------------------------- /locale/lv/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lv/installer.po -------------------------------------------------------------------------------- /locale/lv/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lv/manager.po -------------------------------------------------------------------------------- /locale/lv/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lv/reader.po -------------------------------------------------------------------------------- /locale/lv/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lv/reviewer.po -------------------------------------------------------------------------------- /locale/lv/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lv/submission.po -------------------------------------------------------------------------------- /locale/lv/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/lv/user.po -------------------------------------------------------------------------------- /locale/mk/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mk/admin.po -------------------------------------------------------------------------------- /locale/mk/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mk/api.po -------------------------------------------------------------------------------- /locale/mk/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mk/common.po -------------------------------------------------------------------------------- /locale/mk/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mk/default.po -------------------------------------------------------------------------------- /locale/mk/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mk/editor.po -------------------------------------------------------------------------------- /locale/mk/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mk/emails.po -------------------------------------------------------------------------------- /locale/mk/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mk/grid.po -------------------------------------------------------------------------------- /locale/mk/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mk/installer.po -------------------------------------------------------------------------------- /locale/mk/invitation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mk/invitation.po -------------------------------------------------------------------------------- /locale/mk/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mk/manager.po -------------------------------------------------------------------------------- /locale/mk/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mk/reader.po -------------------------------------------------------------------------------- /locale/mk/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mk/reviewer.po -------------------------------------------------------------------------------- /locale/mk/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mk/submission.po -------------------------------------------------------------------------------- /locale/mk/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mk/user.po -------------------------------------------------------------------------------- /locale/mk/userAccess.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mk/userAccess.po -------------------------------------------------------------------------------- /locale/mn/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mn/manager.po -------------------------------------------------------------------------------- /locale/mn/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mn/submission.po -------------------------------------------------------------------------------- /locale/mr/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mr/admin.po -------------------------------------------------------------------------------- /locale/mr/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mr/api.po -------------------------------------------------------------------------------- /locale/mr/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mr/common.po -------------------------------------------------------------------------------- /locale/mr/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mr/default.po -------------------------------------------------------------------------------- /locale/mr/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mr/editor.po -------------------------------------------------------------------------------- /locale/mr/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mr/emails.po -------------------------------------------------------------------------------- /locale/mr/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mr/grid.po -------------------------------------------------------------------------------- /locale/mr/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mr/installer.po -------------------------------------------------------------------------------- /locale/mr/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mr/manager.po -------------------------------------------------------------------------------- /locale/mr/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mr/reader.po -------------------------------------------------------------------------------- /locale/mr/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mr/reviewer.po -------------------------------------------------------------------------------- /locale/mr/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mr/submission.po -------------------------------------------------------------------------------- /locale/mr/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/mr/user.po -------------------------------------------------------------------------------- /locale/ms/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ms/admin.po -------------------------------------------------------------------------------- /locale/ms/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ms/api.po -------------------------------------------------------------------------------- /locale/ms/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ms/common.po -------------------------------------------------------------------------------- /locale/ms/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ms/default.po -------------------------------------------------------------------------------- /locale/ms/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ms/editor.po -------------------------------------------------------------------------------- /locale/ms/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ms/emails.po -------------------------------------------------------------------------------- /locale/ms/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ms/grid.po -------------------------------------------------------------------------------- /locale/ms/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ms/installer.po -------------------------------------------------------------------------------- /locale/ms/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ms/manager.po -------------------------------------------------------------------------------- /locale/ms/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ms/reader.po -------------------------------------------------------------------------------- /locale/ms/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ms/reviewer.po -------------------------------------------------------------------------------- /locale/ms/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ms/submission.po -------------------------------------------------------------------------------- /locale/ms/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ms/user.po -------------------------------------------------------------------------------- /locale/nb_NO/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nb_NO/admin.po -------------------------------------------------------------------------------- /locale/nb_NO/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nb_NO/api.po -------------------------------------------------------------------------------- /locale/nb_NO/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nb_NO/common.po -------------------------------------------------------------------------------- /locale/nb_NO/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nb_NO/default.po -------------------------------------------------------------------------------- /locale/nb_NO/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nb_NO/editor.po -------------------------------------------------------------------------------- /locale/nb_NO/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nb_NO/emails.po -------------------------------------------------------------------------------- /locale/nb_NO/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nb_NO/grid.po -------------------------------------------------------------------------------- /locale/nb_NO/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nb_NO/installer.po -------------------------------------------------------------------------------- /locale/nb_NO/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nb_NO/manager.po -------------------------------------------------------------------------------- /locale/nb_NO/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nb_NO/reader.po -------------------------------------------------------------------------------- /locale/nb_NO/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nb_NO/reviewer.po -------------------------------------------------------------------------------- /locale/nb_NO/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nb_NO/user.po -------------------------------------------------------------------------------- /locale/nl/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nl/admin.po -------------------------------------------------------------------------------- /locale/nl/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nl/api.po -------------------------------------------------------------------------------- /locale/nl/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nl/common.po -------------------------------------------------------------------------------- /locale/nl/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nl/default.po -------------------------------------------------------------------------------- /locale/nl/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nl/editor.po -------------------------------------------------------------------------------- /locale/nl/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nl/emails.po -------------------------------------------------------------------------------- /locale/nl/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nl/grid.po -------------------------------------------------------------------------------- /locale/nl/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nl/installer.po -------------------------------------------------------------------------------- /locale/nl/invitation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nl/invitation.po -------------------------------------------------------------------------------- /locale/nl/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nl/manager.po -------------------------------------------------------------------------------- /locale/nl/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nl/reader.po -------------------------------------------------------------------------------- /locale/nl/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nl/reviewer.po -------------------------------------------------------------------------------- /locale/nl/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nl/submission.po -------------------------------------------------------------------------------- /locale/nl/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nl/user.po -------------------------------------------------------------------------------- /locale/nl/userAccess.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/nl/userAccess.po -------------------------------------------------------------------------------- /locale/pl/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pl/admin.po -------------------------------------------------------------------------------- /locale/pl/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pl/api.po -------------------------------------------------------------------------------- /locale/pl/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pl/common.po -------------------------------------------------------------------------------- /locale/pl/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pl/default.po -------------------------------------------------------------------------------- /locale/pl/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pl/editor.po -------------------------------------------------------------------------------- /locale/pl/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pl/emails.po -------------------------------------------------------------------------------- /locale/pl/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pl/grid.po -------------------------------------------------------------------------------- /locale/pl/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pl/installer.po -------------------------------------------------------------------------------- /locale/pl/invitation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pl/invitation.po -------------------------------------------------------------------------------- /locale/pl/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pl/manager.po -------------------------------------------------------------------------------- /locale/pl/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pl/reader.po -------------------------------------------------------------------------------- /locale/pl/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pl/reviewer.po -------------------------------------------------------------------------------- /locale/pl/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pl/submission.po -------------------------------------------------------------------------------- /locale/pl/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pl/user.po -------------------------------------------------------------------------------- /locale/pl/userAccess.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pl/userAccess.po -------------------------------------------------------------------------------- /locale/pt/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt/admin.po -------------------------------------------------------------------------------- /locale/pt/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt/api.po -------------------------------------------------------------------------------- /locale/pt/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt/common.po -------------------------------------------------------------------------------- /locale/pt/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt/default.po -------------------------------------------------------------------------------- /locale/pt/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt/editor.po -------------------------------------------------------------------------------- /locale/pt/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt/emails.po -------------------------------------------------------------------------------- /locale/pt/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt/grid.po -------------------------------------------------------------------------------- /locale/pt/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt/installer.po -------------------------------------------------------------------------------- /locale/pt/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt/manager.po -------------------------------------------------------------------------------- /locale/pt/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt/reader.po -------------------------------------------------------------------------------- /locale/pt/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt/reviewer.po -------------------------------------------------------------------------------- /locale/pt/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt/submission.po -------------------------------------------------------------------------------- /locale/pt/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt/user.po -------------------------------------------------------------------------------- /locale/pt_BR/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt_BR/admin.po -------------------------------------------------------------------------------- /locale/pt_BR/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt_BR/api.po -------------------------------------------------------------------------------- /locale/pt_BR/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt_BR/common.po -------------------------------------------------------------------------------- /locale/pt_BR/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt_BR/default.po -------------------------------------------------------------------------------- /locale/pt_BR/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt_BR/editor.po -------------------------------------------------------------------------------- /locale/pt_BR/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt_BR/emails.po -------------------------------------------------------------------------------- /locale/pt_BR/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt_BR/grid.po -------------------------------------------------------------------------------- /locale/pt_BR/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt_BR/installer.po -------------------------------------------------------------------------------- /locale/pt_BR/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt_BR/manager.po -------------------------------------------------------------------------------- /locale/pt_BR/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt_BR/reader.po -------------------------------------------------------------------------------- /locale/pt_BR/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt_BR/reviewer.po -------------------------------------------------------------------------------- /locale/pt_BR/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/pt_BR/user.po -------------------------------------------------------------------------------- /locale/ro/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ro/admin.po -------------------------------------------------------------------------------- /locale/ro/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ro/api.po -------------------------------------------------------------------------------- /locale/ro/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ro/common.po -------------------------------------------------------------------------------- /locale/ro/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ro/default.po -------------------------------------------------------------------------------- /locale/ro/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ro/editor.po -------------------------------------------------------------------------------- /locale/ro/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ro/emails.po -------------------------------------------------------------------------------- /locale/ro/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ro/grid.po -------------------------------------------------------------------------------- /locale/ro/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ro/installer.po -------------------------------------------------------------------------------- /locale/ro/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ro/manager.po -------------------------------------------------------------------------------- /locale/ro/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ro/reader.po -------------------------------------------------------------------------------- /locale/ro/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ro/reviewer.po -------------------------------------------------------------------------------- /locale/ro/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ro/submission.po -------------------------------------------------------------------------------- /locale/ro/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ro/user.po -------------------------------------------------------------------------------- /locale/ru/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ru/admin.po -------------------------------------------------------------------------------- /locale/ru/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ru/api.po -------------------------------------------------------------------------------- /locale/ru/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ru/common.po -------------------------------------------------------------------------------- /locale/ru/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ru/default.po -------------------------------------------------------------------------------- /locale/ru/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ru/editor.po -------------------------------------------------------------------------------- /locale/ru/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ru/emails.po -------------------------------------------------------------------------------- /locale/ru/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ru/grid.po -------------------------------------------------------------------------------- /locale/ru/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ru/installer.po -------------------------------------------------------------------------------- /locale/ru/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ru/manager.po -------------------------------------------------------------------------------- /locale/ru/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ru/reader.po -------------------------------------------------------------------------------- /locale/ru/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ru/reviewer.po -------------------------------------------------------------------------------- /locale/ru/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ru/submission.po -------------------------------------------------------------------------------- /locale/ru/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ru/user.po -------------------------------------------------------------------------------- /locale/se/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/se/admin.po -------------------------------------------------------------------------------- /locale/se/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/se/common.po -------------------------------------------------------------------------------- /locale/se/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/se/manager.po -------------------------------------------------------------------------------- /locale/se/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/se/submission.po -------------------------------------------------------------------------------- /locale/se/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/se/user.po -------------------------------------------------------------------------------- /locale/sk/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sk/common.po -------------------------------------------------------------------------------- /locale/sk/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sk/editor.po -------------------------------------------------------------------------------- /locale/sk/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sk/emails.po -------------------------------------------------------------------------------- /locale/sk/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sk/manager.po -------------------------------------------------------------------------------- /locale/sk/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sk/submission.po -------------------------------------------------------------------------------- /locale/sl/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sl/admin.po -------------------------------------------------------------------------------- /locale/sl/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sl/api.po -------------------------------------------------------------------------------- /locale/sl/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sl/common.po -------------------------------------------------------------------------------- /locale/sl/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sl/default.po -------------------------------------------------------------------------------- /locale/sl/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sl/editor.po -------------------------------------------------------------------------------- /locale/sl/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sl/emails.po -------------------------------------------------------------------------------- /locale/sl/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sl/grid.po -------------------------------------------------------------------------------- /locale/sl/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sl/installer.po -------------------------------------------------------------------------------- /locale/sl/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sl/manager.po -------------------------------------------------------------------------------- /locale/sl/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sl/reader.po -------------------------------------------------------------------------------- /locale/sl/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sl/reviewer.po -------------------------------------------------------------------------------- /locale/sl/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sl/submission.po -------------------------------------------------------------------------------- /locale/sl/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sl/user.po -------------------------------------------------------------------------------- /locale/sq/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sq/manager.po -------------------------------------------------------------------------------- /locale/sr_Cyrl/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sr_Cyrl/admin.po -------------------------------------------------------------------------------- /locale/sr_Cyrl/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sr_Cyrl/common.po -------------------------------------------------------------------------------- /locale/sr_Cyrl/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sr_Cyrl/default.po -------------------------------------------------------------------------------- /locale/sr_Cyrl/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sr_Cyrl/editor.po -------------------------------------------------------------------------------- /locale/sr_Cyrl/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sr_Cyrl/emails.po -------------------------------------------------------------------------------- /locale/sr_Cyrl/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sr_Cyrl/grid.po -------------------------------------------------------------------------------- /locale/sr_Cyrl/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sr_Cyrl/manager.po -------------------------------------------------------------------------------- /locale/sr_Cyrl/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sr_Cyrl/reader.po -------------------------------------------------------------------------------- /locale/sr_Cyrl/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sr_Cyrl/user.po -------------------------------------------------------------------------------- /locale/sr_Latn/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sr_Latn/admin.po -------------------------------------------------------------------------------- /locale/sr_Latn/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sr_Latn/common.po -------------------------------------------------------------------------------- /locale/sr_Latn/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sr_Latn/default.po -------------------------------------------------------------------------------- /locale/sr_Latn/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sr_Latn/editor.po -------------------------------------------------------------------------------- /locale/sr_Latn/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sr_Latn/emails.po -------------------------------------------------------------------------------- /locale/sr_Latn/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sr_Latn/grid.po -------------------------------------------------------------------------------- /locale/sr_Latn/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sr_Latn/manager.po -------------------------------------------------------------------------------- /locale/sr_Latn/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sr_Latn/reader.po -------------------------------------------------------------------------------- /locale/sr_Latn/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sr_Latn/user.po -------------------------------------------------------------------------------- /locale/sv/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sv/admin.po -------------------------------------------------------------------------------- /locale/sv/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sv/api.po -------------------------------------------------------------------------------- /locale/sv/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sv/common.po -------------------------------------------------------------------------------- /locale/sv/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sv/default.po -------------------------------------------------------------------------------- /locale/sv/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sv/editor.po -------------------------------------------------------------------------------- /locale/sv/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sv/emails.po -------------------------------------------------------------------------------- /locale/sv/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sv/grid.po -------------------------------------------------------------------------------- /locale/sv/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sv/installer.po -------------------------------------------------------------------------------- /locale/sv/invitation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sv/invitation.po -------------------------------------------------------------------------------- /locale/sv/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sv/manager.po -------------------------------------------------------------------------------- /locale/sv/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sv/reader.po -------------------------------------------------------------------------------- /locale/sv/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sv/reviewer.po -------------------------------------------------------------------------------- /locale/sv/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sv/submission.po -------------------------------------------------------------------------------- /locale/sv/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sv/user.po -------------------------------------------------------------------------------- /locale/sv/userAccess.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sv/userAccess.po -------------------------------------------------------------------------------- /locale/sw/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sw/admin.po -------------------------------------------------------------------------------- /locale/sw/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sw/reviewer.po -------------------------------------------------------------------------------- /locale/sw/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sw/submission.po -------------------------------------------------------------------------------- /locale/sw/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/sw/user.po -------------------------------------------------------------------------------- /locale/th/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/th/admin.po -------------------------------------------------------------------------------- /locale/th/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/th/api.po -------------------------------------------------------------------------------- /locale/th/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/th/common.po -------------------------------------------------------------------------------- /locale/th/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/th/default.po -------------------------------------------------------------------------------- /locale/th/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/th/editor.po -------------------------------------------------------------------------------- /locale/th/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/th/emails.po -------------------------------------------------------------------------------- /locale/th/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/th/grid.po -------------------------------------------------------------------------------- /locale/th/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/th/installer.po -------------------------------------------------------------------------------- /locale/th/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/th/manager.po -------------------------------------------------------------------------------- /locale/th/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/th/reader.po -------------------------------------------------------------------------------- /locale/th/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/th/reviewer.po -------------------------------------------------------------------------------- /locale/th/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/th/submission.po -------------------------------------------------------------------------------- /locale/th/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/th/user.po -------------------------------------------------------------------------------- /locale/tl/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/tl/common.po -------------------------------------------------------------------------------- /locale/tr/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/tr/admin.po -------------------------------------------------------------------------------- /locale/tr/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/tr/api.po -------------------------------------------------------------------------------- /locale/tr/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/tr/common.po -------------------------------------------------------------------------------- /locale/tr/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/tr/default.po -------------------------------------------------------------------------------- /locale/tr/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/tr/editor.po -------------------------------------------------------------------------------- /locale/tr/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/tr/emails.po -------------------------------------------------------------------------------- /locale/tr/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/tr/grid.po -------------------------------------------------------------------------------- /locale/tr/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/tr/installer.po -------------------------------------------------------------------------------- /locale/tr/invitation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/tr/invitation.po -------------------------------------------------------------------------------- /locale/tr/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/tr/manager.po -------------------------------------------------------------------------------- /locale/tr/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/tr/reader.po -------------------------------------------------------------------------------- /locale/tr/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/tr/reviewer.po -------------------------------------------------------------------------------- /locale/tr/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/tr/submission.po -------------------------------------------------------------------------------- /locale/tr/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/tr/user.po -------------------------------------------------------------------------------- /locale/tr/userAccess.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/tr/userAccess.po -------------------------------------------------------------------------------- /locale/uk/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uk/admin.po -------------------------------------------------------------------------------- /locale/uk/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uk/api.po -------------------------------------------------------------------------------- /locale/uk/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uk/common.po -------------------------------------------------------------------------------- /locale/uk/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uk/default.po -------------------------------------------------------------------------------- /locale/uk/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uk/editor.po -------------------------------------------------------------------------------- /locale/uk/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uk/emails.po -------------------------------------------------------------------------------- /locale/uk/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uk/grid.po -------------------------------------------------------------------------------- /locale/uk/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uk/installer.po -------------------------------------------------------------------------------- /locale/uk/invitation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uk/invitation.po -------------------------------------------------------------------------------- /locale/uk/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uk/manager.po -------------------------------------------------------------------------------- /locale/uk/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uk/reader.po -------------------------------------------------------------------------------- /locale/uk/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uk/reviewer.po -------------------------------------------------------------------------------- /locale/uk/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uk/submission.po -------------------------------------------------------------------------------- /locale/uk/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uk/user.po -------------------------------------------------------------------------------- /locale/uk/userAccess.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uk/userAccess.po -------------------------------------------------------------------------------- /locale/ur/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ur/submission.po -------------------------------------------------------------------------------- /locale/ur/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/ur/user.po -------------------------------------------------------------------------------- /locale/uz/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uz/emails.po -------------------------------------------------------------------------------- /locale/uz/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uz/manager.po -------------------------------------------------------------------------------- /locale/uz/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uz/reviewer.po -------------------------------------------------------------------------------- /locale/uz/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uz/submission.po -------------------------------------------------------------------------------- /locale/uz_Latn/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uz_Latn/editor.po -------------------------------------------------------------------------------- /locale/uz_Latn/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uz_Latn/emails.po -------------------------------------------------------------------------------- /locale/uz_Latn/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/uz_Latn/manager.po -------------------------------------------------------------------------------- /locale/vi/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/vi/admin.po -------------------------------------------------------------------------------- /locale/vi/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/vi/api.po -------------------------------------------------------------------------------- /locale/vi/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/vi/common.po -------------------------------------------------------------------------------- /locale/vi/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/vi/default.po -------------------------------------------------------------------------------- /locale/vi/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/vi/editor.po -------------------------------------------------------------------------------- /locale/vi/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/vi/emails.po -------------------------------------------------------------------------------- /locale/vi/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/vi/grid.po -------------------------------------------------------------------------------- /locale/vi/installer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/vi/installer.po -------------------------------------------------------------------------------- /locale/vi/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/vi/manager.po -------------------------------------------------------------------------------- /locale/vi/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/vi/reader.po -------------------------------------------------------------------------------- /locale/vi/reviewer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/vi/reviewer.po -------------------------------------------------------------------------------- /locale/vi/submission.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/vi/submission.po -------------------------------------------------------------------------------- /locale/vi/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/vi/user.po -------------------------------------------------------------------------------- /locale/zh_Hans/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/zh_Hans/admin.po -------------------------------------------------------------------------------- /locale/zh_Hans/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/zh_Hans/common.po -------------------------------------------------------------------------------- /locale/zh_Hans/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/zh_Hans/default.po -------------------------------------------------------------------------------- /locale/zh_Hans/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/zh_Hans/editor.po -------------------------------------------------------------------------------- /locale/zh_Hans/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/zh_Hans/emails.po -------------------------------------------------------------------------------- /locale/zh_Hans/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/zh_Hans/grid.po -------------------------------------------------------------------------------- /locale/zh_Hans/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/zh_Hans/manager.po -------------------------------------------------------------------------------- /locale/zh_Hans/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/zh_Hans/reader.po -------------------------------------------------------------------------------- /locale/zh_Hans/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/zh_Hans/user.po -------------------------------------------------------------------------------- /locale/zh_Hant/admin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/zh_Hant/admin.po -------------------------------------------------------------------------------- /locale/zh_Hant/api.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/zh_Hant/api.po -------------------------------------------------------------------------------- /locale/zh_Hant/common.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/zh_Hant/common.po -------------------------------------------------------------------------------- /locale/zh_Hant/default.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/zh_Hant/default.po -------------------------------------------------------------------------------- /locale/zh_Hant/editor.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/zh_Hant/editor.po -------------------------------------------------------------------------------- /locale/zh_Hant/emails.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/zh_Hant/emails.po -------------------------------------------------------------------------------- /locale/zh_Hant/grid.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/zh_Hant/grid.po -------------------------------------------------------------------------------- /locale/zh_Hant/manager.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/zh_Hant/manager.po -------------------------------------------------------------------------------- /locale/zh_Hant/reader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/zh_Hant/reader.po -------------------------------------------------------------------------------- /locale/zh_Hant/user.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/locale/zh_Hant/user.po -------------------------------------------------------------------------------- /pages/about/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/pages/about/index.php -------------------------------------------------------------------------------- /pages/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/pages/admin/index.php -------------------------------------------------------------------------------- /pages/install/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/pages/install/index.php -------------------------------------------------------------------------------- /pages/login/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/pages/login/index.php -------------------------------------------------------------------------------- /pages/orcid/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/pages/orcid/index.php -------------------------------------------------------------------------------- /pages/user/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/pages/user/index.php -------------------------------------------------------------------------------- /registry/botAgents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/registry/botAgents.txt -------------------------------------------------------------------------------- /registry/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/registry/stopwords.txt -------------------------------------------------------------------------------- /schemas/affiliation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/affiliation.json -------------------------------------------------------------------------------- /schemas/announcement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/announcement.json -------------------------------------------------------------------------------- /schemas/author.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/author.json -------------------------------------------------------------------------------- /schemas/category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/category.json -------------------------------------------------------------------------------- /schemas/citation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/citation.json -------------------------------------------------------------------------------- /schemas/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/context.json -------------------------------------------------------------------------------- /schemas/decision.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/decision.json -------------------------------------------------------------------------------- /schemas/doi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/doi.json -------------------------------------------------------------------------------- /schemas/emailLog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/emailLog.json -------------------------------------------------------------------------------- /schemas/eventLog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/eventLog.json -------------------------------------------------------------------------------- /schemas/highlight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/highlight.json -------------------------------------------------------------------------------- /schemas/institution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/institution.json -------------------------------------------------------------------------------- /schemas/publication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/publication.json -------------------------------------------------------------------------------- /schemas/reviewRound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/reviewRound.json -------------------------------------------------------------------------------- /schemas/ror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/ror.json -------------------------------------------------------------------------------- /schemas/section.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/section.json -------------------------------------------------------------------------------- /schemas/site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/site.json -------------------------------------------------------------------------------- /schemas/submission.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/submission.json -------------------------------------------------------------------------------- /schemas/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/user.json -------------------------------------------------------------------------------- /schemas/userGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/schemas/userGroup.json -------------------------------------------------------------------------------- /styles/body.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/styles/body.less -------------------------------------------------------------------------------- /styles/font.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/styles/font.less -------------------------------------------------------------------------------- /styles/fontawesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/styles/fontawesome.less -------------------------------------------------------------------------------- /styles/form/form.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/styles/form/form.less -------------------------------------------------------------------------------- /styles/form/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/styles/form/index.less -------------------------------------------------------------------------------- /styles/helpers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/styles/helpers.less -------------------------------------------------------------------------------- /styles/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/styles/index.less -------------------------------------------------------------------------------- /styles/linkActions.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/styles/linkActions.less -------------------------------------------------------------------------------- /styles/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/styles/normalize.less -------------------------------------------------------------------------------- /styles/orcid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/styles/orcid.less -------------------------------------------------------------------------------- /styles/pages/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/styles/pages/index.less -------------------------------------------------------------------------------- /styles/pages/tools.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/styles/pages/tools.less -------------------------------------------------------------------------------- /styles/rtl.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/styles/rtl.less -------------------------------------------------------------------------------- /styles/utils.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/styles/utils.less -------------------------------------------------------------------------------- /styles/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/styles/variables.less -------------------------------------------------------------------------------- /templates/admin/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/templates/admin/index.tpl -------------------------------------------------------------------------------- /templates/admin/jobs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/templates/admin/jobs.tpl -------------------------------------------------------------------------------- /templates/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/form/button.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/templates/form/button.tpl -------------------------------------------------------------------------------- /templates/form/select.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/templates/form/select.tpl -------------------------------------------------------------------------------- /templates/images/atom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/templates/images/atom.svg -------------------------------------------------------------------------------- /templates/images/pkp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/templates/images/pkp.gif -------------------------------------------------------------------------------- /templates/images/ror.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/templates/images/ror.svg -------------------------------------------------------------------------------- /templates/stats/users.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/templates/stats/users.tpl -------------------------------------------------------------------------------- /tests/PKPTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tests/PKPTestCase.php -------------------------------------------------------------------------------- /tests/PKPTestHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tests/PKPTestHelper.php -------------------------------------------------------------------------------- /tests/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tests/config/.gitignore -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tests/phpunit.xml -------------------------------------------------------------------------------- /tests/results/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore -------------------------------------------------------------------------------- /tools/appKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tools/appKey.php -------------------------------------------------------------------------------- /tools/buildSwagger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tools/buildSwagger.php -------------------------------------------------------------------------------- /tools/buildjs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tools/buildjs.sh -------------------------------------------------------------------------------- /tools/closure-externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tools/closure-externs.js -------------------------------------------------------------------------------- /tools/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tools/constants.php -------------------------------------------------------------------------------- /tools/events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tools/events.php -------------------------------------------------------------------------------- /tools/getHooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tools/getHooks.php -------------------------------------------------------------------------------- /tools/jobs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tools/jobs.php -------------------------------------------------------------------------------- /tools/jquery-externs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tools/jquery-externs.js -------------------------------------------------------------------------------- /tools/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tools/migration.php -------------------------------------------------------------------------------- /tools/parseCitations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tools/parseCitations.php -------------------------------------------------------------------------------- /tools/plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tools/plugins.php -------------------------------------------------------------------------------- /tools/pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tools/pre-commit.sh -------------------------------------------------------------------------------- /tools/removeLocaleKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tools/removeLocaleKey.php -------------------------------------------------------------------------------- /tools/runAllTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tools/runAllTests.sh -------------------------------------------------------------------------------- /tools/scheduler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tools/scheduler.php -------------------------------------------------------------------------------- /tools/setVersionTool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/tools/setVersionTool.php -------------------------------------------------------------------------------- /xml/importexport.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/xml/importexport.xsd -------------------------------------------------------------------------------- /xml/oai2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/xml/oai2.xsl -------------------------------------------------------------------------------- /xml/onixFilter.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/xml/onixFilter.xsl -------------------------------------------------------------------------------- /xml/schema/plugins.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkp/pkp-lib/HEAD/xml/schema/plugins.xsd --------------------------------------------------------------------------------